/external/llvm/include/llvm/Support/ |
ValueHandle.h | 174 /// AssertingVH - This is a Value Handle that points to a value and asserts out 180 /// one. Using an AssertingVH ensures that an assert is triggered as soon as 183 /// Note that an AssertingVH handle does *not* follow values across RAUW 185 /// AssertingVH's as it moves. This is required because in non-assert mode this 188 class AssertingVH 214 AssertingVH() : ValueHandleBase(Assert) {} 215 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {} 216 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {} 218 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 | 170 AssertingVH<const GlobalValue> &V = 213 AssertingVH<const GlobalValue> &V = 241 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 | 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 | 175 AssertingVH<Function> F;
|
AliasSetTracker.h | 114 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 | 75 std::map<void *, AssertingVH<const GlobalValue> > GlobalAddressReverseMap; 84 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 | 118 DenseMap<AssertingVH<Value>, unsigned> ValueRankMap; 119 SetVector<AssertingVH<Instruction> > RedoInsts; [all...] |
JumpThreading.cpp | 84 SmallSet<AssertingVH<BasicBlock>, 16> LoopHeaders; 197 // awesome, but it allows us to use AssertingVH to prevent nasty [all...] |
/external/llvm/lib/Transforms/IPO/ |
MergeFunctions.cpp | 109 // Drops AssertingVH reference to the function. Outside of debug mode, this 121 AssertingVH<Function> Func;
|
/external/llvm/lib/Transforms/Utils/ |
Local.cpp | 410 AssertingVH<Instruction> TerminatorVH(--BB->end()); [all...] |
/external/clang/lib/CodeGen/ |
CodeGenFunction.h | 602 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt; [all...] |