OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
73
///
ValueMap
- Since we emit code for the function a basic block at a time,
76
DenseMap<const Value*, unsigned>
ValueMap
;
137
return
ValueMap
.count(V);
145
unsigned &R =
ValueMap
[V];
191
// PHIs with no uses have no
ValueMap
entry.
192
DenseMap<const Value*, unsigned>::const_iterator It =
ValueMap
.find(PN);
193
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
234
typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*>
ValueMap
;
244
ValueMap
Values;
/external/llvm/lib/Linker/
LinkModules.cpp
322
///
ValueMap
- Mapping of values from what they used to be in Src, to what
323
/// they are now in DstM. ValueToValueMapTy is a
ValueMap
, which involves
326
ValueToValueMapTy
ValueMap
;
594
ValueMap
[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
634
ValueMap
[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
663
ValueMap
[SGV] = NewDGV;
683
ValueMap
[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
703
ValueMap
[SF] = NewDF;
723
ValueMap
[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
744
ValueMap
[SGA] = NewDA
[
all
...]
/external/llvm/lib/Target/CppBackend/
CPPBackend.cpp
93
typedef std::map<const Value*,std::string>
ValueMap
;
106
ValueMap
ValueNames;
402
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;
540
ValueMap
::iterator MI = mMap.find(V);
562
ValueMap
::iterator FI = fMap.find(V);
[
all
...]
Completed in 95 milliseconds