Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dcontext_x86.cc45 frame_info.CoreSpillMask() & ~(static_cast<uint32_t>(-1) << kNumberOfCpuRegisters); in FillCalleeSaves()
46 DCHECK_EQ(1, POPCOUNT(frame_info.CoreSpillMask() & ~core_regs)); // Return address spill. in FillCalleeSaves()
51 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1); in FillCalleeSaves()
65 POPCOUNT(frame_info.CoreSpillMask()) - 1 + 2 * POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/x86_64/
Dcontext_x86_64.cc44 frame_info.CoreSpillMask() & ~(static_cast<uint32_t>(-1) << kNumberOfCpuRegisters); in FillCalleeSaves()
45 DCHECK_EQ(1, POPCOUNT(frame_info.CoreSpillMask() & ~core_regs)); // Return address spill. in FillCalleeSaves()
50 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) - 1); in FillCalleeSaves()
61 POPCOUNT(frame_info.CoreSpillMask()) - 1 + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/arm/
Dcontext_arm.cc45 uint32_t core_regs = frame_info.CoreSpillMask(); in FillCalleeSaves()
51 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
58 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/arch/arm64/
Dcontext_arm64.cc53 for (uint32_t core_reg : HighToLowBits(frame_info.CoreSpillMask())) { in FillCalleeSaves()
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask())); in FillCalleeSaves()
64 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask())); in FillCalleeSaves()
/art/runtime/quick/
Dquick_method_frame_info.h45 uint32_t CoreSpillMask() const { in CoreSpillMask() function
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.h62 uint32_t CoreSpillMask() const override;
Dcalling_convention_arm64.cc228 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.cc174 uint32_t X86_64JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::x86_64::X86_64JniCallingConvention
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.h67 uint32_t CoreSpillMask() const override;
Dcalling_convention_x86.cc186 uint32_t X86JniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::x86::X86JniCallingConvention
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.h71 uint32_t CoreSpillMask() const override;
Dcalling_convention_arm.cc380 uint32_t ArmJniCallingConvention::CoreSpillMask() const { in CoreSpillMask() function in art::arm::ArmJniCallingConvention
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc63 << " core spills=" << std::hex << frame_info.CoreSpillMask() in CheckPCOffset()
/art/runtime/
Doat_file-inl.h65 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetFrameInfo().CoreSpillMask(); in GetCoreSpillMask()
Dcha.cc232 size_t core_spill_size = POPCOUNT(frame_info.CoreSpillMask()) * in SetShouldDeoptimizeFlag()
/art/compiler/jni/quick/
Dcalling_convention.h325 virtual uint32_t CoreSpillMask() const = 0;
Djni_compiler.cc685 main_jni_conv->CoreSpillMask(), in ArtJniCompileMethodInternal()