Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DValueLattice.h97 if ((isConstant() || isNotConstant()) && !Other.isConstant() &&
98 !Other.isNotConstant())
145 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function
155 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!"); in getNotConstant()
178 if (isConstant() || isNotConstant()) in markOverdefined()
212 assert((!isNotConstant() || getNotConstant() == V) && in markNotConstant()
261 if (isNotConstant()) { in mergeIn()
262 if (RHS.isNotConstant() && getNotConstant() == RHS.getNotConstant()) in mergeIn()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DLazyValueInfo.cpp102 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function in __anonba15b7e30111::LVILatticeVal
112 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!"); in getNotConstant()
156 assert((!isNotConstant() || getNotConstant() == V) && in markNotConstant()
204 if (RHS.isNotConstant()) { in mergeIn()
229 if (isNotConstant()) { in mergeIn()
247 if (RHS.isNotConstant()) { in mergeIn()
278 if (Val.isNotConstant()) in operator <<()
1099 if (Result.isNotConstant()) { in getPredicateOnEdge()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DValueLattice.cpp19 if (Val.isNotConstant()) in operator <<()
DLazyValueInfo.cpp1665 if (Val.isNotConstant()) { in getPredicateResult()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp122 bool isNotConstant() const { return Tag == notconstant; } in isNotConstant() function in __anonadeae0b70111::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/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DValueLatticeTest.cpp44 EXPECT_TRUE(ValueLatticeElement::getNot(C2).isNotConstant()); in TEST_F()