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.cc94 return FlagsOf(opcode) & Instruction::kContinue; in CanFlowThrough()
Ddex_instruction.h120 kContinue = 0x000002, // flow can continue to next statement enumerator
/art/compiler/dex/
Dmir_graph.cc496 if (flags & Instruction::kContinue) { in ProcessCanBranch()
805 flags &= ~Instruction::kContinue; in InlineMethod()
873 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) { in InlineMethod()
2498 return Instruction::kContinue; in FlagsOf()
2500 return Instruction::kContinue; in FlagsOf()
2502 return Instruction::kContinue | Instruction::kBranch; in FlagsOf()
2504 return Instruction::kContinue | Instruction::kBranch; in FlagsOf()
2506 return Instruction::kContinue | Instruction::kBranch; in FlagsOf()
2508 return Instruction::kContinue | Instruction::kBranch; in FlagsOf()
2510 return Instruction::kContinue | Instruction::kBranch; in FlagsOf()
[all …]
Dmir_graph.h294 return (FlagsOf() == (Instruction::kContinue | Instruction::kBranch)); in IsConditionalBranch()
/art/runtime/verifier/
Dmethod_verifier.cc2966 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0); in CodeFlowVerifyInstruction()
3084 if ((opcode_flags & Instruction::kContinue) != 0) { in CodeFlowVerifyInstruction()
3144 if ((opcode_flags & Instruction::kContinue) != 0) { in CodeFlowVerifyInstruction()