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/include/llvm/CodeGen/
FastISel.h
49
DenseMap<const Value *, unsigned>
LocalValueMap
;
392
/// Clears
LocalValueMap
and moves the area for the new local variables to the
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
77
LocalValueMap
.clear();
100
DenseMap<const Value *, unsigned>::iterator VI =
LocalValueMap
.find(I);
101
assert(VI !=
LocalValueMap
.end() && "Missed an argument?");
108
LocalValueMap
.clear();
244
LocalValueMap
[V] = Reg;
258
return
LocalValueMap
[V];
269
LocalValueMap
[I] = Reg;
[
all
...]
/external/llvm/lib/Target/X86/
X86FastISel.cpp
544
DenseMap<const Value*, unsigned>::iterator I =
LocalValueMap
.find(V);
546
if (I !=
LocalValueMap
.end() && I->second != 0) {
580
LocalValueMap
[V] = LoadReg;
[
all
...]
Completed in 115 milliseconds