Skip to content

Commit e97d3b9

Browse files
committed
Revert "[ARM] Promote small global constants to constant pools"
Breaks Android tests by introducing text relocations to ARM binaries. http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux/builds/25362/steps/run%20asan%20lit%20tests%20%5Barm%2Fbullhead-userdebug%2FMTC20F%5D/logs/stdio llvm-svn: 281526
1 parent 93f75c7 commit e97d3b9

File tree

5 files changed

+1
-254
lines changed

5 files changed

+1
-254
lines changed

llvm/lib/Target/ARM/ARMAsmPrinter.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,6 @@ void ARMAsmPrinter::EmitXXStructor(const DataLayout &DL, const Constant *CV) {
9797
OutStreamer->EmitValue(E, Size);
9898
}
9999

100-
void ARMAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
101-
if (PromotedGlobals.count(GV))
102-
// The global was promoted into a constant pool. It should not be emitted.
103-
return;
104-
AsmPrinter::EmitGlobalVariable(GV);
105-
}
106-
107100
/// runOnMachineFunction - This uses the EmitInstruction()
108101
/// method to print assembly for each instruction.
109102
///
@@ -116,12 +109,6 @@ bool ARMAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
116109
const Function* F = MF.getFunction();
117110
const TargetMachine& TM = MF.getTarget();
118111

119-
// Collect all globals that had their storage promoted to a constant pool.
120-
// Functions are emitted before variables, so this accumulates promoted
121-
// globals from all functions in PromotedGlobals.
122-
for (auto *GV : AFI->getGlobalsPromotedToConstantPool())
123-
PromotedGlobals.insert(GV);
124-
125112
// Calculate this function's optimization goal.
126113
unsigned OptimizationGoal;
127114
if (F->hasFnAttribute(Attribute::OptimizeNone))

llvm/lib/Target/ARM/ARMAsmPrinter.h

