/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 129 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument 130 TRACE("[SelectSectionForGlobal] GO(" << GO->getName() << ") "); in SelectSectionForGlobal() 131 TRACE("input section(" << GO->getSection() << ") "); in SelectSectionForGlobal() 133 TRACE((GO->hasPrivateLinkage() ? "private_linkage " : "") in SelectSectionForGlobal() 134 << (GO->hasLocalLinkage() ? "local_linkage " : "") in SelectSectionForGlobal() 135 << (GO->hasInternalLinkage() ? "internal " : "") in SelectSectionForGlobal() 136 << (GO->hasExternalLinkage() ? "external " : "") in SelectSectionForGlobal() 137 << (GO->hasCommonLinkage() ? "common_linkage " : "") in SelectSectionForGlobal() 138 << (GO->hasCommonLinkage() ? "common " : "" ) in SelectSectionForGlobal() 145 if (EmitLutInText && GO->getName().startswith("switch.table")) { in SelectSectionForGlobal() [all …]
|
D | HexagonTargetObjectFile.h | 22 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-7.0/llvm/lib/Target/Lanai/ |
D | LanaiTargetObjectFile.cpp | 52 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSection() argument 53 if (GO == nullptr) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSection() 58 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage()) in isGlobalInSmallSection() 59 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection() 61 return isGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM)); in isGlobalInSmallSection() 66 bool LanaiTargetObjectFile::isGlobalInSmallSection(const GlobalObject *GO, in isGlobalInSmallSection() argument 69 return isGlobalInSmallSectionImpl(GO, TM); in isGlobalInSmallSection() 76 const GlobalObject *GO, const TargetMachine &TM) const { in isGlobalInSmallSectionImpl() argument 77 const auto *GVA = dyn_cast<GlobalVariable>(GO); in isGlobalInSmallSectionImpl() 104 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SelectSectionForGlobal() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsTargetObjectFile.cpp | 71 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/ |
D | 124-preprocessing-numbers.c.expected | 30 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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 336 static const MCSymbolELF *getAssociatedSymbol(const GlobalObject *GO, in getAssociatedSymbol() argument 338 MDNode *MD = GO->getMetadata(LLVMContext::MD_associated); in getAssociatedSymbol() 355 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument 356 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal() 361 const GlobalVariable *GV = dyn_cast<GlobalVariable>(GO); in getExplicitSectionGlobal() 372 const Function *F = dyn_cast<Function>(GO); in getExplicitSectionGlobal() 382 if (const Comdat *C = getELFComdat(GO)) { in getExplicitSectionGlobal() 390 const MCSymbolELF *AssociatedSymbol = getAssociatedSymbol(GO, TM); in getExplicitSectionGlobal() 450 MCContext &Ctx, const GlobalObject *GO, SectionKind Kind, Mangler &Mang, in selectELFSectionForGlobal() argument 455 if (const Comdat *C = getELFComdat(GO)) { in selectELFSectionForGlobal() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMTargetObjectFile.cpp | 64 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument 66 if (const Function *F = dyn_cast<Function>(GO)) in isExecuteOnlyFunction() 73 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument 75 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal() 78 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal() 82 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() argument 84 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal() 87 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ |
D | TargetLoweringObjectFile.cpp | 140 SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalObject *GO, in getKindForGlobal() argument 142 assert(!GO->isDeclaration() && !GO->hasAvailableExternallyLinkage() && in getKindForGlobal() 146 if (isa<Function>(GO)) in getKindForGlobal() 150 const auto *GVar = cast<GlobalVariable>(GO); in getKindForGlobal() 244 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const { in SectionForGlobal() argument 246 if (GO->hasSection()) in SectionForGlobal() 247 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal() 249 if (auto *GVar = dyn_cast<GlobalVariable>(GO)) { in SectionForGlobal() 254 return getExplicitSectionGlobal(GO, Kind, TM); in SectionForGlobal() 258 if (auto *F = dyn_cast<Function>(GO)) { in SectionForGlobal() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | FunctionImportUtils.cpp | 30 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-7.0/llvm/lib/IR/ |
D | Globals.cpp | 100 if (const GlobalObject *GO = GA->getBaseObject()) in getAlignment() local 101 return GO->getAlignment(); in getAlignment() 159 if (const GlobalObject *GO = GA->getBaseObject()) in getSection() local 160 return GO->getSection(); in getSection() 169 if (const GlobalObject *GO = GA->getBaseObject()) in getComdat() local 170 return const_cast<GlobalObject *>(GO)->getComdat(); in getComdat() 257 if (auto *GO = dyn_cast<GlobalObject>(this)) in getBaseObject() local 258 return GO; in getBaseObject() 265 auto *GO = dyn_cast<GlobalObject>(this); in isAbsoluteSymbolRef() local 266 if (!GO) in isAbsoluteSymbolRef() [all …]
|
/external/eigen/blas/testing/ |
D | zblat2.f | 203 GO TO 230 209 GO TO 230 216 GO TO 230 222 GO TO 230 229 GO TO 230 235 GO TO 230 242 GO TO 230 249 GO TO 230 278 $ GO TO 70 283 GO TO 50 [all …]
|
D | cblat2.f | 202 GO TO 230 208 GO TO 230 215 GO TO 230 221 GO TO 230 228 GO TO 230 234 GO TO 230 241 GO TO 230 248 GO TO 230 277 $ GO TO 70 282 GO TO 50 [all …]
|
D | sblat2.f | 197 GO TO 230 203 GO TO 230 210 GO TO 230 216 GO TO 230 223 GO TO 230 229 GO TO 230 236 GO TO 230 243 GO TO 230 272 $ GO TO 70 277 GO TO 50 [all …]
|
D | dblat2.f | 197 GO TO 230 203 GO TO 230 210 GO TO 230 216 GO TO 230 223 GO TO 230 229 GO TO 230 236 GO TO 230 243 GO TO 230 272 $ GO TO 70 277 GO TO 50 [all …]
|
/external/cblas/testing/ |
D | c_sblat2.f | 149 GO TO 230 155 GO TO 230 162 GO TO 230 168 GO TO 230 175 GO TO 230 181 GO TO 230 188 GO TO 230 195 GO TO 230 239 $ GO TO 70 244 GO TO 50 [all …]
|
D | c_dblat2.f | 149 GO TO 230 155 GO TO 230 162 GO TO 230 168 GO TO 230 175 GO TO 230 181 GO TO 230 188 GO TO 230 195 GO TO 230 239 $ GO TO 70 244 GO TO 50 [all …]
|
D | c_dblat3.f | 126 GO TO 220 132 GO TO 220 139 GO TO 220 146 GO TO 220 189 $ GO TO 50 194 GO TO 30 204 $ GO TO 80 206 GO TO 70 292 GO TO ( 140, 150, 160, 160, 170, 180 )ISNUM 306 GO TO 190 [all …]
|
D | c_sblat3.f | 125 GO TO 220 131 GO TO 220 138 GO TO 220 145 GO TO 220 188 $ GO TO 50 193 GO TO 30 203 $ GO TO 80 205 GO TO 70 291 GO TO ( 140, 150, 160, 160, 170, 180 )ISNUM 305 GO TO 190 [all …]
|
D | c_cblat2.f | 153 GO TO 230 159 GO TO 230 166 GO TO 230 172 GO TO 230 179 GO TO 230 185 GO TO 230 192 GO TO 230 199 GO TO 230 243 $ GO TO 70 248 GO TO 50 [all …]
|
D | c_zblat2.f | 154 GO TO 230 160 GO TO 230 167 GO TO 230 173 GO TO 230 180 GO TO 230 186 GO TO 230 193 GO TO 230 200 GO TO 230 243 $ GO TO 70 248 GO TO 50 [all …]
|
D | c_zblat3.f | 132 GO TO 220 138 GO TO 220 145 GO TO 220 152 GO TO 220 195 $ GO TO 50 200 GO TO 30 210 $ GO TO 80 212 GO TO 70 298 GO TO ( 140, 150, 150, 160, 160, 170, 170, 313 GO TO 190 [all …]
|
D | c_cblat3.f | 131 GO TO 220 137 GO TO 220 144 GO TO 220 151 GO TO 220 194 $ GO TO 50 199 GO TO 30 209 $ GO TO 80 211 GO TO 70 297 GO TO ( 140, 150, 150, 160, 160, 170, 170, 312 GO TO 190 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/ |
D | TargetLoweringObjectFile.h | 85 static SectionKind getKindForGlobal(const GlobalObject *GO, 91 MCSection *SectionForGlobal(const GlobalObject *GO, SectionKind Kind, 97 MCSection *SectionForGlobal(const GlobalObject *GO, in SectionForGlobal() argument 99 return SectionForGlobal(GO, getKindForGlobal(GO, TM), TM); in SectionForGlobal() 116 getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, 189 virtual MCSection *SelectSectionForGlobal(const GlobalObject *GO,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/ |
D | AVRTargetObjectFile.cpp | 29 AVRTargetObjectFile::SelectSectionForGlobal(const GlobalObject *GO, in SelectSectionForGlobal() argument 34 if (AVR::isProgramMemoryAddress(GO) && !GO->hasSection()) in SelectSectionForGlobal() 38 return Base::SelectSectionForGlobal(GO, Kind, TM); in SelectSectionForGlobal()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | TargetLoweringObjectFileImpl.h | 59 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, 62 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, 105 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, 108 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, 144 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, 147 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, 188 MCSection *getExplicitSectionGlobal(const GlobalObject *GO, SectionKind Kind, 191 MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
|