OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LatticeVal
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Analysis/
SparsePropagation.h
46
typedef void *
LatticeVal
;
49
LatticeVal
UndefVal, OverdefinedVal, UntrackedVal;
52
AbstractLatticeFunction(
LatticeVal
undefVal,
LatticeVal
overdefinedVal,
53
LatticeVal
untrackedVal) {
60
LatticeVal
getUndefVal() const { return UndefVal; }
61
LatticeVal
getOverdefinedVal() const { return OverdefinedVal; }
62
LatticeVal
getUntrackedVal() const { return UntrackedVal; }
71
virtual
LatticeVal
ComputeConstant(Constant *C) {
82
virtual Constant *GetConstant(
LatticeVal
LV, Value *Val, SparseSolver &SS)
[
all
...]
/external/llvm/lib/Transforms/Scalar/
SCCP.cpp
55
///
LatticeVal
class - This class represents the different lattice values that
58
class
LatticeVal
{
86
LatticeVal
() : Val(nullptr, undefined) {}
161
DenseMap<Value*,
LatticeVal
> ValueState; // The state each value is in.
166
DenseMap<std::pair<Value*, unsigned>,
LatticeVal
> StructValueState;
172
DenseMap<GlobalVariable*,
LatticeVal
> TrackedGlobals;
177
DenseMap<Function*,
LatticeVal
> TrackedRetVals;
181
DenseMap<std::pair<Function*, unsigned>,
LatticeVal
> TrackedMultipleRetVals;
232
LatticeVal
&IV = TrackedGlobals[GV];
247
LatticeVal
()));
[
all
...]
/external/llvm/lib/Analysis/
SparsePropagation.cpp
32
void AbstractLatticeFunction::PrintValue(
LatticeVal
V, raw_ostream &OS) {
47
/// getOrInitValueState - Return the
LatticeVal
object that corresponds to the
53
SparseSolver::
LatticeVal
SparseSolver::getOrInitValueState(Value *V) {
54
DenseMap<Value*,
LatticeVal
>::iterator I = ValueState.find(V);
57
LatticeVal
LV;
79
void SparseSolver::UpdateState(Instruction &Inst,
LatticeVal
V) {
80
DenseMap<Value*,
LatticeVal
>::iterator I = ValueState.find(&Inst);
133
LatticeVal
BCValue;
175
LatticeVal
SCValue;
235
LatticeVal
IV = LatticeFunc->ComputeInstructionState(PN, *this)
[
all
...]
Completed in 58 milliseconds