2017-09-28 19:09:22 +08:00
|
|
|
//===- ValueLattice.cpp - Value constraint analysis -------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-09-28 19:09:22 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/ValueLattice.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
raw_ostream &operator<<(raw_ostream &OS, const ValueLatticeElement &Val) {
|
2020-03-15 00:50:09 +08:00
|
|
|
if (Val.isUnknown())
|
|
|
|
return OS << "unknown";
|
|
|
|
if (Val.isUndef())
|
|
|
|
return OS << "undef";
|
2017-09-28 19:09:22 +08:00
|
|
|
if (Val.isOverdefined())
|
|
|
|
return OS << "overdefined";
|
|
|
|
|
|
|
|
if (Val.isNotConstant())
|
|
|
|
return OS << "notconstant<" << *Val.getNotConstant() << ">";
|
2020-03-15 18:35:39 +08:00
|
|
|
|
|
|
|
if (Val.isSingleCRFromUndef())
|
|
|
|
return OS << "constantrange (from undef)<"
|
|
|
|
<< Val.getConstantRange().getLower() << ", "
|
|
|
|
<< Val.getConstantRange().getUpper() << ">";
|
|
|
|
|
2017-09-28 19:09:22 +08:00
|
|
|
if (Val.isConstantRange())
|
|
|
|
return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
|
|
|
|
<< Val.getConstantRange().getUpper() << ">";
|
|
|
|
return OS << "constant<" << *Val.getConstant() << ">";
|
|
|
|
}
|
|
|
|
} // end namespace llvm
|