+1-8
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ class LLVM_LIBRARY_VISIBILITY ARMAsmPrinter : public AsmPrinter {
5656
/// -1 if uninitialized, 0 if conflicting goals
5757
int OptimizationGoals;
5858

59-
/// List of globals that have had their storage promoted to a constant
60-
/// pool. This lives between calls to runOnMachineFunction and collects
61-
/// data from every MachineFunction. It is used during doFinalization
62-
/// when all non-function globals are emitted.
63-
SmallPtrSet<const GlobalVariable*,2> PromotedGlobals;
64-
6559
public:
6660
explicit ARMAsmPrinter(TargetMachine &TM,
6761
std::unique_ptr<MCStreamer> Streamer);
@@ -96,8 +90,7 @@ class LLVM_LIBRARY_VISIBILITY ARMAsmPrinter : public AsmPrinter {
9690
void EmitStartOfAsmFile(Module &M) override;
9791
void EmitEndOfAsmFile(Module &M) override;
9892
void EmitXXStructor(const DataLayout &DL, const Constant *CV) override;
99-
void EmitGlobalVariable(const GlobalVariable *GV) override;
100-
93+
10194
// lowerOperand - Convert a MachineOperand into the equivalent MCOperand.
10295
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp);
10396

llvm/lib/Target/ARM/ARMISelLowering.cpp

-111
Original file line numberDiff line numberDiff line change
@@ -59,24 +59,12 @@ using namespace llvm;
5959
STATISTIC(NumTailCalls, "Number of tail calls");
6060
STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
6161
STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
62-
STATISTIC(NumConstpoolPromoted,
63-
"Number of constants with their storage promoted into constant pools");
6462

6563
static cl::opt<bool>
6664
ARMInterworking("arm-interworking", cl::Hidden,
6765
cl::desc("Enable / disable ARM interworking (for debugging only)"),
6866
cl::init(true));
6967

70-
static cl::opt<bool> EnableConstpoolPromotion(
71-
"arm-promote-constant", cl::Hidden,
72-
cl::desc("Enable / disable promotion of unnamed_addr constants into "
73-
"constant pools"),
74-
cl::init(true));
75-
static cl::opt<unsigned> ConstpoolPromotionMaxSize(
76-
"arm-promote-constant-max-size", cl::Hidden,
77-
cl::desc("Maximum size of constant to promote into a constant pool"),
78-
cl::init(64));
79-
8068
namespace {
8169
class ARMCCState : public CCState {
8270
public:
@@ -2975,100 +2963,6 @@ ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
29752963
llvm_unreachable("bogus TLS model");
29762964
}
29772965

2978-
/// Return true if all users of V are within function F, looking through
2979-
/// ConstantExprs.
2980-
static bool allUsersAreInFunction(const Value *V, const Function *F) {
2981-
SmallVector<const User*,4> Worklist;
2982-
for (auto *U : V->users())
2983-
Worklist.push_back(U);
2984-
while (!Worklist.empty()) {
2985-
auto *U = Worklist.pop_back_val();
2986-
if (isa<ConstantExpr>(U)) {
2987-
for (auto *UU : U->users())
2988-
Worklist.push_back(UU);
2989-
continue;
2990-
}
2991-
2992-
auto *I = dyn_cast<Instruction>(U);
2993-
if (!I || I->getParent()->getParent() != F)
2994-
return false;
2995-
}
2996-
return true;
2997-
}
2998-
2999-
/// Return true if all users of V are within some (any) function, looking through
3000-
/// ConstantExprs. In other words, are there any global constant users?
3001-
static bool allUsersAreInFunctions(const Value *V) {
3002-
SmallVector<const User*,4> Worklist;
3003-
for (auto *U : V->users())
3004-
Worklist.push_back(U);
3005-
while (!Worklist.empty()) {
3006-
auto *U = Worklist.pop_back_val();
3007-
if (isa<ConstantExpr>(U)) {
3008-
for (auto *UU : U->users())
3009-
Worklist.push_back(UU);
3010-
continue;
3011-
}
3012-
3013-
if (!isa<Instruction>(U))
3014-
return false;
3015-
}
3016-
return true;
3017-
}
3018-
3019-
static SDValue promoteToConstantPool(const GlobalValue *GV, SelectionDAG &DAG,
3020-
EVT PtrVT, SDLoc dl) {
3021-
// If we're creating a pool entry for a constant global with unnamed address,
3022-
// and the global is small enough, we can emit it inline into the constant pool
3023-
// to save ourselves an indirection.
3024-
//
3025-
// This is a win if the constant is only used in one function (so it doesn't
3026-
// need to be duplicated) or duplicating the constant wouldn't increase code
3027-
// size (implying the constant is no larger than 4 bytes).
3028-
const Function *F = DAG.getMachineFunction().getFunction();
3029-
auto *GVar = dyn_cast<GlobalVariable>(GV);
3030-
if (EnableConstpoolPromotion && GVar && GVar->hasInitializer() &&
3031-
GVar->isConstant() && GVar->hasGlobalUnnamedAddr() && GVar->hasLocalLinkage()) {
3032-
// The constant islands pass can only really deal with alignment requests
3033-
// <= 4 bytes and cannot pad constants itself. Therefore we cannot promote
3034-
// any type wanting greater alignment requirements than 4 bytes. We also
3035-
// can only promote constants that are multiples of 4 bytes in size or
3036-
// are paddable to a multiple of 4. Currently we only try and pad constants
3037-
// that are strings for simplicity.
3038-
auto *Init = GVar->getInitializer();
3039-
auto *CDAInit = dyn_cast<ConstantDataArray>(Init);
3040-
unsigned Size = DAG.getDataLayout().getTypeAllocSize(Init->getType());
3041-
unsigned Align = DAG.getDataLayout().getABITypeAlignment(Init->getType());
3042-
unsigned RequiredPadding = 4 - (Size % 4);
3043-
bool PaddingPossible =
3044-
RequiredPadding == 4 || (CDAInit && CDAInit->isString());
3045-
3046-
if (PaddingPossible && Align <= 4 && Size <= ConstpoolPromotionMaxSize &&
3047-
(allUsersAreInFunction(GVar, F) ||
3048-
(Size <= 4 && allUsersAreInFunctions(GVar)))) {
3049-
if (RequiredPadding != 4) {
3050-
StringRef S = CDAInit->getAsString();
3051-
3052-
SmallVector<uint8_t,16> V(S.size());
3053-
std::copy(S.bytes_begin(), S.bytes_end(), V.begin());
3054-
while (RequiredPadding--)
3055-
V.push_back(0);
3056-
Init = ConstantDataArray::get(*DAG.getContext(), V);
3057-
}
3058-
3059-
SDValue CPAddr =
3060-
DAG.getTargetConstantPool(Init, PtrVT, Align);
3061-
3062-
MachineFunction &MF = DAG.getMachineFunction();
3063-
ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
3064-
AFI->markGlobalAsPromotedToConstantPool(GVar);
3065-
++NumConstpoolPromoted;
3066-
return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
3067-
}
3068-
}
3069-
return SDValue();
3070-
}
3071-
30722966
SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
30732967
SelectionDAG &DAG) const {
30742968
EVT PtrVT = getPointerTy(DAG.getDataLayout());
@@ -3080,11 +2974,6 @@ SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
30802974
bool IsRO =
30812975
(isa<GlobalVariable>(GV) && cast<GlobalVariable>(GV)->isConstant()) ||
30822976
isa<Function>(GV);
3083-
3084-
if (TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
3085-
if (SDValue V = promoteToConstantPool(GV, DAG, PtrVT, dl))
3086-
return V;
3087-
30882977
if (isPositionIndependent()) {
30892978
bool UseGOT_PREL = !TM.shouldAssumeDSOLocal(*GV->getParent(), GV);
30902979

llvm/lib/Target/ARM/ARMMachineFunctionInfo.h

-13
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,6 @@ class ARMFunctionInfo : public MachineFunctionInfo {
121121
/// copies.
122122
bool IsSplitCSR;
123123

124-
/// Globals that have had their storage promoted into the constant pool.
125-
SmallVector<const GlobalVariable*,2> PromotedGlobals;
126-
127124
public:
128125
ARMFunctionInfo() :
129126
isThumb(false),
@@ -229,16 +226,6 @@ class ARMFunctionInfo : public MachineFunctionInfo {
229226
}
230227
return It;
231228
}
232-
233-
/// Indicate to the backend that \c GV has had its storage changed to inside
234-
/// a constant pool. This means it no longer needs to be emitted as a
235-
/// global variable.
236-
void markGlobalAsPromotedToConstantPool(const GlobalVariable *GV) {
237-
PromotedGlobals.push_back(GV);
238-
}
239-
ArrayRef<const GlobalVariable*> getGlobalsPromotedToConstantPool() {
240-
return PromotedGlobals;
241-
}
242229
};
243230
} // End llvm namespace
244231

llvm/test/CodeGen/ARM/constantpool-promote.ll

-109
This file was deleted.

0 commit comments

Comments
 (0)