HomeSort by: relevance | last modified time | path
    Searched refs:FPDiff (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64CallLowering.cpp 230 int FPDiff = 0)
232 FPDiff(FPDiff),
245 Offset += FPDiff;
325 int FPDiff;
933 // FPDiff is the byte offset of the call's argument area from the callee's.
938 int FPDiff = 0;
945 // We aren't sibcalling, so we need to compute FPDiff. We need to do this
946 // before handling assignments, because FPDiff must be known for memory
961 // FPDiff will be negative if this tail call requires more space than w
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kISelLowering.h 183 SDValue Chain, bool IsTailCall, int FPDiff,
187 /// optimization is performed and it is required (FPDiff!=0).
190 EVT PtrVT, unsigned SlotSize, int FPDiff,
M68kISelLowering.cpp 348 bool IsTailCall, int FPDiff,
360 EVT PtrVT, unsigned SlotSize, int FPDiff, const SDLoc &DL) const {
361 if (!FPDiff)
366 SlotSize, (int64_t)FPDiff - SlotSize, false);
539 int FPDiff = 0;
541 // Lower arguments at fp - stackoffset + fpdiff.
544 FPDiff = NumBytesCallerPushed - NumBytes;
548 if (FPDiff < MFI->getTCReturnAddrDelta())
549 MFI->setTCReturnAddrDelta(FPDiff);
574 if (IsTailCall && FPDiff)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUCallLowering.cpp 170 int FPDiff;
179 bool IsTailCall = false, int FPDiff = 0)
180 : AMDGPUOutgoingValueHandler(MIRBuilder, MRI, MIB), FPDiff(FPDiff),
191 Offset += FPDiff;
1139 // FPDiff is the byte offset of the call's argument area from the callee's.
1144 int FPDiff = 0;
1151 // We aren't sibcalling, so we need to compute FPDiff. We need to do this
1152 // before handling assignments, because FPDiff must be known for memory
1167 // FPDiff will be negative if this tail call requires more space than w
    [all...]
SIISelLowering.cpp 3031 // FPDiff is the byte offset of the call's argument area from the callee's.
3036 int32_t FPDiff = 0;
3111 Offset = Offset + FPDiff;
3213 Ops.push_back(DAG.getTargetConstant(FPDiff, DL, MVT::i32));
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86RegisterInfo.cpp 260 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
265 return 4 - FPDiff;
267 return 12 - FPDiff;
X86ISelLowering.h 1487 bool Is64Bit, int FPDiff,
X86ISelLowering.cpp 3870 bool Is64Bit, int FPDiff, const SDLoc &dl) const {
3881 /// optimization is performed and it is required (FPDiff!=0).
3885 int FPDiff, const SDLoc &dl) {
3887 if (!FPDiff) return Chain;
3890 MF.getFrameInfo().CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
4007 int FPDiff = 0;
4009 // Lower arguments at fp - stackoffset + fpdiff.
4012 FPDiff = NumBytesCallerPushed - NumBytes;
4016 if (FPDiff < X86Info->getTCReturnAddrDelta())
4017 X86Info->setTCReturnAddrDelta(FPDiff);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 5587 // FPDiff is the byte offset of the call's argument area from the callee's.
5592 int FPDiff = 0;
5601 // FPDiff will be negative if this tail call requires more space than we
5604 FPDiff = NumReusableBytes - NumBytes;
5608 if (FPDiff < 0 && FuncInfo->getTailCallReservedStack() < (unsigned)-FPDiff)
5609 FuncInfo->setTailCallReservedStack(-FPDiff);
5616 assert(FPDiff % 16 == 0 && "unaligned stack on tail call");
5793 Offset = Offset + FPDiff;
5892 Ops.push_back(DAG.getTargetConstant(FPDiff, DL, MVT::i32))
    [all...]

Completed in 76 milliseconds