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

/external/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.cpp22 unsigned SlotSize = RegInfo->getSlotSize(); local
29 RestoreBasePointerOffset -= SlotSize;
H A DX86FrameLowering.h36 unsigned SlotSize; member in class:llvm::X86FrameLowering
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 DX86WinAllocaExpander.cpp63 unsigned SlotSize; member in class:__anon13372::X86WinAllocaExpander
213 assert(SlotSize == 4 || SlotSize == 8);
214 unsigned RegA = (SlotSize == 8) ? X86::RAX : X86::EAX;
218 assert(Amount >= SlotSize);
223 Amount -= SlotSize;
230 if (Amount == SlotSize) {
278 SlotSize = TRI->getSlotSize();
H A DX86CallFrameOptimization.cpp109 unsigned SlotSize; member in class:__anon13347::X86CallFrameOptimization
224 SlotSize = RegInfo.getSlotSize();
225 assert(isPowerOf2_32(SlotSize) && "Expect power of 2 stack slot size");
226 Log2SlotSize = Log2_32(SlotSize);
399 if (StackDisp & (SlotSize - 1))
434 for (; MMI != MME; ++MMI, Context.ExpectedDist += SlotSize)
535 MCCFIInstruction::createAdjustCfaOffset(nullptr, SlotSize));
H A DX86ISelLowering.cpp2931 EVT PtrVT, unsigned SlotSize,
2937 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
3480 unsigned SlotSize = RegInfo->getSlotSize(); local
3481 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3483 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3487 (StackAlignment-SlotSize);
3877 unsigned SlotSize = RegInfo->getSlotSize(); local
3878 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3879 -(int64_t)SlotSize,
2929 EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT, unsigned SlotSize, int FPDiff, const SDLoc &dl) argument
18602 unsigned SlotSize = RegInfo->getSlotSize(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86RegisterInfo.h41 /// SlotSize - Stack slot size in bytes.
43 unsigned SlotSize; member in class:llvm::X86RegisterInfo
124 unsigned getSlotSize() const { return SlotSize; }
H A DX86ISelLowering.cpp2023 int SlotSize = Is64Bit ? 8 : 4; local
2025 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
2513 uint64_t SlotSize = TD->getPointerSize(); local
2514 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2516 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2520 (StackAlignment-SlotSize);
2911 uint64_t SlotSize = TD->getPointerSize(); local
2912 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1001 uint64_t SlotSize = MF.getDataLayout().getPointerSize(); local
1002 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp887 uint64_t SlotSize = TD->getPointerSize(); local
888 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp262 /// \param SlotSize - The size and alignment of a stack slot.
276 CharUnits SlotSize,
287 if (AllowHigherAlign && DirectAlign > SlotSize) {
291 Addr = Address(Ptr, SlotSize);
295 CharUnits FullDirectSize = DirectSize.alignTo(SlotSize);
303 if (DirectSize < SlotSize && CGF.CGM.getDataLayout().isBigEndian() &&
305 Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr, SlotSize - DirectSize);
4341 CharUnits SlotSize = CharUnits::fromQuantity(8);
4351 if (EltSize < SlotSize) {
4353 SlotSize *
271 emitVoidPtrDirectVAArg(CodeGenFunction &CGF, Address VAListAddr, llvm::Type *DirectTy, CharUnits DirectSize, CharUnits DirectAlign, CharUnits SlotSize, bool AllowHigherAlign) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2386 int SlotSize = isPPC64 ? 8 : 4; local
2389 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
2402 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4189 int SlotSize = isPPC64 ? 8 : 4; local
4191 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
4203 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,

Completed in 342 milliseconds