HomeSort by relevance Sort by last modified time
    Searched refs:GetCoreSpillMask (Results 1 - 13 of 13) sorted by null

  /art/runtime/arch/x86/
context_x86.cc 40 uint32_t core_spills = method->GetCoreSpillMask();
  /art/compiler/
oat_test.cc 44 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
60 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
compiled_method.h 134 uint32_t GetCoreSpillMask() const {
oat_writer.cc 322 core_spill_mask = compiled_method->GetCoreSpillMask();
    [all...]
  /art/runtime/arch/arm/
context_arm.cc 45 uint32_t core_spills = method->GetCoreSpillMask();
  /art/runtime/arch/mips/
context_mips.cc 44 uint32_t core_spills = method->GetCoreSpillMask();
  /art/runtime/
stack.cc 145 : m->GetCoreSpillMask();
151 return GetVReg(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(),
169 uint32_t spill_mask = is_float ? m->GetFpSpillMask() : m->GetCoreSpillMask();
175 uint32_t core_spills = m->GetCoreSpillMask();
oat_file.h 81 uint32_t GetCoreSpillMask() const {
common_test.h 205 compiled_method->GetCoreSpillMask(),
thread.cc     [all...]
class_linker.cc     [all...]
  /art/runtime/mirror/
art_method.h 329 uint32_t GetCoreSpillMask() const {
  /art/oatdump/
oatdump.cc 333 indent2_os << StringPrintf("core_spill_mask: 0x%08x ", oat_method.GetCoreSpillMask());
334 DumpSpillMask(indent2_os, oat_method.GetCoreSpillMask(), false);
399 uint32_t spill_mask = oat_method.GetCoreSpillMask();
429 : oat_method.GetCoreSpillMask();
432 uint32_t offset = StackVisitor::GetVRegOffset(code_item, oat_method.GetCoreSpillMask(),
    [all...]

Completed in 127 milliseconds