Home
last modified time | relevance | path

Searched refs:kContinue (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Ddex_instruction_list.h21 V(0x00, NOP, "nop", k10x, false, kNone, kContinue, kVerifyNone) \
22 V(0x01, MOVE, "move", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
23 V(0x02, MOVE_FROM16, "move/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
24 V(0x03, MOVE_16, "move/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
25 V(0x04, MOVE_WIDE, "move-wide", k12x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
26 …V(0x05, MOVE_WIDE_FROM16, "move-wide/from16", k22x, true, kNone, kContinue, kVerifyRegAWide | kVer…
27 …V(0x06, MOVE_WIDE_16, "move-wide/16", k32x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBW…
28 V(0x07, MOVE_OBJECT, "move-object", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
29 …V(0x08, MOVE_OBJECT_FROM16, "move-object/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVer…
30 …V(0x09, MOVE_OBJECT_16, "move-object/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB)…
[all …]
Ddex_instruction.cc93 return FlagsOf(opcode) & Instruction::kContinue; in CanFlowThrough()
Ddex_instruction.h122 kContinue = 0x000002, // flow can continue to next statement enumerator
/art/compiler/dex/
Dmir_graph.cc437 if (flags & Instruction::kContinue) { in ProcessCanBranch()
766 flags &= ~Instruction::kContinue; in InlineMethod()
832 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) { in InlineMethod()
Dmir_graph.h312 …return !IsPseudoMirOp(opcode) && (Instruction::FlagsOf(opcode) == (Instruction::kContinue | Instru… in IsConditionalBranch()
/art/runtime/verifier/
Dmethod_verifier.cc2774 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0); in CodeFlowVerifyInstruction()
2893 if ((opcode_flags & Instruction::kContinue) != 0) { in CodeFlowVerifyInstruction()
2952 if ((opcode_flags & Instruction::kContinue) != 0) { in CodeFlowVerifyInstruction()