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

  /art/runtime/quick/
quick_method_frame_info.h 49 uint32_t FpSpillMask() const {
  /art/runtime/arch/arm/
context_arm.cc 48 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
63 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
  /art/runtime/arch/mips/
context_mips.cc 47 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
62 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 51 << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
60 " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
  /art/compiler/jni/quick/arm/
calling_convention_arm.h 66 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 65 uint32_t FpSpillMask() const OVERRIDE;
calling_convention_arm64.cc 185 uint32_t Arm64JniCallingConvention::FpSpillMask() const {
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 66 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/x86/
calling_convention_x86.h 64 uint32_t FpSpillMask() const OVERRIDE {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 64 uint32_t FpSpillMask() const OVERRIDE;
calling_convention_x86_64.cc 144 uint32_t X86_64JniCallingConvention::FpSpillMask() const {
  /art/runtime/arch/arm64/
context_arm64.cc 51 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
67 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
  /art/runtime/arch/x86_64/
context_x86_64.cc 46 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
61 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
  /art/runtime/arch/x86/
context_x86.cc 43 DCHECK_EQ(frame_info.FpSpillMask(), 0u);
  /art/runtime/
stack.cc 167 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
192 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
222 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
245 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
268 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
302 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
333 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
364 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
oat_file-inl.h 78 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask();
thread.cc     [all...]
  /art/compiler/jni/quick/
calling_convention.h 299 virtual uint32_t FpSpillMask() const = 0;
jni_compiler.cc 442 main_jni_conv->FpSpillMask());
  /art/runtime/arch/
arch_test.cc 40 << frame_info.FpSpillMask() << std::dec;
  /art/runtime/mirror/
art_method-inl.h 399 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());

Completed in 4000 milliseconds