OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StackProtector
(Results
1 - 14
of
14
) sorted by null
/external/llvm/include/llvm/CodeGen/
StackProtector.h
1
//===--
StackProtector
.h - Stack Protector Insertion ----------------------===//
32
class
StackProtector
: public FunctionPass {
64
///
StackProtector
analysis will update this map when determining if an
108
StackProtector
()
112
StackProtector
(const TargetMachine *TM)
MIRYamlMapping.h
349
StringValue
StackProtector
;
370
YamlIO.mapOptional("
stackProtector
", MFI.
StackProtector
,
/external/llvm/lib/CodeGen/
StackProtector.cpp
1
//===--
StackProtector
.cpp - Stack Protector Insertion --------------------===//
17
#include "llvm/CodeGen/
StackProtector
.h"
51
char
StackProtector
::ID = 0;
52
INITIALIZE_PASS(
StackProtector
, "stack-protector", "Insert stack protectors",
56
return new
StackProtector
(TM);
59
StackProtector
::SSPLayoutKind
60
StackProtector
::getSSPLayout(const AllocaInst *AI) const {
64
void
StackProtector
::adjustForColoring(const AllocaInst *From,
85
bool
StackProtector
::runOnFunction(Function &Fn) {
108
bool
StackProtector
::ContainsProtectableArray(Type *Ty, bool &IsLarge
[
all
...]
MachineFunctionPass.cpp
26
#include "llvm/CodeGen/
StackProtector
.h"
65
AU.addPreserved<
StackProtector
>();
LocalStackSlotAllocation.cpp
26
#include "llvm/CodeGen/
StackProtector
.h"
87
AU.addRequired<
StackProtector
>();
99
INITIALIZE_PASS_DEPENDENCY(
StackProtector
)
192
StackProtector
*SP = &getAnalysis<
StackProtector
>();
213
case
StackProtector
::SSPLK_None:
215
case
StackProtector
::SSPLK_SmallArray:
218
case
StackProtector
::SSPLK_AddrOf:
221
case
StackProtector
::SSPLK_LargeArray:
PrologEpilogInserter.cpp
32
#include "llvm/CodeGen/
StackProtector
.h"
110
INITIALIZE_PASS_DEPENDENCY(
StackProtector
)
124
AU.addRequired<
StackProtector
>();
548
StackProtector
*SP = &getAnalysis<
StackProtector
>();
685
case
StackProtector
::SSPLK_None:
687
case
StackProtector
::SSPLK_SmallArray:
690
case
StackProtector
::SSPLK_AddrOf:
693
case
StackProtector
::SSPLK_LargeArray:
[
all
...]
StackColoring.cpp
45
#include "llvm/CodeGen/
StackProtector
.h"
122
StackProtector
*SP;
183
INITIALIZE_PASS_DEPENDENCY(
StackProtector
)
191
AU.addRequired<
StackProtector
>();
646
SP = &getAnalysis<
StackProtector
>();
Android.mk
118
StackProtector
.cpp \
MIRPrinter.cpp
345
raw_string_ostream StrOS(MF.FrameInfo.
StackProtector
.Value);
/external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp
16
#include "llvm/CodeGen/
StackProtector
.h"
32
AU.addPreserved<
StackProtector
>();
NVPTXLowerAggrCopies.cpp
18
#include "llvm/CodeGen/
StackProtector
.h"
45
AU.addPreserved<
StackProtector
>();
/external/llvm/lib/Target/Hexagon/
HexagonOptimizeSZextends.cpp
16
#include "llvm/CodeGen/
StackProtector
.h"
48
AU.addPreserved<
StackProtector
>();
/external/llvm/lib/Target/WebAssembly/
WebAssemblyPEI.cpp
39
#include "llvm/CodeGen/
StackProtector
.h"
124
INITIALIZE_PASS_DEPENDENCY(
StackProtector
)
138
AU.addRequired<
StackProtector
>();
564
StackProtector
*SP = &getAnalysis<
StackProtector
>();
701
case
StackProtector
::SSPLK_None:
703
case
StackProtector
::SSPLK_SmallArray:
706
case
StackProtector
::SSPLK_AddrOf:
709
case
StackProtector
::SSPLK_LargeArray:
[
all
...]
/external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp
510
if (!YamlMFI.
StackProtector
.Value.empty()) {
513
if (parseStackObjectReference(FI, SM, MF, YamlMFI.
StackProtector
.Value, PFS,
515
return error(Error, YamlMFI.
StackProtector
.SourceRange);
Completed in 1316 milliseconds