Home
last modified time | relevance | path

Searched +full:os +full:- +full:data +full:- +full:offset (Results 1 – 25 of 1024) sorted by relevance

12345678910>>...41

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFGdbIndex.cpp1 //===- DWARFGdbIndex.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 // https://sourceware.org/gdb/onlinedocs/gdb/Index-Section-Format.html
27 void DWARFGdbIndex::dumpCUList(raw_ostream &OS) const { in dumpCUList()
28 OS << format("\n CU list offset = 0x%x, has %" PRId64 " entries:", in dumpCUList()
33 OS << format(" %d: Offset = 0x%llx, Length = 0x%llx\n", I++, CU.Offset, in dumpCUList()
37 void DWARFGdbIndex::dumpTUList(raw_ostream &OS) const { in dumpTUList()
38 OS << formatv("\n Types CU list offset = {0:x}, has {1} entries:\n", in dumpTUList()
42 OS << formatv(" {0}: offset = {1:x8}, type_offset = {2:x8}, " in dumpTUList()
[all …]
H A DDWARFDebugFrame.cpp1 //===- DWARFDebugFrame.h - Parsing of .debug_frame ------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
31 static void printRegister(raw_ostream &OS, DIDumpOptions DumpOpts, in printRegister() argument
36 OS << RegName; in printRegister()
40 OS << "reg" << RegNum; in printRegister()
53 UnwindLocation UnwindLocation::createIsCFAPlusOffset(int32_t Offset) { in createIsCFAPlusOffset() argument
54 return {CFAPlusOffset, InvalidRegisterNumber, Offset, std::nullopt, false}; in createIsCFAPlusOffset()
57 UnwindLocation UnwindLocation::createAtCFAPlusOffset(int32_t Offset) { in createAtCFAPlusOffset() argument
58 return {CFAPlusOffset, InvalidRegisterNumber, Offset, std::nullopt, true}; in createAtCFAPlusOffset()
[all …]
H A DDWARFDebugMacro.cpp1 //===- DWARFDebugMacro.cpp ------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
31 void DWARFDebugMacro::MacroHeader::dumpMacroHeader(raw_ostream &OS) const { in dumpMacroHeader()
33 OS << format("macro header: version = 0x%04" PRIx16, Version) in dumpMacroHeader()
37 OS << format(", debug_line_offset = 0x%0*" PRIx64, 2 * getOffsetByteSize(), in dumpMacroHeader()
39 OS << "\n"; in dumpMacroHeader()
42 void DWARFDebugMacro::dump(raw_ostream &OS) const { in dump()
45 OS << format("0x%08" PRIx64 ":\n", Macros.Offset); in dump()
47 Macros.Header.dumpMacroHeader(OS); in dump()
[all …]
H A DDWARFDebugLoc.cpp1 //===- DWARFDebugLoc.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
71 DWARFAddressRange{LowPC->Address, HighPC->Address, LowPC->SectionIndex}, in Interpret()
78 return DWARFLocationExpression{DWARFAddressRange{LowPC->Address, in Interpret()
79 LowPC->Address + E.Value1, in Interpret()
80 LowPC->SectionIndex}, in Interpret()
86 "Unable to resolve location list offset pair: " in Interpret()
89 DWARFAddressRange Range{Base->Address + E.Value0, Base->Address + E.Value1, in Interpret()
90 Base->SectionIndex}; in Interpret()
[all …]
H A DDWARFExpression.cpp1 //===-- DWARFExpression.cpp -----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
141 bool DWARFExpression::Operation::extract(DataExtractor Data, in extract() argument
142 uint8_t AddressSize, uint64_t Offset, in extract() argument
144 EndOffset = Offset; in extract()
145 Opcode = Data.getU8(&Offset); in extract()
160 Operands[Operand] = Data.getULEB128(&Offset); in extract()
168 Operands[Operand] = Data.getU8(&Offset); in extract()
173 Operands[Operand] = Data.getU16(&Offset); in extract()
[all …]
H A DDWARFDebugPubTable.cpp1 //===- DWARFDebugPubTable.cpp ---------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 DWARFDataExtractor Data, bool GnuStyle, in extract() argument
25 this->GnuStyle = GnuStyle; in extract()
27 uint64_t Offset = 0; in extract() local
28 while (Data.isValidOffset(Offset)) { in extract()
29 uint64_t SetOffset = Offset; in extract()
33 DataExtractor::Cursor C(Offset); in extract()
34 std::tie(NewSet.Length, NewSet.Format) = Data.getInitialLength(C); in extract()
[all …]
H A DDWARFDebugArangeSet.cpp1 //===- DWARFDebugArangeSet.cpp --------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 void DWARFDebugArangeSet::Descriptor::dump(raw_ostream &OS, in dump() argument
25 OS << '['; in dump()
26 DWARFFormValue::dumpAddress(OS, AddressSize, Address); in dump()
27 OS << ", "; in dump()
28 DWARFFormValue::dumpAddress(OS, AddressSize, getEndAddress()); in dump()
29 OS << ')'; in dump()
33 Offset = -1ULL; in clear()
[all …]
H A DDWARFDebugAddr.cpp1 //===- DWARFDebugAddr.cpp -------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
16 Error DWARFDebugAddrTable::extractAddresses(const DWARFDataExtractor &Data, in extractAddresses() argument
20 uint64_t DataSize = EndOffset - *OffsetPtr; in extractAddresses()
21 assert(Data.isValidOffsetForDataOfSize(*OffsetPtr, DataSize)); in extractAddresses()
23 AddrSize, errc::not_supported, "address table at offset 0x%" PRIx64, in extractAddresses()
24 Offset)) in extractAddresses()
29 "address table at offset 0x%" PRIx64 in extractAddresses()
30 " contains data of size 0x%" PRIx64 in extractAddresses()
[all …]
H A DDWARFDie.cpp1 //===- DWARFDie.cpp -------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
40 static void dumpApplePropertyAttribute(raw_ostream &OS, uint64_t Val) { in dumpApplePropertyAttribute() argument
41 OS << " ("; in dumpApplePropertyAttribute()
48 OS << PropName; in dumpApplePropertyAttribute()
50 OS << format("DW_APPLE_PROPERTY_0x%" PRIx64, Bit); in dumpApplePropertyAttribute()
53 OS << ", "; in dumpApplePropertyAttribute()
55 OS << ")"; in dumpApplePropertyAttribute()
58 static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS, in dumpRanges() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp1 //===- lib/MC/AArch64ELFStreamer.cpp - ELF Object Output for AArch64 ------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // regions of data and code.
13 //===----------------------------------------------------------------------===//
48 formatted_raw_ostream &OS; member in __anoneb8230060111::AArch64TargetAsmStreamer
53 OS << "\t.variant_pcs\t" << Symbol->getName() << "\n"; in emitDirectiveVariantPCS()
57 OS << "\t.seh_stackalloc\t" << Size << "\n"; in emitARM64WinCFIAllocStack()
59 void emitARM64WinCFISaveR19R20X(int Offset) override { in emitARM64WinCFISaveR19R20X() argument
60 OS << "\t.seh_save_r19r20_x\t" << Offset << "\n"; in emitARM64WinCFISaveR19R20X()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DHeader.cpp1 //===- Header.cpp -----------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const Header &H) { in operator <<() argument
24 OS << "Header:\n"; in operator <<()
25 OS << " Magic = " << HEX32(H.Magic) << "\n"; in operator <<()
26 OS << " Version = " << HEX16(H.Version) << '\n'; in operator <<()
27 OS << " AddrOffSize = " << HEX8(H.AddrOffSize) << '\n'; in operator <<()
28 OS << " UUIDSize = " << HEX8(H.UUIDSize) << '\n'; in operator <<()
29 OS << " BaseAddress = " << HEX64(H.BaseAddress) << '\n'; in operator <<()
[all …]
H A DGsymReader.cpp1 //===- GsymReader.cpp ---------
90 DataExtractor Data(MemBuffer->getBuffer(), DataIsLittleEndian, 4); parse() local
138 DataExtractor Data(MemBuffer->getBuffer(), DataIsLittleEndian, 4); parse() local
141 uint64_t Offset = alignTo(sizeof(Header), Hdr->AddrOffSize); parse() local
264 DataExtractor Data(MemBuffer->getBuffer().substr(AddrInfoOffset), Endian, 4); getFunctionInfo() local
286 DataExtractor Data(MemBuffer->getBuffer().substr(AddrInfoOffset), Endian, 4); lookup() local
294 dump(raw_ostream & OS) dump() argument
349 dump(raw_ostream & OS,const FunctionInfo & FI) dump() argument
357 dump(raw_ostream & OS,const LineTable & LT) dump() argument
367 dump(raw_ostream & OS,const InlineInfo & II,uint32_t Indent) dump() argument
385 dump(raw_ostream & OS,std::optional<FileEntry> FE) dump() argument
[all...]
H A DExtractRanges.cpp1 //===- ExtractRanges.cpp ----------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
20 O.writeULEB(Range.start() - BaseAddr); in encodeRange()
24 AddressRange decodeRange(DataExtractor &Data, uint64_t BaseAddr, in decodeRange() argument
25 uint64_t &Offset) { in decodeRange() argument
26 const uint64_t AddrOffset = Data.getULEB128(&Offset); in decodeRange()
27 const uint64_t Size = Data.getULEB128(&Offset); in decodeRange()
42 void decodeRanges(AddressRanges &Ranges, DataExtractor &Data, uint64_t BaseAddr, in decodeRanges() argument
43 uint64_t &Offset) { in decodeRanges() argument
[all …]
H A DFileWriter.cpp1 //===- FileWriter.cpp -------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
17 FileWriter::~FileWriter() { OS.flush(); } in ~FileWriter()
23 OS.write(reinterpret_cast<const char *>(Bytes), Length); in writeSLEB()
30 OS.write(reinterpret_cast<const char *>(Bytes), Length); in writeULEB()
34 OS.write(reinterpret_cast<const char *>(&U), sizeof(U)); in writeU8()
39 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU16()
44 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU32()
49 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU64()
[all …]
H A DInlineInfo.cpp1 //===- InlineInfo.cpp ---------
21 operator <<(raw_ostream & OS,const InlineInfo & II) operator <<() argument
77 skip(DataExtractor & Data,uint64_t & Offset,bool SkippedRanges) skip() argument
109 lookup(const GsymReader & GR,DataExtractor & Data,uint64_t & Offset,uint64_t BaseAddr,uint64_t Addr,SourceLocations & SrcLocs,llvm::Error & Err) lookup() argument
160 lookup(const GsymReader & GR,DataExtractor & Data,uint64_t BaseAddr,uint64_t Addr,SourceLocations & SrcLocs) lookup() argument
164 uint64_t Offset = 0; lookup() local
180 decode(DataExtractor & Data,uint64_t & Offset,uint64_t BaseAddr) decode() argument
223 decode(DataExtractor & Data,uint64_t BaseAddr) decode() argument
225 uint64_t Offset = 0; decode() local
[all...]
/freebsd/sys/contrib/device-tree/Bindings/gpu/host1x/
H A Dnvidia,tegra234-nvdec.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/gpu/host1x/nvidia,tegra234-nvdec.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
15 - Thierry Reding <treding@gmail.com>
16 - Mikko Perttunen <mperttunen@nvidia.com>
20 pattern: "^nvdec@[0-9a-f]*$"
24 - nvidia,tegra234-nvdec
32 clock-names:
34 - const: nvdec
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp1 //===- yaml2macho - Convert YAML to a Mach object file --------
77 writeMachO(raw_ostream & OS) writeMachO() argument
89 writeHeader(raw_ostream & OS) writeHeader() argument
125 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
132 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
148 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
162 writePayloadString(MachOYAML::LoadCommand & LC,raw_ostream & OS) writePayloadString() argument
173 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
180 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
187 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
194 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
200 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
206 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
212 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
218 writeLoadCommandData(MachOYAML::LoadCommand & LC,raw_ostream & OS,bool IsLittleEndian) writeLoadCommandData() argument
231 ZeroFillBytes(raw_ostream & OS,size_t Size) ZeroFillBytes() argument
236 Fill(raw_ostream & OS,size_t Size,uint32_t Data) Fill() argument
241 ZeroToOffset(raw_ostream & OS,size_t Offset) ZeroToOffset() argument
247 writeLoadCommands(raw_ostream & OS) writeLoadCommands() argument
250 llvm::MachO::macho_load_command Data = LC.Data; writeLoadCommands() local
296 writeSectionData(raw_ostream & OS) writeSectionData() argument
403 writeRelocations(raw_ostream & OS) writeRelocations() argument
427 writeBindOpcodes(raw_ostream & OS,std::vector<MachOYAML::BindOpcode> & BindOpcodes) writeBindOpcodes() argument
432 for (auto Data : Opcode.ULEBExtraData) { writeBindOpcodes() local
435 for (auto Data : Opcode.SLEBExtraData) { writeBindOpcodes() local
445 dumpExportEntry(raw_ostream & OS,MachOYAML::ExportEntry & Entry) dumpExportEntry() argument
470 writeExportTrie(raw_ostream & OS) writeExportTrie() argument
475 writeNListEntry(MachOYAML::NListEntry & NLE,raw_ostream & OS,bool IsLittleEndian) writeNListEntry() argument
489 writeLinkEditData(raw_ostream & OS) writeLinkEditData() argument
559 writeRebaseOpcodes(raw_ostream & OS) writeRebaseOpcodes() argument
565 for (auto Data : Opcode.ExtraData) writeRebaseOpcodes() local
570 writeBasicBindOpcodes(raw_ostream & OS) writeBasicBindOpcodes() argument
574 writeWeakBindOpcodes(raw_ostream & OS) writeWeakBindOpcodes() argument
578 writeLazyBindOpcodes(raw_ostream & OS) writeLazyBindOpcodes() argument
582 writeNameList(raw_ostream & OS) writeNameList() argument
591 writeStringTable(raw_ostream & OS) writeStringTable() argument
598 writeDynamicSymbolTable(raw_ostream & OS) writeDynamicSymbolTable() argument
599 for (auto Data : Obj.LinkEdit.IndirectSymbols) writeDynamicSymbolTable() local
604 writeFunctionStarts(raw_ostream & OS) writeFunctionStarts() argument
615 writeDataInCode(raw_ostream & OS) writeDataInCode() argument
625 writeChainedFixups(raw_ostream & OS) writeChainedFixups() argument
631 writeDyldExportsTrie(raw_ostream & OS) writeDyldExportsTrie() argument
652 writeMachO(raw_ostream & OS) writeMachO() argument
681 writeFatHeader(raw_ostream & OS) writeFatHeader() argument
703 writeFatArch(MachOYAML::FatArch & LC,raw_ostream & OS) writeFatArch() argument
706 writeFatArch(MachOYAML::FatArch & Arch,raw_ostream & OS) writeFatArch() argument
715 writeFatArch(MachOYAML::FatArch & Arch,raw_ostream & OS) writeFatArch() argument
724 writeFatArchs(raw_ostream & OS) writeFatArchs() argument
735 ZeroToOffset(raw_ostream & OS,size_t Offset) ZeroToOffset() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp1 //===- LinePrinter.cpp ------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
58 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0), UseColor(UseColor), in LinePrinter()
84 CurrentIndent = std::max<int>(0, CurrentIndent - Amount); in Unindent()
88 OS << "\n"; in NewLine()
89 OS.indent(CurrentIndent); in NewLine()
92 void LinePrinter::print(const Twine &T) { OS << T; } in print()
96 OS << T; in printLine()
107 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1 //===- lib/MC/MCAsmStreamer.cpp - Text Assembly Output ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
48 formatted_raw_ostream &OS; member in __anon0673dc030111::MCAsmStreamer
63 void PrintQuotedString(StringRef Data, raw_ostream &OS) const;
69 raw_svector_ostream &OS) const;
74 MCAsmStreamer(MCContext &Context, std::unique_ptr<formatted_raw_ostream> os, in MCAsmStreamer() argument
77 : MCStreamer(Context), OSOwner(std::move(os)), OS(*OSOwner), in MCAsmStreamer()
81 (asmbackend) ? asmbackend->createObjectWriter(NullStream) in MCAsmStreamer()
85 if (Assembler->getBackendPtr()) in MCAsmStreamer()
[all …]
H A DWasmObjectWriter.cpp1 //===- lib/MC/WasmObjectWriter.cpp - Wasm File Writer ---------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
16 #include "llvm/Config/llvm-config.h"
57 // A wasm data segment. A wasm binary contains only a single data section
59 // in memory. Each MCSection data created by llvm is modeled as its own
60 // wasm data segment.
65 uint64_t Offset; member
68 SmallVector<char, 4> Data; member
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1 //===-- ARMWinEHPrinter.cpp - Windows on ARM EH Data Printer ----*- C++ -*
75 operator <<(raw_ostream & OS,const ARM::WinEH::ReturnType & RT) operator <<() argument
95 formatSymbol(StringRef Name,uint64_t Address,uint64_t Offset=0) formatSymbol() argument
97 raw_string_ostream OS(Buffer); formatSymbol() local
178 printRange(raw_ostream & OS,ListSeparator & LS,unsigned First,unsigned Last,char Letter) printRange() argument
186 printRange(raw_ostream & OS,uint32_t Mask,ListSeparator & LS,unsigned Start,unsigned End,char Letter) printRange() argument
254 getRelocatedSymbol(const COFFObjectFile &,const SectionRef & Section,uint64_t Offset) getRelocatedSymbol() argument
277 uint32_t Offset = CoffSym.getValue() + SymbolOffset - CS.getValue(); getPreferredSymbol() local
305 llvm::raw_string_ostream OS(Buf); getSymbolForLocation() local
327 opcode_0xxxxxxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_0xxxxxxx() argument
338 opcode_10Lxxxxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_10Lxxxxx() argument
357 opcode_1100xxxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_1100xxxx() argument
369 opcode_11010Lxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11010Lxx() argument
386 opcode_11011Lxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11011Lxx() argument
403 opcode_11100xxx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11100xxx() argument
417 opcode_111010xx(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_111010xx() argument
430 opcode_1110110L(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_1110110L() argument
444 opcode_11101110(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11101110() argument
460 opcode_11101111(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11101111() argument
478 opcode_11110101(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11110101() argument
493 opcode_11110110(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11110110() argument
508 opcode_11110111(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11110111() argument
521 opcode_11111000(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111000() argument
536 opcode_11111001(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111001() argument
549 opcode_11111010(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111010() argument
564 opcode_11111011(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111011() argument
571 opcode_11111100(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111100() argument
578 opcode_11111101(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111101() argument
585 opcode_11111110(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111110() argument
592 opcode_11111111(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_11111111() argument
599 opcode_alloc_s(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_alloc_s() argument
609 opcode_save_r19r20_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_r19r20_x() argument
622 opcode_save_fplr(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_fplr() argument
632 opcode_save_fplr_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_fplr_x() argument
645 opcode_alloc_m(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_alloc_m() argument
658 opcode_save_regp(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_regp() argument
673 opcode_save_regp_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_regp_x() argument
694 opcode_save_reg(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_reg() argument
709 opcode_save_reg_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_reg_x() argument
726 opcode_save_lrpair(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_lrpair() argument
742 opcode_save_fregp(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_fregp() argument
757 opcode_save_fregp_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_fregp_x() argument
776 opcode_save_freg(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_freg() argument
791 opcode_save_freg_x(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_freg_x() argument
807 opcode_alloc_l(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_alloc_l() argument
820 opcode_setfp(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_setfp() argument
829 opcode_addfp(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_addfp() argument
841 opcode_nop(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_nop() argument
848 opcode_end(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_end() argument
855 opcode_end_c(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_end_c() argument
862 opcode_save_next(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_next() argument
873 opcode_save_any_reg(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_save_any_reg() argument
950 opcode_trap_frame(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_trap_frame() argument
957 opcode_machine_frame(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_machine_frame() argument
965 opcode_context(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_context() argument
972 opcode_clear_unwound_to_call(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_clear_unwound_to_call() argument
980 opcode_pac_sign_lr(const uint8_t * OC,unsigned & Offset,unsigned Length,bool Prologue) opcode_pac_sign_lr() argument
990 decodeOpcodes(ArrayRef<uint8_t> Opcodes,unsigned Offset,bool Prologue) decodeOpcodes() argument
1028 uint64_t Offset = VA - SectionVA; dumpXDataRecord() local
1029 const ulittle32_t *Data = dumpXDataRecord() local
1118 llvm::raw_string_ostream OS(Buf); dumpXDataRecord() local
1132 dumpUnpackedEntry(const COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunction & RF) dumpUnpackedEntry() argument
1157 llvm::raw_string_ostream OS(Buf); dumpUnpackedEntry() local
1171 llvm::raw_string_ostream OS(Buf); dumpUnpackedEntry() local
1200 dumpPackedEntry(const object::COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunction & RF) dumpPackedEntry() argument
1216 llvm::raw_string_ostream OS(Buf); dumpPackedEntry() local
1298 dumpPackedARM64Entry(const object::COFFObjectFile & COFF,const SectionRef Section,uint64_t Offset,unsigned Index,const RuntimeFunctionARM64 & RF) dumpPackedARM64Entry() argument
1315 llvm::raw_string_ostream OS(Buf); dumpPackedARM64Entry() local
1433 uint64_t Offset = PDataEntrySize * Index; dumpProcedureDataEntry() local
1434 const ulittle32_t *Data = dumpProcedureDataEntry() local
[all...]
/freebsd/sys/contrib/openzfs/include/sys/
H A Ddmu.h9 * or https://opensource.org/licenses/CDDL-1.0.
97 * Allocating a new byteswap type number makes the on-disk format
100 * Data can usually be structured to work with one of the
112 * Defines a uint8_t object type. Object types specify if the data
113 * in the object is metadata (boolean) and how to byteswap the data
162 * have their data embedded (i.e. use a BP_IS_EMBEDDED() bp), because bp_fill
237 * Do not allocate new object types here. Doing so makes the on-disk
307 #define DMU_USERUSED_OBJECT (-1ULL)
308 #define DMU_GROUPUSED_OBJECT (-2ULL)
309 #define DMU_PROJECTUSED_OBJECT (-3ULL)
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp1 //===-- APINotesWriter.cpp - API Notes Writer -------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
38 /// Information about contexts (Objective-C classes or protocols or C++
56 /// Information about Objective-C properties.
65 /// Information about Objective-C methods.
127 return Known->second; in getIdentifier()
131 return Known->second; in getIdentifier()
146 return Known->second; in getSelector()
150 return Known->second; in getSelector()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu.c9 * or https://opensource.org/licenses/CDDL-1.0.
175 dmu_buf_hold_noread_by_dnode(dnode_t *dn, uint64_t offset, in dmu_buf_hold_noread_by_dnode() argument
181 rw_enter(&dn->dn_struct_rwlock, RW_READER); in dmu_buf_hold_noread_by_dnode()
182 blkid = dbuf_whichblock(dn, 0, offset); in dmu_buf_hold_noread_by_dnode()
184 rw_exit(&dn->dn_struct_rwlock); in dmu_buf_hold_noread_by_dnode()
191 *dbp = &db->db; in dmu_buf_hold_noread_by_dnode()
196 dmu_buf_hold_noread(objset_t *os, uint64_t object, uint64_t offset, in dmu_buf_hold_noread() argument
204 err = dnode_hold(os, object, FTAG, &dn); in dmu_buf_hold_noread()
207 rw_enter(&dn->dn_struct_rwlock, RW_READER); in dmu_buf_hold_noread()
208 blkid = dbuf_whichblock(dn, 0, offset); in dmu_buf_hold_noread()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DStringTable.h1 //===- StringTable.h --------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
20 /// string at offset zero. Strings must be UTF8 NULL terminated strings.
22 StringRef Data; member
24 StringTable(StringRef D) : Data(D) {} in StringTable()
25 StringRef operator[](size_t Offset) const { return getString(Offset); }
26 StringRef getString(uint32_t Offset) const { in getString()
27 if (Offset < Data.size()) { in getString()
28 auto End = Data.find('\0', Offset); in getString()
[all …]

12345678910>>...41