| /freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 42 Phdr.p_type = Seg.Type; in writePhdr() 43 Phdr.p_flags = Seg.Flags; in writePhdr() 44 Phdr.p_offset = Seg.Offset; in writePhdr() 45 Phdr.p_vaddr = Seg.VAddr; in writePhdr() 46 Phdr.p_paddr = Seg.PAddr; in writePhdr() 48 Phdr.p_memsz = Seg.MemSize; in writePhdr() 49 Phdr.p_align = Seg.Align; in writePhdr() 1284 writePhdr(Seg); in writePhdrs() 1621 [](const Segment *Seg) { return Seg->PAddr == 0; })) in finalize() argument 1623 Seg->PAddr = Seg->VAddr; in finalize() [all …]
|
| H A D | Object.h | 213 void writePhdr(const Segment &Seg);
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | LiveInterval.cpp | 1129 LR->addSegmentToSet(Seg); in add() 1143 LastStart = Seg.start; in add() 1153 ReadI = WriteI = LR->find(Seg.start); in add() 1165 if (ReadI->end >= Seg.end) in add() 1168 Seg.start = ReadI->start; in add() 1174 Seg.end = std::max(Seg.end, ReadI->end); in add() 1180 Seg.start = Spills.back().start; in add() 1181 Seg.end = std::max(Spills.back().end, Seg.end); in add() 1193 *WriteI++ = Seg; in add() 1199 LR->segments.push_back(Seg); in add() [all …]
|
| H A D | LiveRegMatrix.cpp | 213 LiveRange::Segment Seg(Start, End, &valno); in checkInterference() local 215 LR.addSegment(Seg); in checkInterference()
|
| H A D | VirtRegMap.cpp | 334 for (const auto &Seg : LI) { in addMBBLiveIns() local 335 I = Indexes->advanceMBBIndex(I, Seg.start); in addMBBLiveIns() 336 for (; I != Indexes->MBBIndexEnd() && I->first < Seg.end; ++I) { in addMBBLiveIns()
|
| H A D | LiveRangeCalc.cpp | 316 LiveRange::Segment &Seg = *std::prev(UB); in isDefOnEntry() local 317 if (Seg.end > Begin) { in isDefOnEntry() 322 if (LR.isUndefIn(Undefs, Seg.end, End)) in isDefOnEntry()
|
| H A D | SplitKit.cpp | 1231 const LiveRange::Segment *Seg = LR.getSegmentContaining(Def); in removeDeadSegment() local 1232 if (Seg == nullptr) in removeDeadSegment() 1234 if (Seg->end != Def.getDeadSlot()) in removeDeadSegment() 1237 LR.removeSegment(*Seg, true); in removeDeadSegment()
|
| H A D | RegisterCoalescer.cpp | 1517 LiveRange::Segment *Seg = DstLI.getSegmentContaining(RegIndex); in eliminateUndefCopy() local 1518 assert(Seg != nullptr && "No segment for defining instruction"); in eliminateUndefCopy() 1519 if (VNInfo *V = DstLI.getVNInfoAt(Seg->end)) { in eliminateUndefCopy()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 173 const wasm::WasmDataSegment &Seg = Segment.Data; in printSectionHeaders() local 175 if (!Seg.Name.empty()) in printSectionHeaders() 176 W.printString("Name", Seg.Name); in printSectionHeaders() 177 W.printNumber("Size", static_cast<uint64_t>(Seg.Content.size())); in printSectionHeaders() 178 if (Seg.Offset.Opcode == wasm::WASM_OPCODE_I32_CONST) in printSectionHeaders() 179 W.printNumber("Offset", Seg.Offset.Value.Int32); in printSectionHeaders()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonExpandCondsets.cpp | 416 for (auto &Seg : Range) { in updateDeadsInRange() local 417 if (!Seg.start.isRegister()) in updateDeadsInRange() 419 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange() 422 PredDefs.push_back(Seg.start); in updateDeadsInRange() 470 for (auto &Seg : Range) { in updateDeadsInRange() local 471 if (!Seg.start.isRegister()) in updateDeadsInRange() 473 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange() 476 if (P.second && Seg.end.isDead()) { in updateDeadsInRange() 487 for (auto &Seg : Range) { in updateDeadsInRange() local 488 if (!Seg.start.isRegister() || !Range.liveAt(Seg.start.getPrevSlot())) in updateDeadsInRange() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | ShadowCallStack.cpp | 80 addSegmentedMem(const MachineInstrBuilder &MIB, MCPhysReg Seg, MCPhysReg Reg, in addSegmentedMem() argument 82 return MIB.addReg(Reg).addImm(1).addReg(0).addImm(Offset).addReg(Seg); in addSegmentedMem()
|
| H A D | X86MCInstLower.cpp | 389 MCOperand Seg = Inst.getOperand(AddrBase + X86::AddrSegmentReg); in SimplifyShortMoveForm() local 393 Inst.addOperand(Seg); in SimplifyShortMoveForm()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 1252 MachO::segment_command Seg = MachO->getSegmentLoadCommand(Command); in dumpSymbolNamesFromObject() local 1253 if (Seg.fileoff == 0 && Seg.filesize != 0) { in dumpSymbolNamesFromObject() 1254 BaseSegmentAddress = Seg.vmaddr; in dumpSymbolNamesFromObject() 1258 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Command); in dumpSymbolNamesFromObject() local 1259 if (Seg.fileoff == 0 && Seg.filesize != 0) { in dumpSymbolNamesFromObject() 1260 BaseSegmentAddress = Seg.vmaddr; in dumpSymbolNamesFromObject()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 408 for (unsigned J = 0; J < Seg.nsects; ++J) { in PrintIndirectSymbols() 436 for (unsigned J = 0; J < Seg.nsects; ++J) { in PrintIndirectSymbols() 749 for (unsigned J = 0; J < Seg.nsects; ++J) { in PrintRelocations() 770 for (unsigned J = 0; J < Seg.nsects; ++J) { in PrintRelocations() 2673 for (unsigned J = 0; J < Seg.nsects; ++J) { in GuessCstringPointer() 2694 for (unsigned J = 0; J < Seg.nsects; ++J) { in GuessCstringPointer() 2729 for (unsigned J = 0; J < Seg.nsects; ++J) { in GuessIndirectSymbol() 9825 if (Seg.fileoff == 0 && Seg.filesize != 0) { in printMachOExportsTrie() 9826 BaseSegmentAddress = Seg.vmaddr; in printMachOExportsTrie() 9831 if (Seg.fileoff == 0 && Seg.filesize != 0) { in printMachOExportsTrie() [all …]
|
| /freebsd-12.1/stand/i386/cdboot/ |
| H A D | cdboot.S | 563 edd_addr: .word 0x0,0x0 # Seg:Off
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | macintosh | 20 0 string Seg StuffIt Deluxe Segment (data) 222 >0 string Seg\ StuffIt segment
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.cpp | 1925 void AddSegment(const VMRange &Range, SectionSP Seg) { in AddSegment() argument 1926 Segments.insert(Range.GetRangeBase(), Range.GetRangeEnd(), std::move(Seg)); in AddSegment()
|
| /freebsd-12.1/contrib/ntp/ |
| H A D | NEWS | 2116 * [Bug 2969] Seg fault from ntpq/mrulist when looking at server with
|
| H A D | ChangeLog | 609 * [Bug 2969] Seg fault from ntpq/mrulist when looking at server with
|
| H A D | CommitLog | 16409 [Bug 2969] Seg fault from ntpq/mrulist when looking at server with lots of clients 16412 [Bug 2969] Seg fault from ntpq/mrulist when looking at server with lots of clients 16415 [Bug 2969] Seg fault from ntpq/mrulist when looking at server with lots of clients 16419 [Bug 2969] Seg fault from ntpq/mrulist when looking at server with lots of clients
|