comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 4528:e6e14d25e608

added two inlining policies for comparison
author Christian Haeubl <christian.haeubl@oracle.com>
date Tue, 07 Feb 2012 18:37:49 -0800
parents a0cca63cd366
children eb6df44a1374
comparison
equal deleted inserted replaced
4527:a0cca63cd366 4528:e6e14d25e608
47 * @return the size of the bytecode in bytes, or 0 if no bytecode is available 47 * @return the size of the bytecode in bytes, or 0 if no bytecode is available
48 */ 48 */
49 int codeSize(); 49 int codeSize();
50 50
51 /** 51 /**
52 * Gets the size of the compiled machine code.
53 * @return the size of the compiled machine code in bytes, or 0 if no compiled code exists.
54 */
55 int compiledCodeSize();
56
57 /**
52 * Gets the symbol used to link this method if it is native, otherwise {@code null}. 58 * Gets the symbol used to link this method if it is native, otherwise {@code null}.
53 */ 59 */
54 String jniSymbol(); 60 String jniSymbol();
55 61
56 /** 62 /**