Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86DynAllocaExpander.cpp64 int64_t StackProbeSize = 0; member in __anondc6c05ef0111::X86DynAllocaExpander
100 if (AllocaAmount < 0 || AllocaAmount > StackProbeSize) in getLowering()
104 if (CurrentOffset + AllocaAmount <= StackProbeSize) in getLowering()
287 StackProbeSize = STI->getTargetLowering()->getStackProbeSize(MF); in runOnMachineFunction()
290 StackProbeSize = INT64_MAX; in runOnMachineFunction()
H A DX86FrameLowering.cpp659 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF); in emitStackProbeInlineGeneric() local
660 uint64_t ProbeChunk = StackProbeSize * 8; in emitStackProbeInlineGeneric()
670 MaxAlign % StackProbeSize); in emitStackProbeInlineGeneric()
673 MaxAlign % StackProbeSize); in emitStackProbeInlineGeneric()
687 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF); in emitStackProbeInlineGenericBlock() local
691 assert(AlignOffset < StackProbeSize); in emitStackProbeInlineGenericBlock()
694 if (StackProbeSize < Offset + AlignOffset) { in emitStackProbeInlineGenericBlock()
696 uint64_t StackAdjustment = StackProbeSize - AlignOffset; in emitStackProbeInlineGenericBlock()
711 CurrentOffset = StackProbeSize - AlignOffset; in emitStackProbeInlineGenericBlock()
717 while (CurrentOffset + StackProbeSize < Offset) { in emitStackProbeInlineGenericBlock()
[all …]
H A DX86CallFrameOptimization.cpp167 unsigned StackProbeSize = STI->getTargetLowering()->getStackProbeSize(MF); in isLegal() local
172 if (TII->getFrameSize(MI) >= StackProbeSize && EmitStackProbeCall) in isLegal()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.cpp103 StackProbeSize = ProbeSize; in AArch64FunctionInfo()
118 StackProbeSize = ProbeSize; in AArch64FunctionInfo()
H A DAArch64MachineFunctionInfo.h221 int64_t StackProbeSize = 0; variable
539 bool hasStackProbing() const { return StackProbeSize != 0; } in hasStackProbing()
541 int64_t getStackProbeSize() const { return StackProbeSize; } in getStackProbeSize()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp165 if (CGM.getCodeGenOpts().StackProbeSize != 4096) in addStackProbeTargetAttributes()
167 llvm::utostr(CGM.getCodeGenOpts().StackProbeSize)); in addStackProbeTargetAttributes()
H A DCodeGenModule.cpp1244 if (CodeGenOpts.StackProbeSize && CodeGenOpts.StackProbeSize != 4096) in Release()
1246 CodeGenOpts.StackProbeSize); in Release()
2427 if (CodeGenOpts.StackProbeSize && CodeGenOpts.StackProbeSize != 4096) in SetLLVMFunctionAttributesForDefinition()
2429 std::to_string(CodeGenOpts.StackProbeSize)); in SetLLVMFunctionAttributesForDefinition()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp588 unsigned StackProbeSize = (MFI.getStackProtectorIndex() > 0) ? 4080 : 4096; in WindowsRequiresStackProbe() local
590 StackProbeSize = in WindowsRequiresStackProbe()
591 F.getFnAttributeAsParsedInteger("stack-probe-size", StackProbeSize); in WindowsRequiresStackProbe()
592 return (StackSizeInBytes >= StackProbeSize) && in WindowsRequiresStackProbe()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def343 VALUE_CODEGENOPT(StackProbeSize , 32, 4096) ///< Overrides default stack
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp8149 unsigned StackProbeSize = in getStackProbeSize() local
8152 StackProbeSize &= ~(StackAlign - 1); in getStackProbeSize()
8153 return StackProbeSize ? StackProbeSize : StackAlign; in getStackProbeSize()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp12682 unsigned StackProbeSize = in getStackProbeSize() local
12685 StackProbeSize &= ~(StackAlign - 1); in getStackProbeSize()
12686 return StackProbeSize ? StackProbeSize : StackAlign; in getStackProbeSize()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4760 MarshallingInfoInt<CodeGenOpts<"StackProbeSize">, "4096">;