Searched refs:GetCoreSpillMask (Results 1 – 13 of 13) sorted by relevance
/art/compiler/ |
D | oat_test.cc | 44 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod() 60 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); in CheckMethod()
|
D | compiled_method.h | 134 uint32_t GetCoreSpillMask() const { in GetCoreSpillMask() function
|
D | oat_writer.cc | 322 core_spill_mask = compiled_method->GetCoreSpillMask(); in InitOatCodeMethod()
|
/art/runtime/ |
D | stack.cc | 145 : m->GetCoreSpillMask(); in GetVReg() 151 return GetVReg(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(), in GetVReg() 169 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask(); in SetVReg() 175 uint32_t core_spills = m->GetCoreSpillMask(); in SetVReg()
|
D | oat_file.h | 81 uint32_t GetCoreSpillMask() const { in GetCoreSpillMask() function
|
D | common_test.h | 205 compiled_method->GetCoreSpillMask(), in MakeExecutable()
|
D | thread.cc | 2070 uint32_t core_spills = m->GetCoreSpillMask(); in VisitFrame()
|
D | class_linker.cc | 2865 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask()); in CreateProxyMethod()
|
/art/runtime/arch/x86/ |
D | context_x86.cc | 40 uint32_t core_spills = method->GetCoreSpillMask(); in FillCalleeSaves()
|
/art/runtime/arch/mips/ |
D | context_mips.cc | 44 uint32_t core_spills = method->GetCoreSpillMask(); in FillCalleeSaves()
|
/art/runtime/arch/arm/ |
D | context_arm.cc | 45 uint32_t core_spills = method->GetCoreSpillMask(); in FillCalleeSaves()
|
/art/oatdump/ |
D | oatdump.cc | 333 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask()); in DumpOatMethod() 334 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false); in DumpOatMethod() 399 uint32_t spill_mask = oat_method.GetCoreSpillMask(); in DumpVmap() 429 : oat_method.GetCoreSpillMask(); in DescribeVReg() 432 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(), in DescribeVReg()
|
/art/runtime/mirror/ |
D | art_method.h | 329 uint32_t GetCoreSpillMask() const { in GetCoreSpillMask() function
|