OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SlotSize
(Results
1 - 18
of
18
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86MachineFunctionInfo.cpp
22
unsigned
SlotSize
= RegInfo->getSlotSize();
26
RestoreBasePointerOffset -=
SlotSize
;
X86WinAllocaExpander.cpp
63
unsigned
SlotSize
= 0;
213
assert(
SlotSize
== 4 ||
SlotSize
== 8);
217
assert(Amount >=
SlotSize
);
223
Amount -=
SlotSize
;
232
if (Amount ==
SlotSize
) {
283
SlotSize
= TRI->getSlotSize();
X86RegisterInfo.h
34
///
SlotSize
- Stack slot size in bytes.
36
unsigned
SlotSize
;
146
unsigned getSlotSize() const { return
SlotSize
; }
X86CallFrameOptimization.cpp
123
unsigned
SlotSize
= 0;
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
)
585
MCCFIInstruction::createAdjustCfaOffset(nullptr,
SlotSize
));
X86CallingConv.cpp
303
unsigned
SlotSize
= Is64Bit ? 8 : 4;
308
Offset = State.AllocateStack(5 *
SlotSize
, Align(4));
313
Offset =
SlotSize
;
319
(void)State.AllocateStack(6 *
SlotSize
, Align(4));
327
Offset +=
SlotSize
;
X86FrameLowering.cpp
51
SlotSize
= TRI->getSlotSize();
256
// movabsq +-$Offset+-
SlotSize
, %rax
267
Offset = -(Offset -
SlotSize
);
269
Offset = Offset +
SlotSize
;
290
if (ThisVal ==
SlotSize
) {
1047
// go with the minimum
SlotSize
.
1055
else if (MaxAlign <
SlotSize
)
1056
MaxAlign = Align(
SlotSize
);
1395
if (HasFP) MinSize +=
SlotSize
;
1425
int stackGrowth = -
SlotSize
;
[
all
...]
X86FrameLowering.h
37
unsigned
SlotSize
;
X86RegisterInfo.cpp
61
SlotSize
= 8;
70
SlotSize
= 4;
X86ISelLowering.cpp
3884
EVT PtrVT, unsigned
SlotSize
,
3890
MF.getFrameInfo().CreateFixedObject(
SlotSize
, (int64_t)FPDiff -
SlotSize
,
4533
const uint64_t
SlotSize
= Subtarget.getRegisterInfo()->getSlotSize();
4534
assert(StackSize %
SlotSize
== 0 &&
4535
"StackSize must be a multiple of
SlotSize
");
4536
return alignTo(StackSize +
SlotSize
, StackAlignment) -
SlotSize
;
4929
unsigned
SlotSize
= RegInfo->getSlotSize();
4930
ReturnAddrIndex = MF.getFrameInfo().CreateFixedObject(
SlotSize
,
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kFrameLowering.cpp
39
SlotSize
= STI.getSlotSize();
104
return StackOffset::getFixed(Offset +
SlotSize
);
113
return StackOffset::getFixed(Offset +
SlotSize
);
124
Offset +=
SlotSize
;
191
else if (MaxAlign <
SlotSize
)
192
MaxAlign =
SlotSize
;
528
int stackGrowth = -
SlotSize
;
532
uint64_t FrameSize = StackSize -
SlotSize
;
536
FrameSize +=
SlotSize
;
697
uint64_t FrameSize = StackSize -
SlotSize
;
[
all
...]
M68kFrameLowering.h
35
unsigned
SlotSize
;
42
/// with the minimum
SlotSize
.
M68kISelLowering.h
190
EVT PtrVT, unsigned
SlotSize
, int FPDiff,
M68kISelLowering.cpp
336
unsigned
SlotSize
= Subtarget.getSlotSize();
338
SlotSize
, -(int64_t)
SlotSize
, false);
360
EVT PtrVT, unsigned
SlotSize
, int FPDiff, const SDLoc &DL) const {
366
SlotSize
, (int64_t)FPDiff -
SlotSize
, false);
1147
unsigned
SlotSize
= Subtarget.getSlotSize();
1148
if ((Offset & AlignMask) <= (StackAlignment -
SlotSize
)) {
1150
Offset += ((StackAlignment -
SlotSize
) - (Offset & AlignMask));
1154
((~AlignMask) & Offset) + StackAlignment + (StackAlignment -
SlotSize
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVFrameLowering.cpp
63
int64_t
SlotSize
= STI.getXLen() / 8;
74
.addImm(
SlotSize
);
111
int64_t
SlotSize
= STI.getXLen() / 8;
118
.addImm(-
SlotSize
);
122
.addImm(-
SlotSize
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp
300
/// \param
SlotSize
- The size and alignment of a stack slot.
314
CharUnits
SlotSize
,
325
if (AllowHigherAlign && DirectAlign >
SlotSize
) {
329
Addr = Address(Ptr,
SlotSize
);
333
CharUnits FullDirectSize = DirectSize.alignTo(
SlotSize
);
340
if (DirectSize <
SlotSize
&& CGF.CGM.getDataLayout().isBigEndian() &&
342
Addr = CGF.Builder.CreateConstInBoundsByteGEP(Addr,
SlotSize
- DirectSize);
4578
CharUnits
SlotSize
= CharUnits::fromQuantity(PtrByteSize);
4581
SlotSize
, /*AllowHigher*/ true);
4697
CharUnits
SlotSize
= CharUnits::fromQuantity(4)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp
1255
uint64_t
SlotSize
= MF.getDataLayout().getPointerSize();
1256
ReturnAddrIndex = MF.getFrameInfo().CreateFixedObject(
SlotSize
, -
SlotSize
,
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp
1697
unsigned
SlotSize
= SlotVT.getSizeInBits();
1703
if ((SrcSize >
SlotSize
&&
1705
(
SlotSize
< DestSize &&
1723
if (SrcSize >
SlotSize
)
1727
assert(SrcSize ==
SlotSize
&& "Invalid store");
1733
if (
SlotSize
== DestSize)
1736
assert(
SlotSize
< DestSize && "Unknown extension!");
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
4952
int
SlotSize
= isPPC64 ? 8 : 4;
4954
int NewRetAddr = MF.getFrameInfo().CreateFixedObject(
SlotSize
,
Completed in 77 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026