OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ValueState
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
SparsePropagation.h
122
DenseMap<Value*, LatticeVal>
ValueState
; // The state each value is in.
153
DenseMap<Value*, LatticeVal>::const_iterator I =
ValueState
.find(V);
154
return I !=
ValueState
.end() ? I->second : LatticeFunc->getUntrackedVal();
/external/llvm/lib/Transforms/Scalar/
SCCP.cpp
159
DenseMap<Value*, LatticeVal>
ValueState
; // The state each value is in.
161
/// StructValueState - This maintains
ValueState
for values that have
269
DenseMap<Value*, LatticeVal>::const_iterator I =
ValueState
.find(V);
270
assert(I !=
ValueState
.end() && "V is not in valuemap!");
288
markOverdefined(
ValueState
[V], V);
317
markConstant(
ValueState
[V], V, C);
322
LatticeVal &IV =
ValueState
[V];
360
mergeInValue(
ValueState
[V], V, MergeWithV);
371
ValueState
.insert(std::make_pair(V, LatticeVal()));
848
LatticeVal &IV =
ValueState
[&I]
[
all
...]
Completed in 43 milliseconds