Searched defs:ValueMap (Results 1 - 13 of 13) sorted by relevance

/external/llvm/include/llvm/
H A DValueSymbolTable.h46 typedef StringMap<Value*> ValueMap; typedef in class:llvm::ValueSymbolTable
48 /// @brief An iterator over a ValueMap.
49 typedef ValueMap::iterator iterator;
51 /// @brief A const_iterator over a ValueMap.
52 typedef ValueMap::const_iterator const_iterator;
125 ValueMap vmap; ///< The map that holds the symbol table.
/external/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h72 /// ValueMap - Since we emit code for the function a basic block at a time,
75 DenseMap<const Value*, unsigned> ValueMap; member in class:llvm::FunctionLoweringInfo
136 return ValueMap.count(V);
144 unsigned &R = ValueMap[V];
190 // PHIs with no uses have no ValueMap entry.
191 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
192 if (It == ValueMap.end())
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h49 ValueMapType ValueMap; member in class:llvm::ValueEnumerator
68 /// incorporated function. Their reverse mapping is stored in ValueMap.
H A DValueEnumerator.cpp129 ValueMapType::const_iterator I = ValueMap.find(V);
130 assert(I != ValueMap.end() && "Value not in slotcalculator!");
135 print(dbgs(), ValueMap, "Default"); local
200 // Rebuild the modified portion of ValueMap.
202 ValueMap[Values[CstStart].first] = CstStart+1;
311 unsigned &ValueID = ValueMap[V];
341 ValueMap[V] = Values.size();
397 if (ValueMap.count(V)) return;
453 ValueMap[BB] = BasicBlocks.size();
496 /// Remove purged values from the ValueMap
[all...]
/external/llvm/include/llvm/ADT/
H A DValueMap.h1 //===- llvm/ADT/ValueMap.h - Safe map from Values to data -------*- C++ -*-===//
10 // This file defines the ValueMap class. ValueMap maps Value* or any subclass
17 // You can override a ValueMap's Config parameter to control exactly what
19 // legal to call back into the ValueMap from a Config's callbacks. Config
21 // implementations of all the methods ValueMap uses. See ValueMapConfig for
47 /// ValueMap<>. User Configs should inherit from this class to be as compatible
48 /// as possible with future versions of ValueMap.
51 /// If FollowRAUW is true, the ValueMap will update mappings on RAUW. If it's
52 /// false, the ValueMap wil
76 class ValueMap { class in namespace:llvm
90 explicit ValueMap(unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
92 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
[all...]
/external/chromium/base/
H A Dvalues.h43 typedef std::map<std::string, Value*> ValueMap; typedef
320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
330 ValueMap::const_iterator itr_;
341 ValueMap dictionary_;
/external/llvm/lib/CodeGen/
H A DSplitKit.h272 typedef DenseMap<std::pair<unsigned, unsigned>, ValueForcePair> ValueMap; typedef in class:llvm::SplitEditor
286 ValueMap Values;
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp98 ValueToValueMapTy &ValueMap) {
115 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
317 // Begin by walking OrigHeader and populating ValueMap with an entry for
320 ValueToValueMapTy ValueMap; local
325 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader);
351 RemapInstruction(C, ValueMap,
362 ValueMap[Inst] = V;
367 ValueMap[Inst] = C;
387 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap);
96 RewriteUsesOfClonedInstructions(BasicBlock *OrigHeader, BasicBlock *OrigPreheader, ValueToValueMapTy &ValueMap) argument
H A DJumpThreading.cpp1300 DenseMap<Instruction*, Value*> &ValueMap) {
1309 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst);
1310 if (I != ValueMap.end())
1297 AddPHINodeEntriesForMappedBlock(BasicBlock *PHIBB, BasicBlock *OldPred, BasicBlock *NewPred, DenseMap<Instruction*, Value*> &ValueMap) argument
/external/llvm/lib/Linker/
H A DLinkModules.cpp357 /// ValueMap - Mapping of values from what they used to be in Src, to what
358 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
361 ValueToValueMapTy ValueMap; member in class:__anon8775::ModuleLinker
702 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
746 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
776 ValueMap[SGV] = NewDGV;
800 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
831 ValueMap[SF] = NewDF;
855 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
879 ValueMap[SG
[all...]
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp84 typedef std::map<const Value*,std::string> ValueMap; typedef in namespace:__anon8895
97 ValueMap ValueNames;
424 ValueMap::iterator I = ValueNames.find(val);
/external/llvm/lib/VMCore/
H A DAsmWriter.cpp309 /// ValueMap - A mapping of Values to slot numbers.
310 typedef DenseMap<const Value*, unsigned> ValueMap; typedef in class:__anon9170::SlotTracker
321 ValueMap mMap;
325 ValueMap fMap;
547 ValueMap::iterator MI = mMap.find(V);
569 ValueMap::iterator FI = fMap.find(V);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 213 milliseconds