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

1 2 3 4 5 6

  /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 47 typedef StringMap<Value*> ValueMap;
49 /// @brief An iterator over a ValueMap.
50 typedef ValueMap::iterator iterator;
52 /// @brief A const_iterator over a ValueMap.
53 typedef ValueMap::const_iterator const_iterator;
126 ValueMap vmap; ///< The map that holds the symbol table.
  /external/swiftshader/third_party/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.
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueSymbolTable.h 52 typedef StringMap<Value*> ValueMap;
54 /// @brief An iterator over a ValueMap.
55 typedef ValueMap::iterator iterator;
57 /// @brief A const_iterator over a ValueMap.
58 typedef ValueMap::const_iterator const_iterator;
131 ValueMap vmap; ///< The map that holds the symbol table.
  /external/llvm/unittests/IR/
ValueMapTest.cpp 1 //===- llvm/unittest/ADT/ValueMapTest.cpp - ValueMap unit tests -*- C++ -*-===//
10 #include "llvm/IR/ValueMap.h"
42 ValueMap<TypeParam*, int> VM1;
48 ValueMap<TypeParam*, int> VM;
62 ValueMap<TypeParam*, int> VM;
63 ValueMap<TypeParam*, int> VM2(16); (void)VM2;
65 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3;
71 typename ValueMap<TypeParam*, int>::iterator I =
79 const ValueMap<TypeParam*, int> &CVM = VM;
80 typename ValueMap<TypeParam*, int>::const_iterator CI
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
ValueMapTest.cpp 1 //===- llvm/unittest/ADT/ValueMapTest.cpp - ValueMap unit tests -*- C++ -*-===//
10 #include "llvm/ADT/ValueMap.h"
44 ValueMap<TypeParam*, int> VM1;
50 ValueMap<TypeParam*, int> VM;
64 ValueMap<TypeParam*, int> VM;
65 ValueMap<TypeParam*, int> VM2(16); (void)VM2;
67 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3;
73 typename ValueMap<TypeParam*, int>::iterator I =
81 const ValueMap<TypeParam*, int> &CVM = VM;
82 typename ValueMap<TypeParam*, int>::const_iterator CI
    [all...]
  /external/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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);
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 106 /// ValueMap - Since we emit code for the function a basic block at a time,
109 DenseMap<const Value *, unsigned> ValueMap;
213 return ValueMap.count(V);
224 unsigned &R = ValueMap[V];
270 // PHIs with no uses have no ValueMap entry.
271 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
272 if (It == ValueMap.end())
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 105 /// ValueMap - Since we emit code for the function a basic block at a time,
108 DenseMap<const Value *, unsigned> ValueMap;
212 return ValueMap.count(V);
223 unsigned &R = ValueMap[V];
269 // PHIs with no uses have no ValueMap entry.
270 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
271 if (It == ValueMap.end())

Completed in 1880 milliseconds

1 2 3 4 5 6