OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LocalValueMap
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
97
LocalValueMap
.clear();
121
DenseMap<const Value *, unsigned>::iterator VI =
LocalValueMap
.find(&*I);
122
assert(VI !=
LocalValueMap
.end() && "Missed an argument?");
129
LocalValueMap
.clear();
279
LocalValueMap
[V] = Reg;
293
return
LocalValueMap
[V];
298
LocalValueMap
[I] = Reg;
[
all
...]
/external/llvm/include/llvm/CodeGen/
FastISel.h
192
DenseMap<const Value *, unsigned>
LocalValueMap
;
557
/// \brief Clears
LocalValueMap
and moves the area for the new local variables
/external/llvm/lib/Target/X86/
X86FastISel.cpp
624
DenseMap<const Value *, unsigned>::iterator I =
LocalValueMap
.find(V);
626
if (I !=
LocalValueMap
.end() && I->second != 0) {
660
LocalValueMap
[V] = LoadReg;
[
all
...]
Completed in 338 milliseconds