Home
last modified time | relevance | path

Searched defs:ConstraintTy (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp223 struct ConstraintTy { struct
224 SmallVector<int64_t, 8> Coefficients;
225 SmallVector<ConditionTy, 2> Preconditions;
227 SmallVector<SmallVector<int64_t, 8>> ExtraInfo;
229 bool IsSigned = false;
233 ConstraintTy(SmallVector<int64_t, 8> Coefficients, bool IsSigned, bool IsEq, in ConstraintTy() function
238 unsigned size() const { return Coefficients.size(); } in size()
240 unsigned empty() const { return Coefficients.empty(); } in empty()
246 bool isEq() const { return IsEq; } in isEq()
248 bool isNe() const { return IsNe; } in isNe()
[all …]