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

  /external/llvm/include/llvm/Support/
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(0) {
    [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 171 AssertingVH<const GlobalValue> &V =
214 AssertingVH<const GlobalValue> &V =
242 std::map<void *, AssertingVH<const GlobalValue> >::iterator I =
    [all...]
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 106 AssertingVH<CastInst> AVH(BitcastV.get());
110 AssertingVH<Value> GenericAVH(BitcastV.get());
123 AssertingVH<const CastInst> AVH(ConstBitcast);
129 AssertingVH<Value> BitcastAVH(BitcastV.get());
130 AssertingVH<Value> ConstantAVH(ConstantV);
162 AssertingVH<Value> AVH(BitcastV.get());
170 EXPECT_EQ(sizeof(CastInst *), sizeof(AssertingVH<CastInst>));
178 AssertingVH<Value> AVH(BitcastV.get());
181 AssertingVH<Value> Copy(AVH);
384 AssertingVH<Value> *ToClear[2]
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 232 AssertingVH<const MDNode> Desc; // Debug info descriptor.
233 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(const MutexGuard &L){
JITEmitter.cpp 92 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
95 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 175 AssertingVH<Function> F;
AliasSetTracker.h 113 std::vector<AssertingVH<Instruction> > UnknownInsts;
ScalarEvolution.h 278 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 78 std::map<void *, AssertingVH<const GlobalValue> > GlobalAddressReverseMap;
87 std::map<void*, AssertingVH<const GlobalValue> > &
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 320 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
329 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
334 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
414 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
436 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 85 SmallSet<AssertingVH<BasicBlock>, 16> LoopHeaders;
199 // awesome, but it allows us to use AssertingVH to prevent nasty
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 118 // Drops AssertingVH reference to the function. Outside of debug mode, this
130 AssertingVH<Function> Func;
  /external/llvm/lib/Transforms/Utils/
Local.cpp 410 AssertingVH<Instruction> TerminatorVH(--BB->end());
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 158 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 74 AssertingVH<Instruction> Loc;
    [all...]

Completed in 878 milliseconds