HomeSort by relevance Sort by last modified time
    Searched refs:StackProtector (Results 1 - 6 of 6) 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)
  /external/llvm/lib/CodeGen/
StackProtector.cpp 1 //===-- StackProtector.cpp - Stack Protector Insertion --------------------===//
17 #include "llvm/CodeGen/StackProtector.h"
48 char StackProtector::ID = 0;
49 INITIALIZE_PASS(StackProtector, "stack-protector", "Insert stack protectors",
53 return new StackProtector(TM);
56 StackProtector::SSPLayoutKind
57 StackProtector::getSSPLayout(const AllocaInst *AI) const {
61 void StackProtector::adjustForColoring(const AllocaInst *From,
82 bool StackProtector::runOnFunction(Function &Fn) {
106 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge
    [all...]
LocalStackSlotAllocation.cpp 26 #include "llvm/CodeGen/StackProtector.h"
86 AU.addRequired<StackProtector>();
98 INITIALIZE_PASS_DEPENDENCY(StackProtector)
191 StackProtector *SP = &getAnalysis<StackProtector>();
212 case StackProtector::SSPLK_None:
214 case StackProtector::SSPLK_SmallArray:
217 case StackProtector::SSPLK_AddrOf:
220 case StackProtector::SSPLK_LargeArray:
PrologEpilogInserter.cpp 32 #include "llvm/CodeGen/StackProtector.h"
62 INITIALIZE_PASS_DEPENDENCY(StackProtector)
76 AU.addRequired<StackProtector>();
449 StackProtector *SP = &getAnalysis<StackProtector>();
583 case StackProtector::SSPLK_None:
585 case StackProtector::SSPLK_SmallArray:
588 case StackProtector::SSPLK_AddrOf:
591 case StackProtector::SSPLK_LargeArray:
    [all...]
StackColoring.cpp 45 #include "llvm/CodeGen/StackProtector.h"
123 StackProtector *SP;
184 INITIALIZE_PASS_DEPENDENCY(StackProtector)
192 AU.addRequired<StackProtector>();
646 SP = &getAnalysis<StackProtector>();
Android.mk 106 StackProtector.cpp \

Completed in 471 milliseconds