1 //===- ARMConstantPoolValue.cpp - ARM constantpool value --------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the ARM specific constantpool value class.
12 //===----------------------------------------------------------------------===//
14 #include "ARMConstantPoolValue.h"
15 #include "llvm/ADT/FoldingSet.h"
16 #include "llvm/Constant.h"
17 #include "llvm/Constants.h"
18 #include "llvm/GlobalValue.h"
19 #include "llvm/Type.h"
20 #include "llvm/Support/raw_ostream.h"
24 ARMConstantPoolValue::ARMConstantPoolValue(const Constant
*cval
, unsigned id
,
27 ARMCP::ARMCPModifier Modif
,
29 : MachineConstantPoolValue((const Type
*)cval
->getType()),
30 CVal(cval
), S(NULL
), LabelId(id
), Kind(K
), PCAdjust(PCAdj
),
31 Modifier(Modif
), AddCurrentAddress(AddCA
) {}
33 ARMConstantPoolValue::ARMConstantPoolValue(LLVMContext
&C
,
34 const char *s
, unsigned id
,
36 ARMCP::ARMCPModifier Modif
,
38 : MachineConstantPoolValue((const Type
*)Type::getInt32Ty(C
)),
39 CVal(NULL
), S(strdup(s
)), LabelId(id
), Kind(ARMCP::CPExtSymbol
),
40 PCAdjust(PCAdj
), Modifier(Modif
), AddCurrentAddress(AddCA
) {}
42 ARMConstantPoolValue::ARMConstantPoolValue(const GlobalValue
*gv
,
43 ARMCP::ARMCPModifier Modif
)
44 : MachineConstantPoolValue((const Type
*)Type::getInt32Ty(gv
->getContext())),
45 CVal(gv
), S(NULL
), LabelId(0), Kind(ARMCP::CPValue
), PCAdjust(0),
46 Modifier(Modif
), AddCurrentAddress(false) {}
48 const GlobalValue
*ARMConstantPoolValue::getGV() const {
49 return dyn_cast_or_null
<GlobalValue
>(CVal
);
52 const BlockAddress
*ARMConstantPoolValue::getBlockAddress() const {
53 return dyn_cast_or_null
<BlockAddress
>(CVal
);
56 static bool CPV_streq(const char *S1
, const char *S2
) {
59 if (S1
&& S2
&& strcmp(S1
, S2
) == 0)
64 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool
*CP
,
66 unsigned AlignMask
= Alignment
- 1;
67 const std::vector
<MachineConstantPoolEntry
> Constants
= CP
->getConstants();
68 for (unsigned i
= 0, e
= Constants
.size(); i
!= e
; ++i
) {
69 if (Constants
[i
].isMachineConstantPoolEntry() &&
70 (Constants
[i
].getAlignment() & AlignMask
) == 0) {
71 ARMConstantPoolValue
*CPV
=
72 (ARMConstantPoolValue
*)Constants
[i
].Val
.MachineCPVal
;
73 if (CPV
->CVal
== CVal
&&
74 CPV
->LabelId
== LabelId
&&
75 CPV
->PCAdjust
== PCAdjust
&&
76 CPV_streq(CPV
->S
, S
) &&
77 CPV
->Modifier
== Modifier
)
85 ARMConstantPoolValue::~ARMConstantPoolValue() {
90 ARMConstantPoolValue::AddSelectionDAGCSEId(FoldingSetNodeID
&ID
) {
93 ID
.AddInteger(LabelId
);
94 ID
.AddInteger(PCAdjust
);
98 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue
*ACPV
) {
99 if (ACPV
->Kind
== Kind
&&
100 ACPV
->CVal
== CVal
&&
101 ACPV
->PCAdjust
== PCAdjust
&&
102 CPV_streq(ACPV
->S
, S
) &&
103 ACPV
->Modifier
== Modifier
) {
104 if (ACPV
->LabelId
== LabelId
)
106 // Two PC relative constpool entries containing the same GV address or
107 // external symbols. FIXME: What about blockaddress?
108 if (Kind
== ARMCP::CPValue
|| Kind
== ARMCP::CPExtSymbol
)
114 void ARMConstantPoolValue::dump() const {
115 errs() << " " << *this;
119 void ARMConstantPoolValue::print(raw_ostream
&O
) const {
121 O
<< CVal
->getName();
124 if (Modifier
) O
<< "(" << getModifierText() << ")";
126 O
<< "-(LPC" << LabelId
<< "+" << (unsigned)PCAdjust
;
127 if (AddCurrentAddress
) O
<< "-.";