HomeSort by: relevance | last modified time | path
    Searched refs:simplifyCFG (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroCleanup.cpp 30 static void simplifyCFG(Function &F) {
108 simplifyCFG(F);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Local.h 173 /// providing the set of loop headers that SimplifyCFG should not eliminate.
175 bool simplifyCFG(BasicBlock *BB, const TargetTransformInfo &TTI,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 146 // Otherwise, insert unreachable instructions and call simplifycfg.
156 simplifyCFG(BB, *TTI, DTU);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUUnifyDivergentExitNodes.cpp 210 simplifyCFG(BB, *TTI, RequireAndPreserveDomTree ? &DTU : nullptr,
375 // FIXME: add PDT here once simplifycfg is ready.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 44 #include "llvm/Transforms/Scalar/SimplifyCFG.h"
51 #define DEBUG_TYPE "simplifycfg"
195 /// Call SimplifyCFG on all the blocks in the function,
227 if (simplifyCFG(&BB, TTI, DTU, Options, LoopHeaders)) {
374 INITIALIZE_PASS_BEGIN(CFGSimplifyPass, "simplifycfg", "Simplify the CFG", false,
379 INITIALIZE_PASS_END(CFGSimplifyPass, "simplifycfg", "Simplify the CFG", false,
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
CrashDebugger.cpp 652 /// SimplifyCFG reducer - This works by calling SimplifyCFG on each basic block
712 simplifyCFG(&*BBIt++, TTI);
1119 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
1273 // to a return instruction then running simplifycfg, which can potentially
1299 BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplifycfg");
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 1 //===- SimplifyCFG.cpp - Code to perform CFG simplification ---------------===//
93 #define DEBUG_TYPE "simplifycfg"
96 "simplifycfg-require-and-preserve-domtree", cl::Hidden, cl::ZeroOrMore,
98 cl::desc("Temorary development switch used to gradually uplift SimplifyCFG "
117 "simplifycfg-dup-ret", cl::Hidden, cl::init(false),
121 HoistCommon("simplifycfg-hoist-common", cl::Hidden, cl::init(true),
125 SinkCommon("simplifycfg-sink-common", cl::Hidden, cl::init(true),
129 "simplifycfg-hoist-cond-stores", cl::Hidden, cl::init(true),
133 "simplifycfg-merge-cond-stores", cl::Hidden, cl::init(true),
139 "simplifycfg-merge-cond-stores-aggressively", cl::Hidden, cl::init(false)
    [all...]

Completed in 29 milliseconds