Home
last modified time | relevance | path

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

1234567

/third_party/skia/third_party/externals/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,
/third_party/skia/third_party/externals/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 …]
DLanaiTargetObjectFile.h20 bool isGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM,
22 bool isGlobalInSmallSectionImpl(const GlobalObject *GO,
30 bool isGlobalInSmallSection(const GlobalObject *GO,
33 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
/third_party/skia/third_party/externals/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 …]
DMipsTargetObjectFile.h21 bool IsGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM,
23 bool IsGlobalInSmallSectionImpl(const GlobalObject *GO,
31 bool IsGlobalInSmallSection(const GlobalObject *GO,
34 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
/third_party/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
/third_party/skia/third_party/externals/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 …]
/third_party/skia/third_party/externals/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 …]
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/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()
/third_party/libphonenumber/resources/geocoding/pt/
D55.txt7487 55613084|Luziânia - GO
7574 55613432|Formosa - GO
7602 55613502|Luziânia - GO
7603 55613503|Planaltina - GO
7604 55613504|Cristalina - GO
7605 55613505|Luziânia - GO
7637 55613601|Luziânia - GO
7638 55613603|Luziânia - GO
7639 55613605|Cidade Ocidental - GO
7640 55613606|Santo Antônio do Descoberto - GO
[all …]
/third_party/libphonenumber/resources/geocoding/en/
D55.txt7489 55613084|Luziânia - GO
7576 55613432|Formosa - GO
7604 55613502|Luziânia - GO
7605 55613503|Planaltina - GO
7606 55613504|Cristalina - GO
7607 55613505|Luziânia - GO
7639 55613601|Luziânia - GO
7640 55613603|Luziânia - GO
7641 55613605|Cidade Ocidental - GO
7642 55613606|Santo Antônio do Descoberto - GO
[all …]
/third_party/skia/third_party/externals/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 …]
/third_party/skia/third_party/externals/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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionImportUtils.cpp286 auto *GO = dyn_cast<GlobalObject>(&GV); in processGlobalForThinLTO() local
287 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) { in processGlobalForThinLTO()
291 assert(GO->hasAvailableExternallyLinkage() && in processGlobalForThinLTO()
293 GO->setComdat(nullptr); in processGlobalForThinLTO()
308 for (auto &GO : M.global_objects()) in processGlobalsForThinLTO() local
309 if (auto *C = GO.getComdat()) { in processGlobalsForThinLTO()
312 GO.setComdat(Replacement->second); in processGlobalsForThinLTO()
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetLoweringObjectFile.h95 static SectionKind getKindForGlobal(const GlobalObject *GO,
101 MCSection *SectionForGlobal(const GlobalObject *GO, SectionKind Kind,
107 MCSection *SectionForGlobal(const GlobalObject *GO, in SectionForGlobal() argument
109 return SectionForGlobal(GO, getKindForGlobal(GO, TM), TM); in SectionForGlobal()
126 getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind,
216 virtual MCSection *SelectSectionForGlobal(const GlobalObject *GO,
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DThinLTOBitcodeWriter.cpp74 for (auto &GO : ExportM.global_objects()) in promoteInternals() local
75 if (auto *C = GO.getComdat()) { in promoteInternals()
78 GO.setComdat(Replacement->second); in promoteInternals()
121 for (GlobalObject &GO : M.global_objects()) { in promoteTypeIds()
123 GO.getMetadata(LLVMContext::MD_type, MDs); in promoteTypeIds()
125 GO.eraseMetadata(LLVMContext::MD_type); in promoteTypeIds()
129 GO.addMetadata(LLVMContext::MD_type, *MD); in promoteTypeIds()
132 GO.addMetadata( in promoteTypeIds()
229 auto HasTypeMetadata = [](const GlobalObject *GO) { in splitAndWriteThinLTOBitcode() argument
230 if (MDNode *MD = GO->getMetadata(LLVMContext::MD_associated)) in splitAndWriteThinLTOBitcode()
[all …]
DGlobalDCE.cpp193 if (auto GO = dyn_cast<GlobalObject>(&GV)) { in ScanVTables() local
194 GlobalObject::VCallVisibility TypeVis = GO->getVCallVisibility(); in ScanVTables()
310 for (GlobalObject &GO : M.global_objects()) { in run()
311 Changed |= RemoveUnusedGlobalValue(GO); in run()
315 if (!GO.isDeclaration()) in run()
316 if (!GO.isDiscardableIfUnused()) in run()
317 MarkLive(GO); in run()
319 UpdateGVDependencies(GO); in run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp98 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
99 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
109 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
111 bool UseCPRel = GO->hasLocalLinkage(); in SelectSectionForGlobal()
120 Type *ObjType = GO->getValueType(); in SelectSectionForGlobal()
121 auto &DL = GO->getParent()->getDataLayout(); in SelectSectionForGlobal()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DREADME-P2P68 to be used for some operations (mainly WPS activation in GO). This may
145 is requesting an already running GO to prepare for a new client. This is
148 out whether the peer device is operating as a GO and if so, use
149 join-a-group style PD instead of GO Negotiation style PD.
170 group where this device was the GO. The previously used parameters will
171 then be used if the local end becomes the GO in GO Negotiation (which
175 client. It skips the GO Negotiation part. This will send a Provision
176 Discovery Request message to the target GO before associating for WPS
180 device without actually starting GO Negotiation (i.e., the peer is
181 expected to initiate GO Negotiation). This is mainly for testing
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DREADME-P2P68 to be used for some operations (mainly WPS activation in GO). This may
145 is requesting an already running GO to prepare for a new client. This is
148 out whether the peer device is operating as a GO and if so, use
149 join-a-group style PD instead of GO Negotiation style PD.
170 group where this device was the GO. The previously used parameters will
171 then be used if the local end becomes the GO in GO Negotiation (which
175 client. It skips the GO Negotiation part. This will send a Provision
176 Discovery Request message to the target GO before associating for WPS
180 device without actually starting GO Negotiation (i.e., the peer is
181 expected to initiate GO Negotiation). This is mainly for testing
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCTargetObjectFile.cpp25 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
41 const auto *GVar = dyn_cast<GlobalVariable>(GO); in SelectSectionForGlobal()
47 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()

1234567