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
) {
13 if (Val
.isUndefined())
14 return OS
<< "undefined";
15 if (Val
.isOverdefined())
16 return OS
<< "overdefined";
18 if (Val
.isNotConstant())
19 return OS
<< "notconstant<" << *Val
.getNotConstant() << ">";
20 if (Val
.isConstantRange())
21 return OS
<< "constantrange<" << Val
.getConstantRange().getLower() << ", "
22 << Val
.getConstantRange().getUpper() << ">";
23 return OS
<< "constant<" << *Val
.getConstant() << ">";
25 } // end namespace llvm