HomeSort by relevance Sort by last modified time
    Searched refs:AssertingVH (Results 1 - 21 of 21) sorted by null

  /external/llvm/include/llvm/IR/
ValueHandle.h 173 /// AssertingVH - This is a Value Handle that points to a value and asserts out
179 /// one. Using an AssertingVH ensures that an assert is triggered as soon as
182 /// Note that an AssertingVH handle does *not* follow values across RAUW
184 /// AssertingVH's as it moves. This is required because in non-assert mode this
187 class AssertingVH
213 AssertingVH() : ValueHandleBase(Assert) {}
214 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
215 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {}
217 AssertingVH() : ThePtr(nullptr) {
    [all...]
IRBuilder.h 199 AssertingVH<BasicBlock> Block;
    [all...]
  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 29 // string into oprofile. Use an AssertingVH rather than a ValueMap because we
31 DenseMap<AssertingVH<MDNode>, std::string> Filenames;
32 DenseMap<AssertingVH<MDNode>, std::string> Paths;
ExecutionEngine.cpp 179 AssertingVH<const GlobalValue> &V =
222 AssertingVH<const GlobalValue> &V =
250 std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
    [all...]
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 105 AssertingVH<CastInst> AVH(BitcastV.get());
109 AssertingVH<Value> GenericAVH(BitcastV.get());
122 AssertingVH<const CastInst> AVH(ConstBitcast);
128 AssertingVH<Value> BitcastAVH(BitcastV.get());
129 AssertingVH<Value> ConstantAVH(ConstantV);
161 AssertingVH<Value> AVH(BitcastV.get());
169 EXPECT_EQ(sizeof(CastInst *), sizeof(AssertingVH<CastInst>));
177 AssertingVH<Value> AVH(BitcastV.get());
180 AssertingVH<Value> Copy(AVH);
383 AssertingVH<Value> *ToClear[2]
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 119 AssertingVH<const MDNode> Desc; // Debug info descriptor.
120 AssertingVH<const MDNode> InlinedAtLocation; // Location at which this
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 37 std::vector<AssertingVH<Function> > PendingFunctions;
47 std::vector<AssertingVH<Function> > &getPendingFunctions() {
JITEmitter.cpp 93 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
96 typedef std::map<AssertingVH<GlobalValue>, void*> GlobalToIndirectSymMapTy;
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 47 std::set<AssertingVH<Value> > InsertedValues;
48 std::set<AssertingVH<Value> > InsertedPostIncValues;
70 std::set<AssertingVH<PHINode> > ChainedPhis;
CallGraph.h 269 AssertingVH<Function> F;
AliasSetTracker.h 113 std::vector<AssertingVH<Instruction> > UnknownInsts;
ScalarEvolution.h 290 AssertingVH<BasicBlock> ExitingBlock;
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 63 DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry> AddrLabelSymbols;
73 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >
83 for (DenseMap<AssertingVH<BasicBlock>, AddrLabelSymEntry>::iterator
147 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >::iterator I =
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 82 std::map<void *, AssertingVH<const GlobalValue> > GlobalAddressReverseMap;
91 std::map<void*, AssertingVH<const GlobalValue> > &
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 321 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
330 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
335 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
415 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
437 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 162 DenseMap<AssertingVH<Value>, unsigned> ValueRankMap;
163 SetVector<AssertingVH<Instruction> > RedoInsts;
    [all...]
JumpThreading.cpp 86 SmallSet<AssertingVH<BasicBlock>, 16> LoopHeaders;
213 // awesome, but it allows us to use AssertingVH to prevent nasty
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 320 llvm::AssertingVH<llvm::GlobalValue> GV;
    [all...]
CodeGenFunction.h 167 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 396 AssertingVH<Function> F;
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 411 AssertingVH<Instruction> TerminatorVH(--BB->end());
    [all...]

Completed in 432 milliseconds