Home
last modified time | relevance | path

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

/external/v8/src/compiler/arm/
Dcode-generator-arm.cc1429 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); in FinishFrame() local
1430 if (saves_fp != 0) { in FinishFrame()
1434 if (saves_fp != 0) { in FinishFrame()
1437 uint32_t last = base::bits::CountLeadingZeros32(saves_fp) - 1; in FinishFrame()
1438 uint32_t first = base::bits::CountTrailingZeros32(saves_fp); in FinishFrame()
1439 DCHECK_EQ((last - first + 1), base::bits::CountPopulation32(saves_fp)); in FinishFrame()
1487 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
1492 if (saves_fp != 0) { in AssembleConstructFrame()
1495 uint32_t last = base::bits::CountLeadingZeros32(saves_fp) - 1; in AssembleConstructFrame()
1496 uint32_t first = base::bits::CountTrailingZeros32(saves_fp); in AssembleConstructFrame()
[all …]
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc2052 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); in FinishFrame() local
2053 if (saves_fp != 0) { in FinishFrame()
2055 if (saves_fp != 0) { // Save callee-saved XMM registers. in FinishFrame()
2056 const uint32_t saves_fp_count = base::bits::CountPopulation32(saves_fp); in FinishFrame()
2100 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); in AssembleConstructFrame() local
2105 if (saves_fp != 0) { // Save callee-saved XMM registers. in AssembleConstructFrame()
2106 const uint32_t saves_fp_count = base::bits::CountPopulation32(saves_fp); in AssembleConstructFrame()
2113 if (!((1 << i) & saves_fp)) continue; in AssembleConstructFrame()
2141 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); in AssembleReturn() local
2142 if (saves_fp != 0) { in AssembleReturn()
[all …]
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc1683 CPURegList saves_fp = CPURegList(CPURegister::kFPRegister, kDRegSizeInBits, in FinishFrame() local
1685 int saved_count = saves_fp.Count(); in FinishFrame()
1687 DCHECK(saves_fp.list() == CPURegList::GetCalleeSavedFP().list()); in FinishFrame()
1742 CPURegList saves_fp = CPURegList(CPURegister::kFPRegister, kDRegSizeInBits, in AssembleConstructFrame() local
1744 int saved_count = saves_fp.Count(); in AssembleConstructFrame()
1746 DCHECK(saves_fp.list() == CPURegList::GetCalleeSavedFP().list()); in AssembleConstructFrame()
1747 __ PushCPURegList(saves_fp); in AssembleConstructFrame()
1773 CPURegList saves_fp = CPURegList(CPURegister::kFPRegister, kDRegSizeInBits, in AssembleReturn() local
1775 if (saves_fp.Count() != 0) { in AssembleReturn()
1776 __ PopCPURegList(saves_fp); in AssembleReturn()