HomeSort by relevance Sort by last modified time
    Searched defs:ValueMap (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/
ValueSymbolTable.h 46 typedef StringMap<Value*> ValueMap;
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/
FunctionLoweringInfo.h 74 /// ValueMap - Since we emit code for the function a basic block at a time,
77 DenseMap<const Value*, unsigned> ValueMap;
138 return ValueMap.count(V);
146 unsigned &R = ValueMap[V];
192 // PHIs with no uses have no ValueMap entry.
193 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
194 if (It == ValueMap.end())
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 48 ValueMapType ValueMap;
67 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 90 ValueToValueMapTy &ValueMap) {
107 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
215 // Begin by walking OrigHeader and populating ValueMap with an entry for
218 ValueToValueMapTy ValueMap;
223 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader);
248 RemapInstruction(C, ValueMap,
259 ValueMap[Inst] = V;
264 ValueMap[Inst] = C;
284 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap);
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 48 ValueMapType ValueMap;
67 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /external/llvm/include/llvm/ADT/
ValueMap.h 1 //===- 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 will leave the original mapping in place
    [all...]
  /external/chromium/base/
values.h 43 typedef std::map<std::string, Value*> ValueMap;
320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
330 ValueMap::const_iterator itr_;
341 ValueMap dictionary_;
  /external/icu4c/common/
propname.h 119 /* ValueMap */
123 * enumerated properties), there is a ValueMap object. This object
135 struct ValueMap {
170 /* to ValueMap objects */
187 const ValueMap* getValueMap(EnumValue prop) const;
475 * 4: # ValueMap array [x one for each enumerated prop i]
  /external/llvm/lib/CodeGen/
SplitKit.h 265 typedef DenseMap<std::pair<unsigned, unsigned>, ValueForcePair> ValueMap;
279 ValueMap Values;
  /external/llvm/lib/Linker/
LinkModules.cpp 325 /// ValueMap - Mapping of values from what they used to be in Src, to what
326 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
329 ValueToValueMapTy ValueMap;
603 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
643 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
671 ValueMap[SGV] = NewDGV;
691 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
713 ValueMap[SF] = NewDF;
733 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
755 ValueMap[SGA] = NewDA
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 83 typedef std::map<const Value*,std::string> ValueMap;
96 ValueMap ValueNames;
392 ValueMap::iterator I = ValueNames.find(val);
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp 303 /// ValueMap - A mapping of Values to slot numbers.
304 typedef DenseMap<const Value*, unsigned> ValueMap;
315 ValueMap mMap;
319 ValueMap fMap;
541 ValueMap::iterator MI = mMap.find(V);
563 ValueMap::iterator FI = fMap.find(V);
    [all...]

Completed in 234 milliseconds