Searched defs:fatcode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java127 public boolean fatcode; field in class:Code
182 /** Construct a code object, given the settings of the fatcode,
186 boolean fatcode,
196 this.fatcode = fatcode;
1402 if (fatcode) {
1431 fixedPc = fatcode;
1448 if (fatcode) target = target + get4(target + 1);
1465 if (fatcode)
1469 fatcode
185 Code(MethodSymbol meth, boolean fatcode, Position.LineMap lineMap, boolean varDebugInfo, StackMapFormat stackMap, boolean debugCode, CRTable crt, Symtab syms, Types types, Pool pool) argument
[all...]
H A DGen.java891 * @param fatcode A flag that indicates whether all jumps are
893 * the assumption that fatcode == false, i.e. all
894 * jumps are within 32K. If this fails, fatcode
897 void genMethod(JCMethodDecl tree, Env<GenContext> env, boolean fatcode) { argument
909 int startpcCrt = initCode(tree, env, fatcode);
915 startpcCrt = initCode(tree, env, fatcode);
955 if (!fatcode && code.fatcode) genMethod(tree, env, true);
965 private int initCode(JCMethodDecl tree, Env<GenContext> env, boolean fatcode) { argument
970 fatcode,
[all...]

Completed in 37 milliseconds