1 //===- ValueLattice.cpp - Value constraint analysis -------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Analysis/ValueLattice.h"
12 raw_ostream
&operator<<(raw_ostream
&OS
, const ValueLatticeElement
&Val
) {
14 return OS
<< "unknown";
17 if (Val
.isOverdefined())
18 return OS
<< "overdefined";
20 if (Val
.isNotConstant())
21 return OS
<< "notconstant<" << *Val
.getNotConstant() << ">";
23 if (Val
.isConstantRangeIncludingUndef())
24 return OS
<< "constantrange incl. undef <"
25 << Val
.getConstantRange(true).getLower() << ", "
26 << Val
.getConstantRange(true).getUpper() << ">";
28 if (Val
.isConstantRange())
29 return OS
<< "constantrange<" << Val
.getConstantRange().getLower() << ", "
30 << Val
.getConstantRange().getUpper() << ">";
31 return OS
<< "constant<" << *Val
.getConstant() << ">";
33 } // end namespace llvm