HomeSort by relevance Sort by last modified time
    Searched defs:LatticeVal (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
SparsePropagation.h 46 typedef void *LatticeVal;
48 LatticeVal UndefVal, OverdefinedVal, UntrackedVal;
50 AbstractLatticeFunction(LatticeVal undefVal, LatticeVal overdefinedVal,
51 LatticeVal untrackedVal) {
58 LatticeVal getUndefVal() const { return UndefVal; }
59 LatticeVal getOverdefinedVal() const { return OverdefinedVal; }
60 LatticeVal getUntrackedVal() const { return UntrackedVal; }
71 virtual LatticeVal ComputeConstant(Constant *C) {
84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 54 /// LatticeVal class - This class represents the different lattice values that
57 class LatticeVal {
85 LatticeVal() : Val(nullptr, undefined) {}
160 DenseMap<Value*, LatticeVal> ValueState; // The state each value is in.
165 DenseMap<std::pair<Value*, unsigned>, LatticeVal> StructValueState;
171 DenseMap<GlobalVariable*, LatticeVal> TrackedGlobals;
176 DenseMap<Function*, LatticeVal> TrackedRetVals;
180 DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
231 LatticeVal &IV = TrackedGlobals[GV];
246 LatticeVal()));
    [all...]

Completed in 60 milliseconds