Home
last modified time | relevance | path

Searched refs:kUnconditional (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Ddex_instruction.h127 kUnconditional = 0x000040, // unconditional branch enumerator
460 return (kInstructionFlags[Opcode()] & kUnconditional) != 0; in IsUnconditional()
Ddex_instruction_list.h61 V(0x28, GOTO, "goto", k10t, false, kNone, kBranch | kUnconditional, kVerifyBranchTarget) \
62 V(0x29, GOTO_16, "goto/16", k20t, false, kNone, kBranch | kUnconditional, kVerifyBranchTarget) \
63 V(0x2A, GOTO_32, "goto/32", k30t, false, kNone, kBranch | kUnconditional, kVerifyBranchTarget) \
/art/compiler/utils/arm/
Dassembler_thumb2.h489 kUnconditional, // B. enumerator
620 if (assembler_->IsForced32Bit() && (type_ == kUnconditional || type_ == kConditional)) { in CalculateSize()
630 case kUnconditional: in CalculateSize()
Dassembler_thumb2.cc1478 branch_type = Branch::kUnconditional; // B. in EmitBranch()