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

  /external/google-breakpad/src/processor/
cfi_frame_info-inl.h 51 typedef CFIFrameInfo::RegisterValueMap<RegisterType> ValueMap;
52 ValueMap callee_registers;
53 ValueMap caller_registers;
55 typename ValueMap::const_iterator caller_none = caller_registers.end();
75 typename ValueMap::const_iterator caller_entry;
  /external/llvm/include/llvm/IR/
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.
ValueMap.h 1 //===- 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
49 /// ValueMap<>. User Configs should inherit from this class to be as compatible
50 /// as possible with future versions of ValueMap.
55 /// If FollowRAUW is true, the ValueMap will update mappings on RAUW. If it's
56 /// false, the ValueMap will leave the original mapping in place
    [all...]
  /external/lldb/include/lldb/DataFormatters/
FormatManager.h 36 typedef ValueNavigator::MapType ValueMap;
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 71 /// ValueMap - Since we emit code for the function a basic block at a time,
74 DenseMap<const Value*, unsigned> ValueMap;
149 return ValueMap.count(V);
157 unsigned &R = ValueMap[V];
203 // PHIs with no uses have no ValueMap entry.
204 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
205 if (It == ValueMap.end())
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 409 ValueMapType::const_iterator I = ValueMap.find(V);
410 assert(I != ValueMap.end() && "Value not in slotcalculator!");
415 print(dbgs(), ValueMap, "Default");
487 // Rebuild the modified portion of ValueMap.
489 ValueMap[Values[CstStart].first] = CstStart+1;
578 unsigned &ValueID = ValueMap[V];
612 ValueMap[V] = Values.size();
678 if (ValueMap.count(C))
739 ValueMap[BB] = BasicBlocks.size();
774 /// Remove purged values from the ValueMap
    [all...]
ValueEnumerator.h 57 ValueMapType ValueMap;
89 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /external/llvm/lib/CodeGen/
SplitKit.h 274 typedef DenseMap<std::pair<unsigned, unsigned>, ValueForcePair> ValueMap;
288 ValueMap Values;
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 140 ValueToValueMapTy &ValueMap) {
157 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
407 // Begin by walking OrigHeader and populating ValueMap with an entry for
410 ValueToValueMapTy ValueMap;
415 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader);
443 RemapInstruction(C, ValueMap,
455 ValueMap[Inst] = V;
460 ValueMap[Inst] = C;
480 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 125 typedef bimap<Location, Value *> ValueMap;
136 inline bool exists(ValueMap&, unsigned int i, unsigned int c);
138 Value *load(ValueMap&, int i, int c, Value *ptr);
139 void store(ValueMap&, int i, int c, Value *ptr, Value *value);
140 Value *acquire(ValueMap&, int i, int c);
143 inline Value *lookup(ValueMap&, unsigned i, unsigned c);
144 inline Value *insert(ValueMap&, unsigned i, unsigned c, Value *v);
286 BuildUtil::DataArray::exists(ValueMap &m, unsigned int i, unsigned int c)
293 BuildUtil::DataArray::lookup(ValueMap &m, unsigned i, unsigned c)
295 ValueMap::r_iterator it = m.r.find(Location(array, arrayIdx, i, c))
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 137 ValueMapType::const_iterator I = ValueMap.find(V);
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
143 print(dbgs(), ValueMap, "Default");
221 // Rebuild the modified portion of ValueMap.
223 ValueMap[Values[CstStart].first] = CstStart+1;
311 unsigned &ValueID = ValueMap[V];
341 ValueMap[V] = Values.size();
351 ValueMap[V] = Values.size();
417 if (ValueMap.count(C))
478 ValueMap[BB] = BasicBlocks.size()
    [all...]
ValueEnumerator.h 55 ValueMapType ValueMap;
83 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 137 ValueMapType::const_iterator I = ValueMap.find(V);
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
143 print(dbgs(), ValueMap, "Default");
221 // Rebuild the modified portion of ValueMap.
223 ValueMap[Values[CstStart].first] = CstStart+1;
311 unsigned &ValueID = ValueMap[V];
341 ValueMap[V] = Values.size();
351 ValueMap[V] = Values.size();
417 if (ValueMap.count(C))
478 ValueMap[BB] = BasicBlocks.size()
    [all...]
ValueEnumerator.h 55 ValueMapType ValueMap;
83 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 137 ValueMapType::const_iterator I = ValueMap.find(V);
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
143 print(dbgs(), ValueMap, "Default");
221 // Rebuild the modified portion of ValueMap.
223 ValueMap[Values[CstStart].first] = CstStart+1;
311 unsigned &ValueID = ValueMap[V];
341 ValueMap[V] = Values.size();
351 ValueMap[V] = Values.size();
417 if (ValueMap.count(C))
478 ValueMap[BB] = BasicBlocks.size()
    [all...]
ValueEnumerator.h 58 ValueMapType ValueMap;
86 /// incorporated function. Their reverse mapping is stored in ValueMap.
  /art/compiler/dex/
global_value_numbering.h 92 typedef ScopedArenaSafeMap<uint64_t, uint16_t> ValueMap;
239 ValueMap global_value_map_;
  /external/lldb/source/Expression/
IRInterpreter.cpp 63 typedef std::map <const Value*, lldb::addr_t> ValueMap;
65 ValueMap m_values;
111 ValueMap::iterator i = m_values.find(value);
389 ValueMap::iterator i = m_values.find(value);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 86 typedef std::map<const Value*,std::string> ValueMap;
100 ValueMap ValueNames;
434 ValueMap::iterator I = ValueNames.find(val);
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 550 /// ValueMap - A mapping of Values to slot numbers.
551 typedef DenseMap<const Value*, unsigned> ValueMap;
563 ValueMap mMap;
567 ValueMap fMap;
846 ValueMap::iterator MI = mMap.find(V);
868 ValueMap::iterator FI = fMap.find(V);
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 403 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
406 ValueToValueMapTy ValueMap;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 361 struct ValueMap {
364 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {}
448 ValueMap WidenMap;
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 469 milliseconds