OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FramePointerKind
(Results
1 - 10
of
10
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CodeGen.h
70
enum class
FramePointerKind
{ None, NonLeaf, All };
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CommandFlags.cpp
56
CGOPT(
FramePointerKind
, FramePointerUsage)
184
static cl::opt<
FramePointerKind
> FramePointerUsage(
187
cl::init(
FramePointerKind
::None),
189
clEnumValN(
FramePointerKind
::All, "all",
191
clEnumValN(
FramePointerKind
::NonLeaf, "non-leaf",
193
clEnumValN(
FramePointerKind
::None, "none",
632
if (getFramePointerUsage() ==
FramePointerKind
::All)
634
else if (getFramePointerUsage() ==
FramePointerKind
::NonLeaf)
636
else if (getFramePointerUsage() ==
FramePointerKind
::None)
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
CommandFlags.h
56
FramePointerKind
getFramePointerUsage();
/src/external/apache2/llvm/dist/llvm/lib/IR/
Module.cpp
679
FramePointerKind
Module::getFramePointer() const {
681
return static_cast<
FramePointerKind
>(
685
void Module::setFramePointer(
FramePointerKind
Kind) {
Function.cpp
348
case
FramePointerKind
::None:
351
case
FramePointerKind
::NonLeaf:
354
case
FramePointerKind
::All:
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
CodeGenOptions.h
122
enum class
FramePointerKind
{
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h
895
FramePointerKind
getFramePointer() const;
896
void setFramePointer(
FramePointerKind
Kind);
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp
603
static CodeGenOptions::
FramePointerKind
626
return CodeGenOptions::
FramePointerKind
::NonLeaf;
627
return CodeGenOptions::
FramePointerKind
::All;
629
return CodeGenOptions::
FramePointerKind
::None;
4889
CodeGenOptions::
FramePointerKind
FPKeepKind =
4893
case CodeGenOptions::
FramePointerKind
::None:
4896
case CodeGenOptions::
FramePointerKind
::NonLeaf:
4899
case CodeGenOptions::
FramePointerKind
::All:
4903
assert(FPKeepKindStr && "unknown
FramePointerKind
");
6820
if (FPKeepKind == CodeGenOptions::
FramePointerKind
::None &
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp
752
case CodeGenOptions::
FramePointerKind
::None:
755
case CodeGenOptions::
FramePointerKind
::NonLeaf:
756
getModule().setFramePointer(llvm::
FramePointerKind
::NonLeaf);
758
case CodeGenOptions::
FramePointerKind
::All:
759
getModule().setFramePointer(llvm::
FramePointerKind
::All);
CGCall.cpp
1775
case CodeGenOptions::
FramePointerKind
::None:
1778
case CodeGenOptions::
FramePointerKind
::NonLeaf:
1781
case CodeGenOptions::
FramePointerKind
::All:
Completed in 33 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026