Home
last modified time | relevance | path

Searched refs:segName (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbolTable.cpp356 auto [segName, sectName] = segSect.split('$'); in handleSectionBoundarySymbol()
368 if (ssec->segname == segName && ssec->name == sectName) { in handleSectionBoundarySymbol()
374 ConcatInputSection *isec = makeSyntheticInputSection(segName, sectName); in handleSectionBoundarySymbol()
394 static void handleSegmentBoundarySymbol(const Undefined &sym, StringRef segName, in handleSegmentBoundarySymbol() argument
396 OutputSegment *seg = getOrCreateOutputSegment(segName); in handleSegmentBoundarySymbol()
H A DDriver.cpp960 StringRef segName = arg->getValue(0); in parseSectAlign() local
975 sectAligns.push_back({segName, sectName, align}); in parseSectAlign()
1771 StringRef segName = arg->getValue(0); in link() local
1777 if (segName == segment_names::linkEdit) in link()
1779 config->segmentProtections.push_back({segName, maxProt, initProt}); in link()
1955 StringRef segName = arg->getValue(0); in link() local
1960 inputFiles.insert(make<OpaqueFile>(*buffer, segName, sectName)); in link()
1964 StringRef segName = arg->getValue(0); in link() local
1966 inputFiles.insert(make<OpaqueFile>(MemoryBufferRef(), segName, sectName)); in link()
H A DInputSection.cpp230 ConcatInputSection *macho::makeSyntheticInputSection(StringRef segName, in makeSyntheticInputSection() argument
236 *make<Section>(/*file=*/nullptr, segName, sectName, flags, /*addr=*/0); in makeSyntheticInputSection()
H A DOutputSegment.cpp67 if (sectAlign.segName == name && sectAlign.sectName == osec->name) in addOutputSection()
H A DConfig.h80 llvm::StringRef segName; member
H A DInputSection.h152 ConcatInputSection *makeSyntheticInputSection(StringRef segName,
H A DInputFiles.h211 OpaqueFile(MemoryBufferRef mb, StringRef segName, StringRef sectName);
H A DInputFiles.cpp939 OpaqueFile::OpaqueFile(MemoryBufferRef mb, StringRef segName, in OpaqueFile() argument
944 sections.push_back(make<Section>(/*file=*/this, segName.take_front(16), in OpaqueFile()