|
LLVM
4.0.0
|
#include "SafeStackColoring.h"#include "SafeStackLayout.h"#include "llvm/ADT/Statistic.h"#include "llvm/ADT/Triple.h"#include "llvm/Analysis/BranchProbabilityInfo.h"#include "llvm/Analysis/ScalarEvolution.h"#include "llvm/Analysis/ScalarEvolutionExpressions.h"#include "llvm/CodeGen/Passes.h"#include "llvm/IR/Constants.h"#include "llvm/IR/DIBuilder.h"#include "llvm/IR/DataLayout.h"#include "llvm/IR/DerivedTypes.h"#include "llvm/IR/Function.h"#include "llvm/IR/IRBuilder.h"#include "llvm/IR/InstIterator.h"#include "llvm/IR/Instructions.h"#include "llvm/IR/IntrinsicInst.h"#include "llvm/IR/Intrinsics.h"#include "llvm/IR/MDBuilder.h"#include "llvm/IR/Module.h"#include "llvm/Pass.h"#include "llvm/Support/CommandLine.h"#include "llvm/Support/Debug.h"#include "llvm/Support/Format.h"#include "llvm/Support/MathExtras.h"#include "llvm/Support/raw_os_ostream.h"#include "llvm/Target/TargetLowering.h"#include "llvm/Target/TargetSubtargetInfo.h"#include "llvm/Transforms/Utils/BasicBlockUtils.h"#include "llvm/Transforms/Utils/Local.h"#include "llvm/Transforms/Utils/ModuleUtils.h"Go to the source code of this file.
Namespaces | |
| llvm | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
Macros | |
| #define | DEBUG_TYPE "safestack" |
Functions | |
| llvm::STATISTIC (NumFunctions,"Total number of functions") | |
| llvm::STATISTIC (NumUnsafeStackFunctions,"Number of functions with unsafe stack") | |
| llvm::STATISTIC (NumUnsafeStackRestorePointsFunctions,"Number of functions that use setjmp or exceptions") | |
| llvm::STATISTIC (NumAllocas,"Total number of allocas") | |
| llvm::STATISTIC (NumUnsafeStaticAllocas,"Number of unsafe static allocas") | |
| llvm::STATISTIC (NumUnsafeDynamicAllocas,"Number of unsafe dynamic allocas") | |
| llvm::STATISTIC (NumUnsafeByValArguments,"Number of unsafe byval arguments") | |
| llvm::STATISTIC (NumUnsafeStackRestorePoints,"Number of setjmps and landingpads") | |
| INITIALIZE_TM_PASS_BEGIN (SafeStack,"safe-stack","Safe Stack instrumentation pass", false, false) INITIALIZE_TM_PASS_END(SafeStack | |
Variables | |
| safe | stack |
| safe Safe Stack instrumentation | pass |
| safe Safe Stack instrumentation | false |
| #define DEBUG_TYPE "safestack" |
Definition at line 53 of file SafeStack.cpp.
| INITIALIZE_TM_PASS_BEGIN | ( | SafeStack | , |
| "safe-stack" | , | ||
| "Safe Stack instrumentation pass" | , | ||
| false | , | ||
| false | |||
| ) |
| safe Safe Stack instrumentation false |
Definition at line 796 of file SafeStack.cpp.
| safe Safe Stack instrumentation pass |
Definition at line 796 of file SafeStack.cpp.
Referenced by LLVMTargetMachineEmit().
| safe stack |
Definition at line 796 of file SafeStack.cpp.
1.8.6