Searched defs:IsPseudoMirOp (Results 1 - 1 of 1) sorted by relevance

/art/compiler/dex/
H A Dmir_graph.h291 static bool IsPseudoMirOp(Instruction::Code opcode) { function in struct:art::MIR::DecodedInstruction
295 static bool IsPseudoMirOp(int opcode) { function in struct:art::MIR::DecodedInstruction
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(opcod
[all...]

Completed in 47 milliseconds