Home | History | Annotate | Download | only in visitor

Lines Matching defs:evaluated

51     private boolean[] evaluated  = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
66 return evaluated[instructionOffset];
76 if (!evaluated[instructionOffset])
138 if (evaluated.length < codeLength)
140 evaluated = new boolean[codeLength];
145 Arrays.fill(evaluated, 0, codeLength, false);
289 if (evaluated[instructionOffset])
291 System.out.println("-- (instruction block at "+instructionOffset+" already evaluated)");
308 // Evaluate any instructions that haven't been evaluated before.
309 while (!evaluated[instructionOffset])
311 // Mark the instruction as evaluated.
312 evaluated[instructionOffset] = true;
368 if (evaluated[instructionOffset])
370 System.out.println("-- (instruction at "+instructionOffset+" already evaluated)");