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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.cpp22 unsigned SlotSize = RegInfo->getSlotSize(); local
26 RestoreBasePointerOffset -= SlotSize;
H A DX86WinAllocaExpander.cpp62 unsigned SlotSize = 0; member in class:__anon5486::X86WinAllocaExpander
212 assert(SlotSize == 4 || SlotSize == 8);
216 assert(Amount >= SlotSize);
222 Amount -= SlotSize;
231 if (Amount == SlotSize) {
282 SlotSize = TRI->getSlotSize();
H A DX86RegisterInfo.h34 /// SlotSize - Stack slot size in bytes.
36 unsigned SlotSize; member in class:llvm::final
147 unsigned getSlotSize() const { return SlotSize; }
H A DX86CallFrameOptimization.cpp122 unsigned SlotSize = 0; member in class:__anon5436::X86CallFrameOptimization
244 SlotSize = RegInfo.getSlotSize();
245 assert(isPowerOf2_32(SlotSize) && "Expect power of 2 stack slot size");
246 Log2SlotSize = Log2_32(SlotSize);
441 if (StackDisp & (SlotSize - 1))
476 for (; MMI != MME; ++MMI, Context.ExpectedDist += SlotSize)
583 MCCFIInstruction::createAdjustCfaOffset(nullptr, SlotSize));
H A DX86CallingConv.cpp303 unsigned SlotSize = Is64Bit ? 8 : 4; local
308 Offset = State.AllocateStack(5 * SlotSize, 4);
313 Offset = SlotSize;
319 (void)State.AllocateStack(6 * SlotSize, 4);
327 Offset += SlotSize;
H A DX86FrameLowering.cpp43 SlotSize = TRI->getSlotSize();
287 // movabsq +-$Offset+-SlotSize, %rax
298 Offset = -(Offset - SlotSize);
300 Offset = Offset + SlotSize;
321 if (ThisVal == SlotSize) {
846 // go with the minimum SlotSize.
854 else if (MaxAlign < SlotSize)
855 MaxAlign = SlotSize;
1043 if (HasFP) MinSize += SlotSize;
1073 int stackGrowth = -SlotSize;
[all...]
H A DX86FrameLowering.h36 unsigned SlotSize; member in class:llvm::X86FrameLowering
H A DX86RegisterInfo.cpp59 SlotSize = 8;
68 SlotSize = 4;
H A DX86ISelLowering.cpp3750 EVT PtrVT, unsigned SlotSize,
3756 MF.getFrameInfo().CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
4363 const uint64_t SlotSize = Subtarget.getRegisterInfo()->getSlotSize();
4364 assert(StackSize % SlotSize == 0 &&
4365 "StackSize must be a multiple of SlotSize");
4366 return alignTo(StackSize + SlotSize, StackAlignment) - SlotSize;
4750 unsigned SlotSize = RegInfo->getSlotSize();
4751 ReturnAddrIndex = MF.getFrameInfo().CreateFixedObject(SlotSize,
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp280 /// \param SlotSize - The size and alignment of a stack slot.
294 CharUnits SlotSize,
305 if (AllowHigherAlign && DirectAlign > SlotSize) {
309 Addr = Address(Ptr, SlotSize);
313 CharUnits FullDirectSize = DirectSize.alignTo(SlotSize);
320 if (DirectSize < SlotSize && CGF.CGM.getDataLayout().isBigEndian() &&
322 Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr, SlotSize - DirectSize);
4229 CharUnits SlotSize = CharUnits::fromQuantity(4);
4231 classifyArgumentType(Ty).isIndirect(), TI, SlotSize,
4924 CharUnits SlotSize
289 emitVoidPtrDirectVAArg(CodeGenFunction &CGF, Address VAListAddr, llvm::Type *DirectTy, CharUnits DirectSize, CharUnits DirectAlign, CharUnits SlotSize, bool AllowHigherAlign) argument
9783 CharUnits SlotSize = CharUnits::fromQuantity(XLen / 8); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1260 uint64_t SlotSize = MF.getDataLayout().getPointerSize(); local
1261 ReturnAddrIndex = MF.getFrameInfo().CreateFixedObject(SlotSize, -SlotSize,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1764 unsigned SlotSize = SlotVT.getSizeInBits();
1773 if (SrcSize > SlotSize)
1777 assert(SrcSize == SlotSize && "Invalid store");
1783 if (SlotSize == DestSize)
1786 assert(SlotSize < DestSize && "Unknown extension!");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4871 int SlotSize = isPPC64 ? 8 : 4; local
4873 int NewRetAddr = MF.getFrameInfo().CreateFixedObject(SlotSize,
4884 int NewFPIdx = MF.getFrameInfo().CreateFixedObject(SlotSize, NewFPLoc,

Completed in 412 milliseconds