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

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86RegisterInfo.h41 /// SlotSize - Stack slot size in bytes.
43 unsigned SlotSize; member in class:llvm::X86RegisterInfo
135 unsigned getSlotSize() const { return SlotSize; }
H A DX86FrameLowering.cpp650 unsigned SlotSize = RegInfo->getSlotSize();
659 // go with the minimum SlotSize.
663 else if (MaxAlign < SlotSize)
664 MaxAlign = SlotSize;
684 if (HasFP) MinSize += SlotSize;
724 uint64_t FrameSize = StackSize - SlotSize;
985 unsigned SlotSize = RegInfo->getSlotSize();
1024 uint64_t FrameSize = StackSize - SlotSize;
1229 unsigned SlotSize = STI.is64Bit() ? 8 : 4;
1248 CalleeFrameSize += SlotSize;
[all...]
H A DX86RegisterInfo.cpp72 SlotSize = 8;
76 SlotSize = 4;
H A DX86ISelLowering.cpp2167 int SlotSize = Is64Bit ? 8 : 4; local
2169 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
2651 uint64_t SlotSize = TD->getPointerSize(); local
2652 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2654 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2658 (StackAlignment-SlotSize);
3019 uint64_t SlotSize = TD->getPointerSize(); local
3020 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp884 uint64_t SlotSize = TD->getPointerSize(); local
885 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1695 unsigned SlotSize = SlotVT.getSizeInBits();
1704 if (SrcSize > SlotSize)
1708 assert(SrcSize == SlotSize && "Invalid store");
1714 if (SlotSize == DestSize)
1718 assert(SlotSize < DestSize && "Unknown extension!");
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2512 int SlotSize = isPPC64 ? 8 : 4; local
2515 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
2528 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,

Completed in 174 milliseconds