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

  /art/runtime/quick/
quick_method_frame_info.h 49 uint32_t FpSpillMask() const {
  /art/runtime/arch/mips/
context_mips.cc 50 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) {
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 62 << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
72 << " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
  /art/compiler/jni/quick/arm/
calling_convention_arm.h 66 uint32_t FpSpillMask() const OVERRIDE;
calling_convention_arm.cc 246 uint32_t ArmJniCallingConvention::FpSpillMask() const {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 65 uint32_t FpSpillMask() const OVERRIDE;
calling_convention_arm64.cc 169 uint32_t fp_spill_mask = FpSpillMask();
192 uint32_t Arm64JniCallingConvention::FpSpillMask() const {
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 66 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.h 65 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/x86/
calling_convention_x86.h 67 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 63 uint32_t FpSpillMask() const OVERRIDE;
calling_convention_x86_64.cc 145 uint32_t X86_64JniCallingConvention::FpSpillMask() const {
  /art/runtime/arch/arm/
context_arm.cc 53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) {
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/arm64/
context_arm64.cc 53 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) {
57 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/mips64/
context_mips64.cc 50 for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) {
54 DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/x86/
context_x86.cc 52 uint32_t fp_regs = frame_info.FpSpillMask();
63 POPCOUNT(frame_info.CoreSpillMask()) - 1 + 2 * POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/arch/x86_64/
context_x86_64.cc 52 uint32_t fp_regs = frame_info.FpSpillMask();
60 POPCOUNT(frame_info.CoreSpillMask()) - 1 + POPCOUNT(frame_info.FpSpillMask()));
  /art/runtime/
oat_file-inl.h 71 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask();
stack.cc 769 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());
    [all...]
  /art/compiler/jni/quick/
calling_convention.h 308 virtual uint32_t FpSpillMask() const = 0;
jni_compiler.cc 496 main_jni_conv->FpSpillMask(),
  /art/runtime/arch/
arch_test.cc 55 << frame_info.FpSpillMask() << std::dec;

Completed in 258 milliseconds