Home
last modified time | relevance | path

Searched refs:FlagsOf (Results 1 – 9 of 9) sorted by relevance

/art/compiler/dex/
Dmir_graph.h300 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kInvoke) == Instruc… in IsInvoke()
304 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kStore) == Instruct… in IsStore()
308 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kLoad) == Instructi… in IsLoad()
312 …return !IsPseudoMirOp(opcode) && (Instruction::FlagsOf(opcode) == (Instruction::kContinue | Instru… in IsConditionalBranch()
319 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kRegCFieldOrConstan… in IsCFieldOrConstant()
326 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kRegBFieldOrConstan… in IsBFieldOrConstant()
330 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kCast) == Instructi… in IsCast()
340 …return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kClobber) == Instru… in Clobbers()
344 …return !IsPseudoMirOp(opcode) && (Instruction::FlagsOf(opcode) & (Instruction::kAdd | Instruction:… in IsLinear()
Dvreg_analysis.cc255 0 : Instruction::FlagsOf(mir->dalvikInsn.opcode); in InferTypeAndSize()
Dmir_graph.cc733 int flags = Instruction::FlagsOf(insn->dalvikInsn.opcode); in InlineMethod()
1249 flags = Instruction::FlagsOf(insn.opcode); in GetDalvikDisassembly()
Dmir_dataflow.cc1088 int flags = Instruction::FlagsOf(mir->dalvikInsn.opcode); in DoSSAConversion()
Dmir_optimization.cc1267 if (!(Instruction::FlagsOf(mir->dalvikInsn.opcode) & Instruction::kInvoke)) { in InlineSpecialMethods()
Dlocal_value_numbering.cc467 if ((Instruction::FlagsOf(mir->dalvikInsn.opcode) & Instruction::kInvoke) != 0) { in PruneNonAliasingRefsForCatch()
/art/runtime/
Ddex_instruction.cc93 return FlagsOf(opcode) & Instruction::kContinue; in CanFlowThrough()
Ddex_instruction.h444 static int FlagsOf(Code opcode) { in FlagsOf() function
/art/runtime/verifier/
Dmethod_verifier.cc1466 int opcode_flags = Instruction::FlagsOf(inst->Opcode()); in CodeFlowVerifyInstruction()