@@ -59,24 +59,12 @@ using namespace llvm;
59
59
STATISTIC(NumTailCalls, "Number of tail calls");
60
60
STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
61
61
STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
62
- STATISTIC(NumConstpoolPromoted,
63
- "Number of constants with their storage promoted into constant pools");
64
62
65
63
static cl::opt<bool>
66
64
ARMInterworking("arm-interworking", cl::Hidden,
67
65
cl::desc("Enable / disable ARM interworking (for debugging only)"),
68
66
cl::init(true));
69
67
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
-
80
68
namespace {
81
69
class ARMCCState : public CCState {
82
70
public:
@@ -2975,100 +2963,6 @@ ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
2975
2963
llvm_unreachable("bogus TLS model");
2976
2964
}
2977
2965
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
-
3072
2966
SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
3073
2967
SelectionDAG &DAG) const {
3074
2968
EVT PtrVT = getPointerTy(DAG.getDataLayout());
@@ -3080,11 +2974,6 @@ SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
3080
2974
bool IsRO =
3081
2975
(isa<GlobalVariable>(GV) && cast<GlobalVariable>(GV)->isConstant()) ||
3082
2976
isa<Function>(GV);
3083
-
3084
- if (TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
3085
- if (SDValue V = promoteToConstantPool(GV, DAG, PtrVT, dl))
3086
- return V;
3087
-
3088
2977
if (isPositionIndependent()) {
3089
2978
bool UseGOT_PREL = !TM.shouldAssumeDSOLocal(*GV->getParent(), GV);
3090
2979
0 commit comments