Searched refs:inst (Results 51 - 56 of 56) sorted by relevance

123

/art/dexlayout/
H A Ddexlayout.cc1053 for (const DexInstructionPcPair& inst : code->Instructions()) {
1054 const uint32_t insn_width = inst->SizeInCodeUnits();
1056 LOG(WARNING) << "GLITCH: zero-width instruction at idx=0x" << std::hex << inst.DexPc();
1059 DumpInstruction(code, code_offset, inst.DexPc(), insn_width, &inst.Inst());
/art/compiler/optimizing/
H A Dinstruction_builder.cc492 for (const DexInstructionPcPair& inst : code_item_accessor_) {
493 switch (inst->Opcode()) {
498 locations->ClearBit(inst.DexPc());
499 DexInstructionIterator next = std::next(DexInstructionIterator(inst));
500 DCHECK(next.DexPc() != inst.DexPc());
H A Dcode_generator_arm64.cc3106 static bool IsFloatingPointZeroConstant(HInstruction* inst) { argument
3107 return (inst->IsFloatConstant() && (inst->AsFloatConstant()->IsArithmeticZero()))
3108 || (inst->IsDoubleConstant() && (inst->AsDoubleConstant()->IsArithmeticZero()));
/art/dex2oat/
H A Ddex2oat_test.cc1003 for (const DexInstructionPcPair& inst :
1005 ASSERT_FALSE(inst->IsQuickened()) << inst->Opcode() << " " << output_;
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips64.S2854 PREFETCH_INST 2 # Get next inst, but don't advance rPC
2877 PREFETCH_INST 2 # Get next inst, but don't advance rPC
2918 PREFETCH_INST 2 # Get next inst, but don't advance rPC
2944 PREFETCH_INST 2 # Get next inst, but don't advance rPC
2970 PREFETCH_INST 2 # Get next inst, but don't advance rPC
2996 PREFETCH_INST 2 # Get next inst, but don't advance rPC
H A Dmterp_arm.S2874 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
2898 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
2939 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
2965 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
2991 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
3017 PREFETCH_INST 2 @ Get next inst, but don't advance rPC

Completed in 185 milliseconds

123