OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MaxCallFrameSize
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h
351
unsigned
MaxCallFrameSize
= 0;
372
YamlIO.mapOptional("
maxCallFrameSize
", MFI.
MaxCallFrameSize
);
MachineFrameInfo.h
212
unsigned
MaxCallFrameSize
;
277
MaxCallFrameSize
= 0;
505
unsigned getMaxCallFrameSize() const { return
MaxCallFrameSize
; }
506
void setMaxCallFrameSize(unsigned S) {
MaxCallFrameSize
= S; }
/external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp
176
// Calculate the
MaxCallFrameSize
and AdjustsStack variables for the
207
// and
MaxCallFrameSize
variables.
239
/// calculateCallsInformation - Calculate the
MaxCallFrameSize
and AdjustsStack
247
unsigned
MaxCallFrameSize
= 0;
267
if (Size >
MaxCallFrameSize
)
MaxCallFrameSize
= Size;
278
MFI->setMaxCallFrameSize(
MaxCallFrameSize
);
[
all
...]
/external/llvm/lib/Target/WebAssembly/
WebAssemblyPEI.cpp
191
// Calculate the
MaxCallFrameSize
and AdjustsStack variables for the
222
// and
MaxCallFrameSize
variables.
255
/// calculateCallsInformation - Calculate the
MaxCallFrameSize
and AdjustsStack
263
unsigned
MaxCallFrameSize
= 0;
283
if (Size >
MaxCallFrameSize
)
MaxCallFrameSize
= Size;
294
MFI->setMaxCallFrameSize(
MaxCallFrameSize
);
[
all
...]
Completed in 1158 milliseconds