Home
last modified time | relevance | path

Searched refs:isNotConstant (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h96 if ((isConstant() || isNotConstant()) && !Other.isConstant() &&
97 !Other.isNotConstant())
144 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function
154 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!"); in getNotConstant()
177 if (isConstant() || isNotConstant()) in markOverdefined()
211 assert((!isNotConstant() || getNotConstant() == V) && in markNotConstant()
260 if (isNotConstant()) { in mergeIn()
261 if (RHS.isNotConstant() && getNotConstant() == RHS.getNotConstant()) in mergeIn()
/external/llvm-project/llvm/include/llvm/Analysis/
DValueLattice.h242 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function
262 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!"); in getNotConstant()
331 if (isNotConstant()) { in markNotConstant()
422 if (isNotConstant()) {
423 if (RHS.isNotConstant() && getNotConstant() == RHS.getNotConstant())
462 if ((isNotConstant() && Other.isConstant() && in getCompare()
464 (isConstant() && Other.isNotConstant() && in getCompare()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueLattice.cpp18 if (Val.isNotConstant()) in operator <<()
DLazyValueInfo.cpp1816 if (Val.isNotConstant()) { in getPredicateResult()
/external/llvm-project/llvm/lib/Analysis/
DValueLattice.cpp20 if (Val.isNotConstant()) in operator <<()
DLazyValueInfo.cpp1708 if (Val.isNotConstant()) { in getPredicateResult()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp122 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function in __anonb20e53550111::LVILatticeVal
132 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!"); in getNotConstant()
176 assert((!isNotConstant() || getNotConstant() == V) && in markNotConstant()
224 if (RHS.isNotConstant()) { in mergeIn()
242 if (isNotConstant()) { in mergeIn()
258 if (RHS.isNotConstant()) { in mergeIn()
289 if (Val.isNotConstant()) in operator <<()
1576 if (Result.isNotConstant()) { in getPredicateResult()
/external/llvm-project/llvm/unittests/Analysis/
DValueLatticeTest.cpp40 EXPECT_TRUE(ValueLatticeElement::getNot(C2).isNotConstant()); in TEST_F()