1 //===-- llvm/CodeGen/PseudoSourceValue.cpp ----------------------*- 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 // This file implements the PseudoSourceValue class.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/CodeGen/PseudoSourceValue.h"
14 #include "llvm/CodeGen/MachineFrameInfo.h"
15 #include "llvm/Support/ErrorHandling.h"
16 #include "llvm/Support/raw_ostream.h"
17 #include "llvm/Target/TargetMachine.h"
21 static const char *const PSVNames
[] = {
22 "Stack", "GOT", "JumpTable", "ConstantPool", "FixedStack",
23 "GlobalValueCallEntry", "ExternalSymbolCallEntry"};
25 PseudoSourceValue::PseudoSourceValue(unsigned Kind
, const TargetMachine
&TM
)
27 AddressSpace
= TM
.getAddressSpaceForPseudoSourceKind(Kind
);
30 PseudoSourceValue::~PseudoSourceValue() = default;
32 void PseudoSourceValue::printCustom(raw_ostream
&O
) const {
33 if (Kind
< TargetCustom
)
36 O
<< "TargetCustom" << Kind
;
39 bool PseudoSourceValue::isConstant(const MachineFrameInfo
*) const {
42 if (isGOT() || isConstantPool() || isJumpTable())
44 llvm_unreachable("Unknown PseudoSourceValue!");
47 bool PseudoSourceValue::isAliased(const MachineFrameInfo
*) const {
48 if (isStack() || isGOT() || isConstantPool() || isJumpTable())
50 llvm_unreachable("Unknown PseudoSourceValue!");
53 bool PseudoSourceValue::mayAlias(const MachineFrameInfo
*) const {
54 return !(isGOT() || isConstantPool() || isJumpTable());
57 bool FixedStackPseudoSourceValue::isConstant(
58 const MachineFrameInfo
*MFI
) const {
59 return MFI
&& MFI
->isImmutableObjectIndex(FI
);
62 bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo
*MFI
) const {
65 return MFI
->isAliasedObjectIndex(FI
);
68 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo
*MFI
) const {
71 // Spill slots will not alias any LLVM IR value.
72 return !MFI
->isSpillSlotObjectIndex(FI
);
75 void FixedStackPseudoSourceValue::printCustom(raw_ostream
&OS
) const {
76 OS
<< "FixedStack" << FI
;
79 CallEntryPseudoSourceValue::CallEntryPseudoSourceValue(unsigned Kind
,
80 const TargetMachine
&TM
)
81 : PseudoSourceValue(Kind
, TM
) {}
83 bool CallEntryPseudoSourceValue::isConstant(const MachineFrameInfo
*) const {
87 bool CallEntryPseudoSourceValue::isAliased(const MachineFrameInfo
*) const {
91 bool CallEntryPseudoSourceValue::mayAlias(const MachineFrameInfo
*) const {
95 GlobalValuePseudoSourceValue::GlobalValuePseudoSourceValue(
96 const GlobalValue
*GV
, const TargetMachine
&TM
)
97 : CallEntryPseudoSourceValue(GlobalValueCallEntry
, TM
), GV(GV
) {}
98 ExternalSymbolPseudoSourceValue::ExternalSymbolPseudoSourceValue(
99 const char *ES
, const TargetMachine
&TM
)
100 : CallEntryPseudoSourceValue(ExternalSymbolCallEntry
, TM
), ES(ES
) {}
102 PseudoSourceValueManager::PseudoSourceValueManager(const TargetMachine
&TMInfo
)
103 : TM(TMInfo
), StackPSV(PseudoSourceValue::Stack
, TM
),
104 GOTPSV(PseudoSourceValue::GOT
, TM
),
105 JumpTablePSV(PseudoSourceValue::JumpTable
, TM
),
106 ConstantPoolPSV(PseudoSourceValue::ConstantPool
, TM
) {}
108 const PseudoSourceValue
*PseudoSourceValueManager::getStack() {
112 const PseudoSourceValue
*PseudoSourceValueManager::getGOT() { return &GOTPSV
; }
114 const PseudoSourceValue
*PseudoSourceValueManager::getConstantPool() {
115 return &ConstantPoolPSV
;
118 const PseudoSourceValue
*PseudoSourceValueManager::getJumpTable() {
119 return &JumpTablePSV
;
122 const PseudoSourceValue
*
123 PseudoSourceValueManager::getFixedStack(int FI
) {
124 std::unique_ptr
<FixedStackPseudoSourceValue
> &V
= FSValues
[FI
];
126 V
= std::make_unique
<FixedStackPseudoSourceValue
>(FI
, TM
);
130 const PseudoSourceValue
*
131 PseudoSourceValueManager::getGlobalValueCallEntry(const GlobalValue
*GV
) {
132 std::unique_ptr
<const GlobalValuePseudoSourceValue
> &E
=
133 GlobalCallEntries
[GV
];
135 E
= std::make_unique
<GlobalValuePseudoSourceValue
>(GV
, TM
);
139 const PseudoSourceValue
*
140 PseudoSourceValueManager::getExternalSymbolCallEntry(const char *ES
) {
141 std::unique_ptr
<const ExternalSymbolPseudoSourceValue
> &E
=
142 ExternalCallEntries
[ES
];
144 E
= std::make_unique
<ExternalSymbolPseudoSourceValue
>(ES
, TM
);