Searched refs:SlotSize (Results 1 - 10 of 10) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.cpp22 unsigned SlotSize = RegInfo->getSlotSize(); local
29 RestoreBasePointerOffset -= SlotSize;
H A DX86RegisterInfo.h35 /// SlotSize - Stack slot size in bytes.
37 unsigned SlotSize; member in class:llvm::final
137 unsigned getSlotSize() const { return SlotSize; }
H A DX86FrameLowering.cpp44 SlotSize = TRI->getSlotSize();
773 // go with the minimum SlotSize.
781 else if (MaxAlign < SlotSize)
782 MaxAlign = SlotSize;
952 if (HasFP) MinSize += SlotSize;
981 int stackGrowth = -SlotSize;
1003 uint64_t FrameSize = StackSize - SlotSize;
1006 FrameSize += SlotSize;
1207 NoInfo, MachineMemOperand::MOLoad, SlotSize, SlotSize));
[all...]
H A DX86FrameLowering.h36 unsigned SlotSize; member in class:llvm::X86FrameLowering
H A DX86RegisterInfo.cpp65 SlotSize = 8;
74 SlotSize = 4;
H A DX86ISelLowering.cpp3039 EVT PtrVT, unsigned SlotSize,
3045 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
3622 unsigned SlotSize = RegInfo->getSlotSize(); local
3623 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3625 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3629 (StackAlignment-SlotSize);
3987 unsigned SlotSize = RegInfo->getSlotSize(); local
3988 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3989 -(int64_t)SlotSize,
3037 EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT, unsigned SlotSize, int FPDiff, SDLoc dl) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp187 /// \param SlotSize - The size and alignment of a stack slot.
201 CharUnits SlotSize,
212 if (AllowHigherAlign && DirectAlign > SlotSize) {
216 Addr = Address(Ptr, SlotSize);
220 CharUnits FullDirectSize = DirectSize.RoundUpToAlignment(SlotSize);
228 if (DirectSize < SlotSize && CGF.CGM.getDataLayout().isBigEndian()) {
229 Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr, SlotSize - DirectSize);
4117 CharUnits SlotSize = CharUnits::fromQuantity(8);
4127 if (EltSize < SlotSize) {
4129 SlotSize *
196 emitVoidPtrDirectVAArg(CodeGenFunction &CGF, Address VAListAddr, llvm::Type *DirectTy, CharUnits DirectSize, CharUnits DirectAlign, CharUnits SlotSize, bool AllowHigherAlign) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1024 uint64_t SlotSize = MF.getDataLayout().getPointerSize(); local
1025 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1962 unsigned SlotSize = SlotVT.getSizeInBits();
1971 if (SrcSize > SlotSize)
1975 assert(SrcSize == SlotSize && "Invalid store");
1981 if (SlotSize == DestSize)
1985 assert(SlotSize < DestSize && "Unknown extension!");
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3939 int SlotSize = isPPC64 ? 8 : 4; local
3943 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3956 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,

Completed in 218 milliseconds