HomeSort by relevance Sort by last modified time
    Searched refs:FlagsOf (Results 1 - 9 of 9) sorted by null

  /art/compiler/dex/
mir_graph.h 300 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kInvoke) == Instruction::kInvoke);
304 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kStore) == Instruction::kStore);
308 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kLoad) == Instruction::kLoad);
312 return !IsPseudoMirOp(opcode) && (Instruction::FlagsOf(opcode) == (Instruction::kContinue | Instruction::kBranch));
319 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kRegCFieldOrConstant) == Instruction::kRegCFieldOrConstant);
326 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kRegBFieldOrConstant) == Instruction::kRegBFieldOrConstant);
330 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kCast) == Instruction::kCast);
340 return !IsPseudoMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kClobber) == Instruction::kClobber);
344 return !IsPseudoMirOp(opcode) && (Instruction::FlagsOf(opcode) & (Instruction::kAdd | Instruction::kSubtract)) != 0;
    [all...]
vreg_analysis.cc 255 0 : Instruction::FlagsOf(mir->dalvikInsn.opcode);
mir_graph.cc 733 int flags = Instruction::FlagsOf(insn->dalvikInsn.opcode);
    [all...]
mir_dataflow.cc 1088 int flags = Instruction::FlagsOf(mir->dalvikInsn.opcode);
    [all...]
mir_optimization.cc     [all...]
local_value_numbering.cc 467 if ((Instruction::FlagsOf(mir->dalvikInsn.opcode) & Instruction::kInvoke) != 0) {
    [all...]
  /art/runtime/
dex_instruction.cc 93 return FlagsOf(opcode) & Instruction::kContinue;
dex_instruction.h 444 static int FlagsOf(Code opcode) {
  /art/runtime/verifier/
method_verifier.cc     [all...]

Completed in 1154 milliseconds