blob: 772a884c90d361502bf0b0313bd9d21671d066f9 [file] [log] [blame]
Chris Lattner64c34f12008-11-16 07:46:48 +00001//===--- APValue.cpp - Union class for APFloat/APSInt/Complex -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the APValue class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/APValue.h"
15#include "llvm/Support/raw_ostream.h"
16using namespace clang;
17
18
19const APValue &APValue::operator=(const APValue &RHS) {
20 if (Kind != RHS.Kind) {
21 MakeUninit();
22 if (RHS.isInt())
23 MakeInt();
24 else if (RHS.isFloat())
25 MakeFloat();
Nate Begeman3d309f92009-01-18 01:01:34 +000026 else if (RHS.isVector())
27 MakeVector();
Chris Lattner64c34f12008-11-16 07:46:48 +000028 else if (RHS.isComplexInt())
29 MakeComplexInt();
30 else if (RHS.isComplexFloat())
31 MakeComplexFloat();
32 else if (RHS.isLValue())
33 MakeLValue();
34 }
35 if (isInt())
36 setInt(RHS.getInt());
37 else if (isFloat())
38 setFloat(RHS.getFloat());
Nate Begeman3d309f92009-01-18 01:01:34 +000039 else if (isVector())
Douglas Gregor98300462009-09-08 19:57:33 +000040 setVector(((Vec*)(char*)RHS.Data)->Elts, RHS.getVectorLength());
Chris Lattner64c34f12008-11-16 07:46:48 +000041 else if (isComplexInt())
42 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag());
43 else if (isComplexFloat())
44 setComplexFloat(RHS.getComplexFloatReal(), RHS.getComplexFloatImag());
45 else if (isLValue())
46 setLValue(RHS.getLValueBase(), RHS.getLValueOffset());
47 return *this;
48}
49
50void APValue::MakeUninit() {
51 if (Kind == Int)
Douglas Gregor98300462009-09-08 19:57:33 +000052 ((APSInt*)(char*)Data)->~APSInt();
Chris Lattner64c34f12008-11-16 07:46:48 +000053 else if (Kind == Float)
Douglas Gregor98300462009-09-08 19:57:33 +000054 ((APFloat*)(char*)Data)->~APFloat();
Nate Begeman3d309f92009-01-18 01:01:34 +000055 else if (Kind == Vector)
Douglas Gregor98300462009-09-08 19:57:33 +000056 ((Vec*)(char*)Data)->~Vec();
Chris Lattner64c34f12008-11-16 07:46:48 +000057 else if (Kind == ComplexInt)
Douglas Gregor98300462009-09-08 19:57:33 +000058 ((ComplexAPSInt*)(char*)Data)->~ComplexAPSInt();
Chris Lattner64c34f12008-11-16 07:46:48 +000059 else if (Kind == ComplexFloat)
Douglas Gregor98300462009-09-08 19:57:33 +000060 ((ComplexAPFloat*)(char*)Data)->~ComplexAPFloat();
Chris Lattner64c34f12008-11-16 07:46:48 +000061 else if (Kind == LValue) {
Douglas Gregor98300462009-09-08 19:57:33 +000062 ((LV*)(char*)Data)->~LV();
Chris Lattner64c34f12008-11-16 07:46:48 +000063 }
Nate Begeman3d309f92009-01-18 01:01:34 +000064 Kind = Uninitialized;
Chris Lattner64c34f12008-11-16 07:46:48 +000065}
66
67void APValue::dump() const {
68 print(llvm::errs());
69 llvm::errs() << '\n';
Chris Lattner64c34f12008-11-16 07:46:48 +000070}
71
72static double GetApproxValue(const llvm::APFloat &F) {
73 llvm::APFloat V = F;
74 bool ignored;
75 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
76 &ignored);
77 return V.convertToDouble();
78}
79
80void APValue::print(llvm::raw_ostream &OS) const {
81 switch (getKind()) {
82 default: assert(0 && "Unknown APValue kind!");
83 case Uninitialized:
84 OS << "Uninitialized";
85 return;
86 case Int:
87 OS << "Int: " << getInt();
88 return;
89 case Float:
90 OS << "Float: " << GetApproxValue(getFloat());
91 return;
Nate Begeman3d309f92009-01-18 01:01:34 +000092 case Vector:
Nate Begeman59b5da62009-01-18 03:20:47 +000093 OS << "Vector: " << getVectorElt(0);
Mike Stump1eb44332009-09-09 15:08:12 +000094 for (unsigned i = 1; i != getVectorLength(); ++i)
Nate Begeman59b5da62009-01-18 03:20:47 +000095 OS << ", " << getVectorElt(i);
Nate Begeman3d309f92009-01-18 01:01:34 +000096 return;
Chris Lattner64c34f12008-11-16 07:46:48 +000097 case ComplexInt:
98 OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag();
99 return;
100 case ComplexFloat:
101 OS << "ComplexFloat: " << GetApproxValue(getComplexFloatReal())
102 << ", " << GetApproxValue(getComplexFloatImag());
103 case LValue:
104 OS << "LValue: <todo>";
105 return;
106 }
107}
108