comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/CiTargetMethod.java @ 5507:dc71b06d09f8

Moving classes from cri.ri to api.meta.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 18:24:06 +0200
parents d89b20486d87
children
comparison
equal deleted inserted replaced
5506:56860d3f9f39 5507:dc71b06d09f8
23 package com.oracle.max.cri.ci; 23 package com.oracle.max.cri.ci;
24 24
25 import java.io.*; 25 import java.io.*;
26 import java.util.*; 26 import java.util.*;
27 27
28 import com.oracle.graal.api.meta.*;
28 import com.oracle.max.cri.ri.*; 29 import com.oracle.max.cri.ri.*;
29 30
30 /** 31 /**
31 * Represents the output from compiling a method, including the compiled machine code, associated data and references, 32 * Represents the output from compiling a method, including the compiled machine code, associated data and references,
32 * relocation information, deoptimization information, etc. It is the essential component of a {@link CiResult}, which also includes 33 * relocation information, deoptimization information, etc. It is the essential component of a {@link CiResult}, which also includes
545 } 546 }
546 } 547 }
547 } 548 }
548 } 549 }
549 550
550 private static void appendRefMap(StringBuilder sb, String name, CiBitMap map) { 551 private static void appendRefMap(StringBuilder sb, String name, RiBitMap map) {
551 if (map != null) { 552 if (map != null) {
552 sb.append(' ').append(name).append('[').append(map.toBinaryString()).append(']'); 553 sb.append(' ').append(name).append('[').append(map.toBinaryString()).append(']');
553 } 554 }
554 } 555 }
555 } 556 }