33#define DEBUG_TYPE "hexagon-sdata"
39 cl::desc(
"The maximum size of an object in the sdata section"));
46 cl::desc(
"Allow static variables in .sdata"));
50 cl::desc(
"Trace global value placement"));
54 cl::desc(
"Emit hexagon jump tables in function section"));
58 cl::desc(
"Emit hexagon lookup tables in function section"));
63#define TRACE_TO(s, X) s << X
67 if (TraceGVPlacement) { \
68 TRACE_TO(errs(), X); \
74 if (TraceGVPlacement) { \
75 TRACE_TO(errs(), X); \
77 LLVM_DEBUG(TRACE_TO(dbgs(), X)); \
89 if (Sec ==
".sdata" || Sec ==
".sbss" || Sec ==
".scommon")
128 TRACE(
"[SelectSectionForGlobal] GO(" << GO->
getName() <<
") ");
137 << (Kind.isCommon() ?
"kind_common " :
"" )
138 << (Kind.isBSS() ?
"kind_bss " :
"" )
139 << (Kind.isBSSLocal() ?
"kind_bss_local " :
"" ));
145 return selectSectionForLookupTable(GO,
TM, Fn);
149 return selectSmallSectionForGlobal(GO, Kind,
TM);
151 if (Kind.isCommon()) {
159 TRACE(
"default_ELF_section\n");
166 TRACE(
"[getExplicitSectionGlobal] GO(" << GO->
getName() <<
") from("
174 << (Kind.isCommon() ?
"kind_common " :
"" )
175 << (Kind.isBSS() ?
"kind_bss " :
"" )
176 << (Kind.isBSSLocal() ?
"kind_bss_local " :
"" ));
180 if (Section.contains(
".access.text.group"))
183 if (Section.contains(
".access.data.group"))
189 return selectSmallSectionForGlobal(GO, Kind,
TM);
192 TRACE(
"default_ELF_section\n");
202 LLVM_DEBUG(
dbgs() <<
"Small-data allocation is disabled, but symbols "
203 "may have explicit section assignments...\n");
219 <<
", has section: " << GVar->
getSection() <<
'\n');
251 if (ST->isOpaque()) {
281 bool UsesLabelDifference,
const Function &
F)
const {
288unsigned HexagonTargetObjectFile::getSmallestAddressableSize(
const Type *Ty,
292 unsigned SmallestElement = 8;
296 switch (Ty->getTypeID()) {
300 unsigned AtomicSize = getSmallestAddressableSize(E, GV,
TM);
301 if (AtomicSize < SmallestElement)
302 SmallestElement = AtomicSize;
308 return getSmallestAddressableSize(ATy->getElementType(), GV,
TM);
313 return getSmallestAddressableSize(PTy->getElementType(), GV,
TM);
322 return DL.getTypeAllocSize(
const_cast<Type*
>(Ty));
342MCSection *HexagonTargetObjectFile::selectSmallSectionForGlobal(
345 unsigned Size = getSmallestAddressableSize(GTy, GO,
TM);
349 bool EmitUniquedSection =
TM.getDataSections();
351 TRACE(
"Small data. Size(" <<
Size <<
")");
353 if (
Kind.isBSS() ||
Kind.isBSSLocal()) {
361 TRACE(
" default sbss\n");
362 return SmallBSSSection;
365 StringRef
Prefix(
".sbss");
366 SmallString<128>
Name(Prefix);
369 if (EmitUniquedSection) {
373 TRACE(
" unique sbss(" << Name <<
")\n");
378 if (
Kind.isCommon()) {
387 TRACE(
" small COMMON (" << Name <<
")\n");
396 if (
Kind.isMergeableConst()) {
397 TRACE(
" const_object_as_data ");
405 TRACE(
" default sdata\n");
406 return SmallDataSection;
409 StringRef
Prefix(
".sdata");
410 SmallString<128>
Name(Prefix);
413 if (EmitUniquedSection) {
417 TRACE(
" unique sdata(" << Name <<
")\n");
422 TRACE(
"default ELF section\n");
433 for (
const auto *U : GO->
users()) {
438 auto *Bb =
I->getParent();
441 auto *UserFn = Bb->getParent();
444 else if (ReturnFn != UserFn)
450MCSection *HexagonTargetObjectFile::selectSectionForLookupTable(
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static cl::opt< bool > TraceGVPlacement("trace-gv-placement", cl::Hidden, cl::init(false), cl::desc("Trace global value placement"))
static cl::opt< bool > EmitJtInText("hexagon-emit-jt-text", cl::Hidden, cl::init(false), cl::desc("Emit hexagon jump tables in function section"))
static cl::opt< unsigned > SmallDataThreshold("hexagon-small-data-threshold", cl::init(8), cl::Hidden, cl::desc("The maximum size of an object in the sdata section"))
static cl::opt< bool > StaticsInSData("hexagon-statics-in-small-data", cl::Hidden, cl::desc("Allow static variables in .sdata"))
static const char * getSectionSuffixForSize(unsigned Size)
static cl::opt< bool > EmitLutInText("hexagon-emit-lut-text", cl::Hidden, cl::init(false), cl::desc("Emit hexagon lookup tables in function section"))
static cl::opt< bool > NoSmallDataSorting("mno-sort-sda", cl::init(false), cl::Hidden, cl::desc("Disable small data sections sorting"))
static bool isSmallDataSection(StringRef Sec)
Module.h This file contains the declarations for the Module class.
This file defines the SmallString class.
TypeSize getTypeAllocSize(Type *Ty) const
Returns the offset in bytes between successive objects of the specified type, including alignment pad...
StringRef getSection() const
Get the custom section of this global if it has one.
bool hasSection() const
Check if this global has a custom object file section.
bool hasExternalLinkage() const
bool hasLocalLinkage() const
bool hasPrivateLinkage() const
bool hasInternalLinkage() const
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this global belongs to.
bool hasCommonLinkage() const
Type * getValueType() const
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool shouldPutJumpTableInFunctionSection(bool UsesLabelDifference, const Function &F) const override
bool isSmallDataEnabled(const TargetMachine &TM) const
void Initialize(MCContext &Ctx, const TargetMachine &TM) override
This method must be called before any actual lowering is done.
bool isGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM) const
Return true if this global value should be placed into small data/bss section.
MCSection * SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const override
unsigned getSmallDataSize() const
MCSection * getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const override
Targets should implement this method to assign a section to globals with an explicit section specfied...
const Function * getLutUsedFunction(const GlobalObject *GO) const
Context object for machine code objects.
MCSectionELF * getELFSection(const Twine &Section, unsigned Type, unsigned Flags)
MCSection * BSSSection
Section that is default initialized to zero.
MCContext & getContext() const
Instances of this class represent a uniqued identifier for a section in the current translation unit.
SectionKind - This is a simple POD value that classifies the properties of a section.
static SectionKind getText()
static SectionKind getData()
StringRef - Represent a constant reference to a string, i.e.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
Class to represent struct types.
ArrayRef< Type * > elements() const
unsigned getNumElements() const
Random access to the elements.
void Initialize(MCContext &Ctx, const TargetMachine &TM) override
This method must be called before any actual lowering is done.
MCSection * SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const override
MCSection * getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const override
Targets should implement this method to assign a section to globals with an explicit section specfied...
Primary interface to the complete machine description for the target machine.
The instances of the Type class are immutable: once they are created, they are never changed.
@ X86_AMXTyID
AMX vectors (8192 bits, X86 specific)
@ TypedPointerTyID
Typed pointer used by some GPU targets.
@ HalfTyID
16-bit floating point type
@ TargetExtTyID
Target extension type.
@ VoidTyID
type with no size
@ ScalableVectorTyID
Scalable SIMD vector type.
@ FloatTyID
32-bit floating point type
@ IntegerTyID
Arbitrary bit width integers.
@ FixedVectorTyID
Fixed width SIMD vector type.
@ BFloatTyID
16-bit floating point type (7-bit significand)
@ DoubleTyID
64-bit floating point type
@ X86_FP80TyID
80-bit floating point type (X87)
@ PPC_FP128TyID
128-bit floating point type (two 64-bits, PowerPC)
@ FP128TyID
128-bit floating point type (112-bit significand)
iterator_range< user_iterator > users()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.