Home
last modified time | relevance | path

Searched refs:StackProbeSize (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86WinAllocaExpander.cpp64 int64_t StackProbeSize; member in __anon03adbaf70111::X86WinAllocaExpander
104 if (AllocaAmount < 0 || AllocaAmount > StackProbeSize) in getLowering()
108 if (CurrentOffset + AllocaAmount <= StackProbeSize) in getLowering()
290 StackProbeSize = 4096; in runOnMachineFunction()
295 .getAsInteger(0, StackProbeSize); in runOnMachineFunction()
299 StackProbeSize = INT64_MAX; in runOnMachineFunction()
H A DX86FrameLowering.cpp1012 unsigned StackProbeSize = 4096; in emitPrologue() local
1016 .getAsInteger(0, StackProbeSize); in emitPrologue()
1239 if (AlignedNumBytes >= StackProbeSize && UseStackProbe) { in emitPrologue()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp409 unsigned StackProbeSize = 4096; in windowsRequiresStackProbe() local
413 .getAsInteger(0, StackProbeSize); in windowsRequiresStackProbe()
414 return (StackSizeInBytes >= StackProbeSize) && in windowsRequiresStackProbe()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp218 unsigned StackProbeSize = (MFI.getStackProtectorIndex() > 0) ? 4080 : 4096; in WindowsRequiresStackProbe() local
222 .getAsInteger(0, StackProbeSize); in WindowsRequiresStackProbe()
223 return (StackSizeInBytes >= StackProbeSize) && in WindowsRequiresStackProbe()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp1138 unsigned StackProbeSize = Opts.StackProbeSize; in ParseCodeGenArgs() local
1139 Val.getAsInteger(0, StackProbeSize); in ParseCodeGenArgs()
1140 Opts.StackProbeSize = StackProbeSize; in ParseCodeGenArgs()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.def250 VALUE_CODEGENOPT(StackProbeSize , 32, 4096) ///< Overrides default stack
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp2401 if (CGM.getCodeGenOpts().StackProbeSize != 4096) in addStackProbeTargetAttributes()
2403 llvm::utostr(CGM.getCodeGenOpts().StackProbeSize)); in addStackProbeTargetAttributes()