Home
last modified time | relevance | path

Searched refs:GO (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp128 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
129 TRACE("[SelectSectionForGlobal] GO(" << GO->getName() << ") "); in SelectSectionForGlobal()
130 TRACE("input section(" << GO->getSection() << ") "); in SelectSectionForGlobal()
132 TRACE((GO->hasPrivateLinkage() ? "private_linkage " : "") in SelectSectionForGlobal()
133 << (GO->hasLocalLinkage() ? "local_linkage " : "") in SelectSectionForGlobal()
134 << (GO->hasInternalLinkage() ? "internal " : "") in SelectSectionForGlobal()
135 << (GO->hasExternalLinkage() ? "external " : "") in SelectSectionForGlobal()
136 << (GO->hasCommonLinkage() ? "common_linkage " : "") in SelectSectionForGlobal()
137 << (GO->hasCommonLinkage() ? "common " : "" ) in SelectSectionForGlobal()
144 if (EmitLutInText && GO->getName().startswith("switch.table")) { in SelectSectionForGlobal()
[all …]
DHexagonTargetObjectFile.h22 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
25 MCSection *getExplicitSectionGlobal(const GlobalObject *GO,
29 bool isGlobalInSmallSection(const GlobalObject *GO,
39 const Function *getLutUsedFunction(const GlobalObject *GO) const;
48 MCSection *selectSmallSectionForGlobal(const GlobalObject *GO,
52 MCSection *selectSectionForLookupTable(const GlobalObject *GO,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp128 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
129 TRACE("[SelectSectionForGlobal] GO(" << GO->getName() << ") "); in SelectSectionForGlobal()
130 TRACE("input section(" << GO->getSection() << ") "); in SelectSectionForGlobal()
132 TRACE((GO->hasPrivateLinkage() ? "private_linkage " : "") in SelectSectionForGlobal()
133 << (GO->hasLocalLinkage() ? "local_linkage " : "") in SelectSectionForGlobal()
134 << (GO->hasInternalLinkage() ? "internal " : "") in SelectSectionForGlobal()
135 << (GO->hasExternalLinkage() ? "external " : "") in SelectSectionForGlobal()
136 << (GO->hasCommonLinkage() ? "common_linkage " : "") in SelectSectionForGlobal()
137 << (GO->hasCommonLinkage() ? "common " : "" ) in SelectSectionForGlobal()
144 if (EmitLutInText && GO->getName().startswith("switch.table")) { in SelectSectionForGlobal()
[all …]
DHexagonTargetObjectFile.h21 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
24 MCSection *getExplicitSectionGlobal(const GlobalObject *GO,
28 bool isGlobalInSmallSection(const GlobalObject *GO,
38 const Function *getLutUsedFunction(const GlobalObject *GO) const;
47 MCSection *selectSmallSectionForGlobal(const GlobalObject *GO,
51 MCSection *selectSectionForLookupTable(const GlobalObject *GO,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp51 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSection() argument
52 if (GO == nullptr) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSection()
57 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage()) in isGlobalInSmallSection()
58 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection()
60 return isGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM)); in isGlobalInSmallSection()
65 bool LanaiTargetObjectFile::isGlobalInSmallSection(const GlobalObject *GO, in isGlobalInSmallSection() argument
68 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection()
75 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSectionImpl() argument
76 const auto *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSectionImpl()
103 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
[all …]
/external/llvm-project/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp50 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSection() argument
51 if (GO == nullptr) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSection()
56 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage()) in isGlobalInSmallSection()
57 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection()
59 return isGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM)); in isGlobalInSmallSection()
64 bool LanaiTargetObjectFile::isGlobalInSmallSection(const GlobalObject *GO, in isGlobalInSmallSection() argument
67 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection()
74 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSectionImpl() argument
75 const auto *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSectionImpl()
102 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
[all …]
/external/llvm-project/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp70 const GlobalObject *GO, const TargetMachine &TM) const { in IsGlobalInSmallSection() argument
74 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage()) in IsGlobalInSmallSection()
75 return IsGlobalInSmallSectionImpl(GO, TM); in IsGlobalInSmallSection()
77 return IsGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM)); in IsGlobalInSmallSection()
83 IsGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM, in IsGlobalInSmallSection() argument
85 return IsGlobalInSmallSectionImpl(GO, TM) && in IsGlobalInSmallSection()
94 IsGlobalInSmallSectionImpl(const GlobalObject *GO, in IsGlobalInSmallSectionImpl() argument
104 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in IsGlobalInSmallSectionImpl()
150 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
155 if (Kind.isBSS() && IsGlobalInSmallSection(GO, TM, Kind)) in SelectSectionForGlobal()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp71 const GlobalObject *GO, const TargetMachine &TM) const { in IsGlobalInSmallSection() argument
75 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage()) in IsGlobalInSmallSection()
76 return IsGlobalInSmallSectionImpl(GO, TM); in IsGlobalInSmallSection()
78 return IsGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM)); in IsGlobalInSmallSection()
84 IsGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM, in IsGlobalInSmallSection() argument
86 return IsGlobalInSmallSectionImpl(GO, TM) && in IsGlobalInSmallSection()
95 IsGlobalInSmallSectionImpl(const GlobalObject *GO, in IsGlobalInSmallSectionImpl() argument
105 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in IsGlobalInSmallSectionImpl()
151 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
156 if (Kind.isBSS() && IsGlobalInSmallSection(GO, TM, Kind)) in SelectSectionForGlobal()
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D124-preprocessing-numbers.c.expected30 123ef+GO
31 .23E3-GO
32 1.3e--GO
33 12.E-&GO
34 123p+OK+GO
35 .23P+OK;GO
36 1.3p-OK-GO
37 12.P-OK&GO
/external/llvm-project/llvm/lib/Target/
DTargetLoweringObjectFile.cpp154 SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalObject *GO, in getKindForGlobal() argument
156 assert(!GO->isDeclarationForLinker() && in getKindForGlobal()
160 if (isa<Function>(GO)) in getKindForGlobal()
164 if (isa<BasicBlock>(GO)) in getKindForGlobal()
168 const auto *GVar = cast<GlobalVariable>(GO); in getKindForGlobal()
262 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SectionForGlobal() argument
264 if (GO->hasSection()) in SectionForGlobal()
265 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal()
267 if (auto *GVar = dyn_cast<GlobalVariable>(GO)) { in SectionForGlobal()
273 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal()
[all …]
/external/libcap/go/
DMakefile41 $(GO) run mknames.go --header=$< --textdir=$(topdir)/doc/values | gofmt > $@ || rm -f $@
46 …GO111MODULE=off CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH="$(GOPATH)" $(GO) install $(IMPORT…
49 …GO111MODULE=off CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) install $(IMPORTDI…
54 …AGS_ALLOW)" CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(CGO_LDFLAGS)" GOPATH=$(GOPATH) $(GO) build $<
57 …ED="$(CGO_REQUIRED)" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) build -o $@ $<
65 …ED="$(CGO_REQUIRED)" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) build -o $@ $<
68 …ED="$(CGO_REQUIRED)" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) build -o $@ $<
71 GO111MODULE=off CGO_ENABLED=0 GOPATH=$(GOPATH) $(GO) build $<
74 …_ENABLED="$(CGO_REQUIRED)" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) build $<
76 …GO111MODULE=off CGO_ENABLED="1" CGO_LDFLAGS_ALLOW="$(CGO_LDFLAGS_ALLOW)" GOPATH=$(GOPATH) $(GO) bu…
[all …]
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp24 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
25 if (Kind.isReadOnly() && AMDGPU::isReadOnlySegment(GO) && in SelectSectionForGlobal()
29 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()
33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
35 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp24 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
25 if (Kind.isReadOnly() && AMDGPU::isReadOnlySegment(GO) && in SelectSectionForGlobal()
29 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()
33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
35 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
/external/llvm-project/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp538 static const MCSymbolELF *getLinkedToSymbol(const GlobalObject *GO, in getLinkedToSymbol() argument
540 MDNode *MD = GO->getMetadata(LLVMContext::MD_associated); in getLinkedToSymbol()
601 getELFSectionNameForGlobal(const GlobalObject *GO, SectionKind Kind, in getELFSectionNameForGlobal() argument
609 Align Alignment = GO->getParent()->getDataLayout().getPreferredAlign( in getELFSectionNameForGlobal()
610 cast<GlobalVariable>(GO)); in getELFSectionNameForGlobal()
622 if (const auto *F = dyn_cast<Function>(GO)) { in getELFSectionNameForGlobal()
631 TM.getNameWithPrefix(Name, GO, Mang, /*MayAlwaysUsePrivate*/true); in getELFSectionNameForGlobal()
650 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
651 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
656 const GlobalVariable *GV = dyn_cast<GlobalVariable>(GO); in getExplicitSectionGlobal()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMTargetObjectFile.cpp75 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument
77 if (const Function *F = dyn_cast<Function>(GO)) in isExecuteOnlyFunction()
84 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
86 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal()
89 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
93 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal()
98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
/external/llvm-project/llvm/lib/Target/ARM/
DARMTargetObjectFile.cpp75 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument
77 if (const Function *F = dyn_cast<Function>(GO)) in isExecuteOnlyFunction()
84 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
86 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal()
89 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
93 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal()
98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp515 static const MCSymbolELF *getAssociatedSymbol(const GlobalObject *GO, in getAssociatedSymbol() argument
517 MDNode *MD = GO->getMetadata(LLVMContext::MD_associated); in getAssociatedSymbol()
558 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
559 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
564 const GlobalVariable *GV = dyn_cast<GlobalVariable>(GO); in getExplicitSectionGlobal()
577 const Function *F = dyn_cast<Function>(GO); in getExplicitSectionGlobal()
587 if (const Comdat *C = getELFComdat(GO)) { in getExplicitSectionGlobal()
595 const MCSymbolELF *AssociatedSymbol = getAssociatedSymbol(GO, TM); in getExplicitSectionGlobal()
631 MCContext &Ctx, const GlobalObject *GO, SectionKind Kind, Mangler &Mang, in selectELFSectionForGlobal() argument
636 if (const Comdat *C = getELFComdat(GO)) { in selectELFSectionForGlobal()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTargetLoweringObjectFile.cpp143 SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalObject *GO, in getKindForGlobal() argument
145 assert(!GO->isDeclaration() && !GO->hasAvailableExternallyLinkage() && in getKindForGlobal()
149 if (isa<Function>(GO)) in getKindForGlobal()
153 const auto *GVar = cast<GlobalVariable>(GO); in getKindForGlobal()
247 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SectionForGlobal() argument
249 if (GO->hasSection()) in SectionForGlobal()
250 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal()
252 if (auto *GVar = dyn_cast<GlobalVariable>(GO)) { in SectionForGlobal()
258 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal()
262 if (auto *F = dyn_cast<Function>(GO)) { in SectionForGlobal()
[all …]
/external/llvm/lib/Transforms/Utils/
DFunctionImportUtils.cpp30 const GlobalObject *GO = GA->getBaseObject(); in doImportAsDefinition() local
31 if (!GO->hasLinkOnceODRLinkage()) in doImportAsDefinition()
34 GO, GlobalsToImport); in doImportAsDefinition()
205 auto *GO = dyn_cast_or_null<GlobalObject>(&GV); in processGlobalForThinLTO() local
206 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) { in processGlobalForThinLTO()
210 assert(GO->hasAvailableExternallyLinkage() && in processGlobalForThinLTO()
212 GO->setComdat(nullptr); in processGlobalForThinLTO()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLoweringObjectFileImpl.h59 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
62 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
107 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
110 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
147 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
150 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
191 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
194 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
221 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
233 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
[all …]
/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVTargetObjectFile.cpp39 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSection() argument
41 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSection()
75 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
77 if (Kind.isBSS() && isGlobalInSmallSection(GO, TM)) in SelectSectionForGlobal()
79 if (Kind.isData() && isGlobalInSmallSection(GO, TM)) in SelectSectionForGlobal()
83 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetObjectFile.cpp40 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSection() argument
42 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSection()
76 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
78 if (Kind.isBSS() && isGlobalInSmallSection(GO, TM)) in SelectSectionForGlobal()
80 if (Kind.isData() && isGlobalInSmallSection(GO, TM)) in SelectSectionForGlobal()
84 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DGlobals.cpp100 if (const GlobalObject *GO = GA->getBaseObject()) in getAlignment() local
101 return GO->getAlignment(); in getAlignment()
168 if (const GlobalObject *GO = GA->getBaseObject()) in getSection() local
169 return GO->getSection(); in getSection()
178 if (const GlobalObject *GO = GA->getBaseObject()) in getComdat() local
179 return const_cast<GlobalObject *>(GO)->getComdat(); in getComdat()
287 if (auto *GO = dyn_cast<GlobalObject>(this)) in getBaseObject() local
288 return GO; in getBaseObject()
295 auto *GO = dyn_cast<GlobalObject>(this); in isAbsoluteSymbolRef() local
296 if (!GO) in isAbsoluteSymbolRef()
[all …]
/external/llvm-project/llvm/include/llvm/CodeGen/
DTargetLoweringObjectFileImpl.h58 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
61 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
116 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
119 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
157 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
160 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
198 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
201 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
228 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
240 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRTargetObjectFile.cpp28 AVRTargetObjectFile::SelectSectionForGlobal(const GlobalObject *GO, in SelectSectionForGlobal() argument
33 if (AVR::isProgramMemoryAddress(GO) && !GO->hasSection()) in SelectSectionForGlobal()
37 return Base::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()

12345678910>>...12