Home
last modified time | relevance | path

Searched refs:CoreSpillMask (Results 1 – 25 of 25) sorted by relevance

/art/runtime/arch/x86/
Dcontext_x86.cc43 frame_info.CoreSpillMask() & ~(static_cast<uint32_t>(-1) << kNumberOfCpuRegisters); in FillCalleeSaves()
44 DCHECK_EQ(1, POPCOUNT(frame_info.CoreSpillMask() & ~core_regs)); // Return address spill. in FillCalleeSaves()
49 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1); in FillCalleeSaves()
63 POPCOUNT(frame_info.CoreSpillMask()) - 1 + 2 * POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc43 frame_info.CoreSpillMask() & ~(static_cast<uint32_t>(-1) << kNumberOfCpuRegisters); in FillCalleeSaves()
44 DCHECK_EQ(1, POPCOUNT(frame_info.CoreSpillMask() & ~core_regs)); // Return address spill. in FillCalleeSaves()
49 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1); in FillCalleeSaves()
60 POPCOUNT(frame_info.CoreSpillMask()) - 1 + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/mips/
Dcontext_mips.cc43 for (uint32_t core_reg : HighToLowBits(frame_info.CoreSpillMask())) { in FillCalleeSaves()
47 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/arm/
Dcontext_arm.cc44 uint32_t core_regs = frame_info.CoreSpillMask(); in FillCalleeSaves()
50 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/mips64/
Dcontext_mips64.cc43 for (uint32_t core_reg : HighToLowBits(frame_info.CoreSpillMask())) { in FillCalleeSaves()
47 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/arm64/
Dcontext_arm64.cc46 for (uint32_t core_reg : HighToLowBits(frame_info.CoreSpillMask())) { in FillCalleeSaves()
50 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc61 << type << " core spills=" << std::hex << frame_info.CoreSpillMask() << " fp spills=" in CheckFrameSize()
71 << " core spills=" << std::hex << frame_info.CoreSpillMask() in CheckPCOffset()
/art/runtime/quick/
Dquick_method_frame_info.h45 uint32_t CoreSpillMask() const { in CoreSpillMask() function
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.h64 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_arm64.cc160 uint32_t core_spill_mask = CoreSpillMask(); in Arm64JniCallingConvention()
178 uint32_t Arm64JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::arm64::Arm64JniCallingConvention
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.h62 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_x86_64.cc140 uint32_t X86_64JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::x86_64::X86_64JniCallingConvention
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.h64 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_mips64.cc139 uint32_t Mips64JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::mips64::Mips64JniCallingConvention
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.h65 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_arm.cc239 uint32_t ArmJniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::arm::ArmJniCallingConvention
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.h65 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_mips.cc174 uint32_t MipsJniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::mips::MipsJniCallingConvention
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.h66 uint32_t CoreSpillMask() const OVERRIDE;
Dcalling_convention_x86.cc177 uint32_t X86JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::x86::X86JniCallingConvention
/art/runtime/
Doat_file-inl.h63 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.CoreSpillMask(); in GetCoreSpillMask()
Dstack.cc769 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask()); in GetCurrentQuickFrameInfo()
/art/runtime/arch/
Darch_test.cc54 << type << " core spills=" << std::hex << frame_info.CoreSpillMask() << " fp spills=" in CheckFrameSize()
/art/compiler/jni/quick/
Dcalling_convention.h307 virtual uint32_t CoreSpillMask() const = 0;
Djni_compiler.cc495 main_jni_conv->CoreSpillMask(), in ArtJniCompileMethodInternal()