/external/llvm/unittests/IR/ |
D | ValueMapTest.cpp | 43 ValueMap<TypeParam*, int> VM1; in TYPED_TEST() 49 ValueMap<TypeParam*, int> VM; in TYPED_TEST() 63 ValueMap<TypeParam*, int> VM; in TYPED_TEST() 64 ValueMap<TypeParam*, int> VM2(16); (void)VM2; in TYPED_TEST() 66 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3; in TYPED_TEST() 72 typename ValueMap<TypeParam*, int>::iterator I = in TYPED_TEST() 80 const ValueMap<TypeParam*, int> &CVM = VM; in TYPED_TEST() 81 typename ValueMap<TypeParam*, int>::const_iterator CI = in TYPED_TEST() 89 std::pair<typename ValueMap<TypeParam*, int>::iterator, bool> InsertResult1 = in TYPED_TEST() 95 std::pair<typename ValueMap<TypeParam*, int>::iterator, bool> InsertResult2 = in TYPED_TEST() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | ValueMap.h | 75 class ValueMap { 82 ValueMap(const ValueMap&) LLVM_DELETED_FUNCTION; 83 ValueMap& operator=(const ValueMap&) LLVM_DELETED_FUNCTION; 89 explicit ValueMap(unsigned NumInitBuckets = 64) 91 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) 94 ~ValueMap() {} in ~ValueMap() 190 return ValueMapCVH(key, const_cast<ValueMap*>(this)); in Wrap() 198 friend class ValueMap<KeyT, ValueT, Config>; variable 200 typedef ValueMap<KeyT, ValueT, Config> ValueMapT;
|
/external/llvm/include/llvm/IR/ |
D | ValueSymbolTable.h | 46 typedef StringMap<Value*> ValueMap; typedef 49 typedef ValueMap::iterator iterator; 52 typedef ValueMap::const_iterator const_iterator; 125 ValueMap vmap; ///< The map that holds the symbol table.
|
/external/llvm/include/llvm/CodeGen/ |
D | FunctionLoweringInfo.h | 72 DenseMap<const Value*, unsigned> ValueMap; variable 133 return ValueMap.count(V); in isExportedInst() 141 unsigned &R = ValueMap[V]; in InitializeRegForValue() 188 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN); in InvalidatePHILiveOutRegInfo() 189 if (It == ValueMap.end()) in InvalidatePHILiveOutRegInfo()
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 361 ValueToValueMapTy ValueMap; member in __anon9b8241930211::ModuleLinker 696 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType())); in linkAppendingVarProto() 740 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType())); in linkGlobalProto() 770 ValueMap[SGV] = NewDGV; in linkGlobalProto() 794 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType())); in linkFunctionProto() 825 ValueMap[SF] = NewDF; in linkFunctionProto() 849 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType())); in linkAliasProto() 873 ValueMap[SGA] = NewDA; in linkAliasProto() 889 Constant *SrcInit = MapValue(AVI.SrcInit, ValueMap, RF_None, &TypeMap); in linkAppendingVarInit() 907 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]); in linkGlobalInits() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopRotation.cpp | 103 ValueToValueMapTy &ValueMap) { in RewriteUsesOfClonedInstructions() argument 120 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal]; in RewriteUsesOfClonedInstructions() 331 ValueToValueMapTy ValueMap; in rotateLoop() local 336 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader); in rotateLoop() 362 RemapInstruction(C, ValueMap, in rotateLoop() 373 ValueMap[Inst] = V; in rotateLoop() 378 ValueMap[Inst] = C; in rotateLoop() 398 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap); in rotateLoop()
|
D | JumpThreading.cpp | 1309 DenseMap<Instruction*, Value*> &ValueMap) { in AddPHINodeEntriesForMappedBlock() argument 1318 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst); in AddPHINodeEntriesForMappedBlock() 1319 if (I != ValueMap.end()) in AddPHINodeEntriesForMappedBlock()
|
/external/llvm/lib/Bitcode/Writer/ |
D | ValueEnumerator.cpp | 129 ValueMapType::const_iterator I = ValueMap.find(V); in getValueID() 130 assert(I != ValueMap.end() && "Value not in slotcalculator!"); in getValueID() 135 print(dbgs(), ValueMap, "Default"); in dump() 203 ValueMap[Values[CstStart].first] = CstStart+1; in OptimizeConstants() 312 unsigned &ValueID = ValueMap[V]; in EnumerateValue() 342 ValueMap[V] = Values.size(); in EnumerateValue() 398 if (ValueMap.count(V)) return; in EnumerateOperandType() 465 ValueMap[BB] = BasicBlocks.size(); in incorporateFunction() 510 ValueMap.erase(Values[i].first); in purgeFunction() 514 ValueMap.erase(BasicBlocks[i]); in purgeFunction()
|
D | ValueEnumerator.h | 49 ValueMapType ValueMap; variable
|
/external/llvm/test/Transforms/Inline/ |
D | 2010-05-12-ValueMap.ll | 3 ; This tests for a bug where the inliner kept the functions in a ValueMap after 5 ; a function that was still a key in the ValueMap.
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 166 unsigned PHIReg = ValueMap[PN]; in set() 196 ValueMap.clear(); in clear() 280 unsigned DestReg = ValueMap[PN]; in ComputePHILiveOutRegInfo() 301 assert(ValueMap.count(V) && "V should have been placed in ValueMap when its" in ComputePHILiveOutRegInfo() 303 unsigned SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo() 338 assert(ValueMap.count(V) && "V should have been placed in ValueMap when " in ComputePHILiveOutRegInfo() 340 unsigned SrcReg = ValueMap[V]; in ComputePHILiveOutRegInfo()
|
D | FastISel.cpp | 105 FuncInfo.ValueMap[I] = VI->second; in LowerArguments() 259 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); in lookUpRegForValue() 260 if (I != FuncInfo.ValueMap.end()) in lookUpRegForValue() 277 unsigned &AssignedReg = FuncInfo.ValueMap[I]; in UpdateValueMap() 946 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(Op0); in SelectExtractValue() 947 if (I != FuncInfo.ValueMap.end()) in SelectExtractValue()
|
D | SelectionDAGBuilder.cpp | 1020 DenseMap<const Value *, unsigned>::iterator It = FuncInfo.ValueMap.find(V); in getValue() 1021 if (It != FuncInfo.ValueMap.end()) { in getValue() 1296 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); in CopyToExportRegsIfNeeded() 1297 if (VMI != FuncInfo.ValueMap.end()) { in CopyToExportRegsIfNeeded() 4397 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); in EmitFuncArgumentDbgValue() 4398 if (VMI != FuncInfo.ValueMap.end()) in EmitFuncArgumentDbgValue() 6781 FuncInfo->ValueMap[I] = Reg; in LowerArguments() 6848 FuncInfo.ValueMap.find(PHIOp); in HandlePHINodesInSuccessorBlocks() 6849 if (I != FuncInfo.ValueMap.end()) in HandlePHINodesInSuccessorBlocks()
|
/external/chromium/base/ |
D | values.h | 43 typedef std::map<std::string, Value*> ValueMap; typedef 320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; } in key_iterator() 330 ValueMap::const_iterator itr_; 341 ValueMap dictionary_;
|
D | values.cc | 323 ValueMap::const_iterator current_entry = dictionary_.find(key); in HasKey() 329 ValueMap::iterator dict_iterator = dictionary_.begin(); in Clear() 517 ValueMap::const_iterator entry_iterator = dictionary_.find(key); in GetWithoutPathExpansion() 611 ValueMap::iterator entry_iterator = dictionary_.find(key); in RemoveWithoutPathExpansion() 652 for (ValueMap::const_iterator current_entry(dictionary_.begin()); in DeepCopy()
|
/external/llvm/lib/CodeGen/ |
D | SplitKit.h | 272 typedef DenseMap<std::pair<unsigned, unsigned>, ValueForcePair> ValueMap; typedef 286 ValueMap Values;
|
D | SplitKit.cpp | 384 std::pair<ValueMap::iterator, bool> InsP = in defValue()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | ValueMapper.h | 23 typedef ValueMap<const Value *, WeakVH> ValueToValueMapTy;
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JIT.h | 55 typedef ValueMap<const BasicBlock *, void *>
|
D | JITEmitter.cpp | 91 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> > 94 typedef ValueMap<Function *, SmallPtrSet<void*, 1>, 358 ValueMap<const Function *, EmittedCode, 1026 ValueMap<const Function *, EmittedCode, EmittedFunctionConfig>::iterator in deallocateMemForFunction()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 61 typedef ValueMap<const GlobalValue *, void *, AddressMapConfig>
|
/external/llvm/lib/IR/ |
D | AsmWriter.cpp | 329 typedef DenseMap<const Value*, unsigned> ValueMap; typedef in __anon38e465a00211::SlotTracker 340 ValueMap mMap; 344 ValueMap fMap; 598 ValueMap::iterator MI = mMap.find(V); in getGlobalSlot() 620 ValueMap::iterator FI = fMap.find(V); in getLocalSlot()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 84 typedef std::map<const Value*,std::string> ValueMap; typedef 97 ValueMap ValueNames; 424 ValueMap::iterator I = ValueNames.find(val); in getCppName()
|
/external/llvm/lib/Target/R600/ |
D | AMDILISelDAGToDAG.cpp | 431 ValueMap<const Value *, bool> ValueBitMap; in getBasePointerValue()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 233 struct ValueMap { struct in __anonbb4144750111::InnerLoopVectorizer 236 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {} in ValueMap() function 314 ValueMap WidenMap;
|