Home | History | Annotate | Download | only in code

Lines Matching refs:guess

545      * opcode as a first "best guess" and then pessimizes from there
549 * @param guess {@code null-ok;} the current guess as to the best
555 private Dop findOpcodeForInsn(DalvInsn insn, Dop guess) {
557 * Note: The initial guess might be null, meaning that an
562 while (guess != null) {
563 if (guess.getFormat().isCompatible(insn)) {
569 guess.getOpcode() != Opcodes.CONST_STRING) {
574 guess = Dops.getNextOrNull(guess, dexOptions);
577 return guess;