Searched refs:GetFpSpillMask (Results 1 – 13 of 13) sorted by relevance
/art/compiler/ |
D | oat_test.cc | 45 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod() 61 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); in CheckMethod()
|
D | compiled_method.h | 138 uint32_t GetFpSpillMask() const { in GetFpSpillMask() function
|
D | oat_writer.cc | 323 fp_spill_mask = compiled_method->GetFpSpillMask(); in InitOatCodeMethod()
|
/art/runtime/ |
D | stack.cc | 144 uint32_t spill_mask = is_float ? m->GetFpSpillMask() 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() 176 uint32_t fp_spills = m->GetFpSpillMask(); in SetVReg()
|
D | oat_file.h | 84 uint32_t GetFpSpillMask() const { in GetFpSpillMask() function
|
D | common_test.h | 206 compiled_method->GetFpSpillMask(), in MakeExecutable()
|
D | thread.cc | 2071 uint32_t fp_spills = m->GetFpSpillMask(); in VisitFrame()
|
D | class_linker.cc | 2866 method->SetFpSpillMask(refs_and_args->GetFpSpillMask()); in CreateProxyMethod()
|
/art/runtime/arch/x86/ |
D | context_x86.cc | 42 DCHECK_EQ(method->GetFpSpillMask(), 0u); in FillCalleeSaves()
|
/art/runtime/arch/mips/ |
D | context_mips.cc | 45 uint32_t fp_core_spills = method->GetFpSpillMask(); in FillCalleeSaves()
|
/art/runtime/arch/arm/ |
D | context_arm.cc | 46 uint32_t fp_core_spills = method->GetFpSpillMask(); in FillCalleeSaves()
|
/art/oatdump/ |
D | oatdump.cc | 335 indent2_os << StringPrintf("\nfp_spill_mask: 0x%08x ", oat_method.GetFpSpillMask()); in DumpOatMethod() 336 DumpSpillMask(indent2_os, oat_method.GetFpSpillMask(), true); in DumpOatMethod() 413 spill_mask = oat_method.GetFpSpillMask(); in DumpVmap() 428 uint32_t spill_mask = is_float ? oat_method.GetFpSpillMask() in DescribeVReg() 433 oat_method.GetFpSpillMask(), in DescribeVReg()
|
/art/runtime/mirror/ |
D | art_method.h | 338 uint32_t GetFpSpillMask() const { in GetFpSpillMask() function
|