HomeSort by: relevance | last modified time | path
    Searched defs:StackProtector (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
StackProtector.h 1 //===- StackProtector.h - Stack Protector Insertion -------------*- C++ -*-===//
37 class StackProtector : public FunctionPass {
56 /// StackProtector analysis will update this map when determining if an
107 StackProtector();
111 // Return true if StackProtector is supposed to be handled by SelectionDAG.
MIRYamlMapping.h 604 StringValue StackProtector;
625 StackProtector == Other.StackProtector &&
649 YamlIO.mapOptional("stackProtector", MFI.StackProtector,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackProtector.cpp 1 //===- StackProtector.cpp - Stack Protector Insertion ---------------------===//
16 #include "llvm/CodeGen/StackProtector.h"
64 char StackProtector::ID = 0;
66 StackProtector::StackProtector() : FunctionPass(ID), SSPBufferSize(8) {
70 INITIALIZE_PASS_BEGIN(StackProtector, DEBUG_TYPE,
74 INITIALIZE_PASS_END(StackProtector, DEBUG_TYPE,
77 FunctionPass *llvm::createStackProtectorPass() { return new StackProtector(); }
79 void StackProtector::getAnalysisUsage(AnalysisUsage &AU) const {
84 bool StackProtector::runOnFunction(Function &Fn)
    [all...]

Completed in 28 milliseconds