Home
last modified time | relevance | path

Searched refs:saves_fp (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/compiler/arm/
Dcode-generator-arm.cc2997 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in FinishFrame() local
2998 if (saves_fp != 0) { in FinishFrame()
3002 if (saves_fp != 0) { in FinishFrame()
3005 uint32_t last = base::bits::CountLeadingZeros32(saves_fp) - 1; in FinishFrame()
3006 uint32_t first = base::bits::CountTrailingZeros32(saves_fp); in FinishFrame()
3007 DCHECK_EQ((last - first + 1), base::bits::CountPopulation(saves_fp)); in FinishFrame()
3057 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
3101 shrink_slots -= 2 * base::bits::CountPopulation(saves_fp); in AssembleConstructFrame()
3107 if (saves_fp != 0) { in AssembleConstructFrame()
3110 uint32_t last = base::bits::CountLeadingZeros32(saves_fp) - 1; in AssembleConstructFrame()
[all …]
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc3035 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in FinishFrame() local
3036 if (saves_fp != 0) { in FinishFrame()
3038 if (saves_fp != 0) { // Save callee-saved XMM registers. in FinishFrame()
3039 const uint32_t saves_fp_count = base::bits::CountPopulation(saves_fp); in FinishFrame()
3096 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
3133 base::bits::CountPopulation(saves_fp) * (kQuadWordSize / kPointerSize); in AssembleConstructFrame()
3140 if (saves_fp != 0) { // Save callee-saved XMM registers. in AssembleConstructFrame()
3141 const uint32_t saves_fp_count = base::bits::CountPopulation(saves_fp); in AssembleConstructFrame()
3148 if (!((1 << i) & saves_fp)) continue; in AssembleConstructFrame()
3183 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in AssembleReturn() local
[all …]
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc2350 CPURegList saves_fp = CPURegList(CPURegister::kVRegister, kDRegSizeInBits, in FinishFrame() local
2352 int saved_count = saves_fp.Count(); in FinishFrame()
2354 DCHECK(saves_fp.list() == CPURegList::GetCalleeSavedV().list()); in FinishFrame()
2380 CPURegList saves_fp = CPURegList(CPURegister::kVRegister, kDRegSizeInBits, in AssembleConstructFrame() local
2459 shrink_slots -= saves_fp.Count(); in AssembleConstructFrame()
2503 DCHECK_IMPLIES(saves_fp.Count() != 0, in AssembleConstructFrame()
2504 saves_fp.list() == CPURegList::GetCalleeSavedV().list()); in AssembleConstructFrame()
2505 __ PushCPURegList(saves_fp); in AssembleConstructFrame()
2533 CPURegList saves_fp = CPURegList(CPURegister::kVRegister, kDRegSizeInBits, in AssembleReturn() local
2535 __ PopCPURegList(saves_fp); in AssembleReturn()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc2377 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
2426 (kDoubleSize / kPointerSize) * base::bits::CountPopulation(saves_fp); in AssembleConstructFrame()
2431 if (saves_fp != 0) { in AssembleConstructFrame()
2432 __ MultiPushDoubles(saves_fp); in AssembleConstructFrame()
2433 DCHECK_EQ(kNumCalleeSavedDoubles, base::bits::CountPopulation(saves_fp)); in AssembleConstructFrame()
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc2995 const RegList saves_fp = call_descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
3039 (kDoubleSize / kPointerSize) * base::bits::CountPopulation(saves_fp); in AssembleConstructFrame()
3044 if (saves_fp != 0) { in AssembleConstructFrame()
3045 __ MultiPushDoubles(saves_fp); in AssembleConstructFrame()
3046 DCHECK_EQ(kNumCalleeSavedDoubles, base::bits::CountPopulation(saves_fp)); in AssembleConstructFrame()