Searched defs:SectionName (Results 1 - 25 of 36) sorted by relevance

12

/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::MCSectionCOFF
40 : MCSection(SV_COFF, K), SectionName(Section),
52 StringRef getSectionName() const { return SectionName; }
H A DMCSectionELF.h27 /// SectionName - This is the name of the section. The referenced memory is
29 StringRef SectionName; member in class:llvm::MCSectionELF
49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
58 StringRef getSectionName() const { return SectionName; }
H A DMCSectionMachO.h26 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::MCSectionMachO
141 // SectionName is not necessarily null terminated!
142 if (SectionName[15])
143 return StringRef(SectionName, 16);
144 return StringRef(SectionName);
/external/llvm/include/llvm/MC/
H A DMCSectionMachO.h27 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::final
49 // SectionName is not necessarily null terminated!
50 if (SectionName[15])
51 return StringRef(SectionName, 16);
52 return StringRef(SectionName);
H A DMCSectionCOFF.h26 StringRef SectionName; member in class:llvm::final
55 : MCSection(SV_COFF, K, Begin), SectionName(Section),
69 StringRef getSectionName() const { return SectionName; }
H A DMCSectionELF.h33 StringRef SectionName; member in class:llvm::final
58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
65 void setSectionName(StringRef Name) { SectionName = Name; }
74 StringRef getSectionName() const { return SectionName; }
H A DMCContext.h183 std::string SectionName; member in struct:llvm::MCContext::ELFSectionKey
186 ELFSectionKey(StringRef SectionName, StringRef GroupName, argument
188 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {
191 if (SectionName != Other.SectionName)
192 return SectionName < Other.SectionName;
200 std::string SectionName; member in struct:llvm::MCContext::COFFSectionKey
204 COFFSectionKey(StringRef SectionName, StringRe argument
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp102 StringRef SectionName = GV->getSection(); local
104 bool IsCPRel = SectionName.startswith(".cp.");
107 return getContext().getELFSection(SectionName, getXCoreSectionType(Kind),
/external/autotest/site_utils/suite_scheduler/
H A Dbase_event.py25 def SectionName(keyword): function
93 section = SectionName(cls.KEYWORD)
/external/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp25 StringRef SectionName,
35 StringRef SectionName) {
22 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
32 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
H A DExecutionEngineBindings.cpp328 StringRef SectionName) override;
331 unsigned SectionID, StringRef SectionName,
361 StringRef SectionName) {
363 SectionName.str().c_str());
368 StringRef SectionName, bool isReadOnly) {
370 SectionName.str().c_str(),
359 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
366 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool isReadOnly) argument
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.cpp106 StringRef SectionName = local
111 SectionName, ELF::SHT_NOBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp177 StringRef SectionName = GV->getSection(); local
180 Kind = getELFKindForNamedSection(SectionName, Kind);
182 return getContext().getELFSection(SectionName,
183 getELFSectionType(SectionName, Kind),
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DELFAsmParser.cpp148 bool ParseSectionName(StringRef &SectionName);
221 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
228 SectionName = getTok().getIdentifier();
252 SectionName = StringRef(FirstLoc.getPointer(), Size);
331 StringRef SectionName; local
333 if (ParseSectionName(SectionName))
342 if (SectionName == ".fini" || SectionName == ".init" ||
343 SectionName == ".rodata")
345 if (SectionName
[all...]
H A DDarwinAsmParser.cpp412 StringRef SectionName; local
413 if (getParser().ParseIdentifier(SectionName))
420 std::string SectionSpec = SectionName;
/external/clang/lib/Sema/
H A DSemaAttr.cpp247 bool Sema::UnifySection(StringRef SectionName, argument
250 auto Section = Context.SectionInfos.find(SectionName);
252 Context.SectionInfos[SectionName] =
274 bool Sema::UnifySection(StringRef SectionName, argument
277 auto Section = Context.SectionInfos.find(SectionName);
289 Context.SectionInfos[SectionName] =
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp43 bool ParseSectionName(StringRef &SectionName);
314 bool COFFAsmParser::ParseSectionName(StringRef &SectionName) { argument
318 SectionName = getTok().getIdentifier();
338 StringRef SectionName; local
340 if (ParseSectionName(SectionName))
392 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type);
H A DELFAsmParser.cpp142 bool ParseSectionName(StringRef &SectionName);
220 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
227 SectionName = getTok().getIdentifier();
251 SectionName = StringRef(FirstLoc.getPointer(), Size);
362 StringRef SectionName; local
364 if (ParseSectionName(SectionName))
377 if (SectionName == ".fini" || SectionName == ".init" ||
378 SectionName == ".rodata")
380 if (SectionName
[all...]
H A DDarwinAsmParser.cpp588 StringRef SectionName; local
589 if (getParser().parseIdentifier(SectionName))
596 std::string SectionSpec = SectionName;
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp269 std::string SectionName = ".mips16.call.fp." + Name; local
283 FStub->setSection(SectionName);
460 std::string SectionName = ".mips16.fn." + Name; local
471 FStub->setSection(SectionName);
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp773 StringRef SectionName; local
775 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
778 if (SectionName.startswith(".pdata"))
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp210 StringRef SectionName = GV->getSection(); local
213 Kind = getELFKindForNamedSection(SectionName, Kind);
221 return getContext().getELFSection(SectionName,
222 getELFSectionType(SectionName, Kind), Flags,
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp268 StringRef SectionName = GV->getSection(); local
270 if (SectionName.endswith(getInstrProfCountersSectionName(
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp152 StringRef SectionName) override;
154 unsigned SectionID, StringRef SectionName,
219 StringRef SectionName) {
222 << Alignment << ", SectionName = " << SectionName << ")\n"; local
238 StringRef SectionName,
242 << Alignment << ", SectionName = " << SectionName << ")\n"; local
506 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); local
511 Checker.getSectionAddr(FileName, SectionName, tru
216 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
235 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp345 StringRef SectionName; local
346 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
364 FileName, SectionName, Symbol, PCtx.IsInsideLoad);
390 StringRef SectionName; local
391 std::tie(SectionName, RemainingExpr) = parseSymbol(RemainingExpr);
401 FileName, SectionName, PCtx.IsInsideLoad);
759 StringRef SectionName) const {
780 auto SectionInfoItr = SectionMapItr->second.find(SectionName);
783 ("Section '" + SectionName + "' not found in file '" +
790 StringRef FileName, StringRef SectionName, boo
789 getSectionAddr( StringRef FileName, StringRef SectionName, bool IsInsideLoad) const argument
812 getStubAddrFor( StringRef FileName, StringRef SectionName, StringRef SymbolName, bool IsInsideLoad) const argument
868 StringRef SectionName = Section.getName(); local
878 StringRef SectionName = Section.getName(); local
934 getSectionAddr(StringRef FileName, StringRef SectionName, bool LocalAddress) argument
[all...]

Completed in 568 milliseconds

12