Home
last modified time | relevance | path

Searched refs:FramePointerKind (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCommandFlags.cpp56 CGOPT(FramePointerKind, FramePointerUsage) in CGOPT()
183 static cl::opt<FramePointerKind> FramePointerUsage( in CGOPT()
186 cl::init(FramePointerKind::None), in CGOPT()
188 clEnumValN(FramePointerKind::All, "all", in CGOPT()
190 clEnumValN(FramePointerKind::NonLeaf, "non-leaf", in CGOPT()
192 clEnumValN(FramePointerKind::None, "none", in CGOPT()
625 if (getFramePointerUsage() == FramePointerKind::All) in setFunctionAttributes()
627 else if (getFramePointerUsage() == FramePointerKind::NonLeaf) in setFunctionAttributes()
629 else if (getFramePointerUsage() == FramePointerKind::None) in setFunctionAttributes()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGen.h70 enum class FramePointerKind { None, NonLeaf, All }; enum
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCommandFlags.h56 FramePointerKind getFramePointerUsage();
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp683 FramePointerKind Module::getFramePointer() const { in getFramePointer()
685 return static_cast<FramePointerKind>( in getFramePointer()
689 void Module::setFramePointer(FramePointerKind Kind) { in setFramePointer()
H A DFunction.cpp347 case FramePointerKind::None: in createWithDefaultAttr()
350 case FramePointerKind::NonLeaf: in createWithDefaultAttr()
353 case FramePointerKind::All: in createWithDefaultAttr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h122 enum class FramePointerKind { enum
H A DCodeGenOptions.def55 ENUM_CODEGENOPT(FramePointer, FramePointerKind, 2, FramePointerKind::None) /// frame-pointer: all,n…
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h898 FramePointerKind getFramePointer() const;
899 void setFramePointer(FramePointerKind Kind);
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp595 static CodeGenOptions::FramePointerKind
618 return CodeGenOptions::FramePointerKind::NonLeaf; in getFramePointerKind()
619 return CodeGenOptions::FramePointerKind::All; in getFramePointerKind()
621 return CodeGenOptions::FramePointerKind::None; in getFramePointerKind()
4918 CodeGenOptions::FramePointerKind FPKeepKind = in ConstructJob()
4922 case CodeGenOptions::FramePointerKind::None: in ConstructJob()
4925 case CodeGenOptions::FramePointerKind::NonLeaf: in ConstructJob()
4928 case CodeGenOptions::FramePointerKind::All: in ConstructJob()
6877 if (FPKeepKind == CodeGenOptions::FramePointerKind::None && in ConstructJob()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp775 case CodeGenOptions::FramePointerKind::None: in Release()
778 case CodeGenOptions::FramePointerKind::NonLeaf: in Release()
779 getModule().setFramePointer(llvm::FramePointerKind::NonLeaf); in Release()
781 case CodeGenOptions::FramePointerKind::All: in Release()
782 getModule().setFramePointer(llvm::FramePointerKind::All); in Release()
H A DCGCall.cpp1776 case CodeGenOptions::FramePointerKind::None: in getDefaultFunctionAttributes()
1779 case CodeGenOptions::FramePointerKind::NonLeaf: in getDefaultFunctionAttributes()
1782 case CodeGenOptions::FramePointerKind::All: in getDefaultFunctionAttributes()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp648 CodeGenOptions::FramePointerKind::All); in ClangExpressionParser()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4926 …NormalizedValuesScope<"CodeGenOptions::FramePointerKind">, NormalizedValues<["All", "NonLeaf", "No…