Searched refs:vregs (Results 1 – 11 of 11) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | Instruction.java | 216 String vregs = ""; in toString() local 230 vregs = ", v" + invokeFormatInfo.vregG; in toString() 233 vregs = ", v" + invokeFormatInfo.vregF + vregs; in toString() 236 vregs = ", v" + invokeFormatInfo.vregE + vregs; in toString() 239 vregs = ", v" + invokeFormatInfo.vregD + vregs; in toString() 242 vregs = "v" + vregC + vregs; in toString() 247 repr += "(" + vregs + ")"; in toString() 258 String vregs = ""; in toString() local 261 vregs = ", v" + vregC; in toString() 264 vregs = ", v" + vregB + vregs; in toString() [all …]
|
/art/test/541-regression-inlined-deopt/ |
D | info.txt | 3 control over vregs because the previous test 449 would pass because the vreg
|
/art/runtime/interpreter/mterp/mips/ |
D | entry.S | 52 addu rFP, a2, SHADOWFRAME_VREGS_OFFSET # point to vregs.
|
/art/runtime/interpreter/mterp/arm/ |
D | entry.S | 57 add rFP, r2, #SHADOWFRAME_VREGS_OFFSET @ point to vregs.
|
/art/compiler/optimizing/ |
D | graph_visualizer.cc | 582 StringList vregs; in PrintInstruction() local 586 vregs.NewEntryStream() << GetTypeId(insn->GetType()) << insn->GetId(); in PrintInstruction() 588 vregs.NewEntryStream() << "_"; in PrintInstruction() 591 envs.NewEntryStream() << vregs; in PrintInstruction()
|
D | instruction_builder.h | 99 HBasicBlock* block, ArenaVector<HInstruction*>* locals, const size_t vregs);
|
D | instruction_builder.cc | 43 const size_t vregs = graph_->GetNumberOfVRegs(); in GetLocalsFor() local 44 if (locals->size() == vregs) { in GetLocalsFor() 47 return GetLocalsForWithAllocation(block, locals, vregs); in GetLocalsFor() 53 const size_t vregs) { in GetLocalsForWithAllocation() argument 54 DCHECK_NE(locals->size(), vregs); in GetLocalsForWithAllocation() 55 locals->resize(vregs, nullptr); in GetLocalsForWithAllocation() 61 for (size_t i = 0; i < vregs; ++i) { in GetLocalsForWithAllocation()
|
/art/test/563-checker-fakestring/smali/ |
D | TestCase.smali | 18 # Test that all vregs holding the new-instance are updated after the
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 61 # that both vregs allocated correctly. 254 # as integers is returned to prove that both vregs were copied.
|
/art/runtime/interpreter/mterp/out/ |
D | mterp_mips.S | 786 addu rFP, a2, SHADOWFRAME_VREGS_OFFSET # point to vregs.
|
D | mterp_arm.S | 376 add rFP, r2, #SHADOWFRAME_VREGS_OFFSET @ point to vregs.
|