HomeSort by: relevance | last modified time | path
    Searched defs:Tables (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DisassemblerEmitter.cpp 31 /// The emitter produces the tables that the disassembler uses to translate
32 /// instructions. The emitter generates the following tables:
41 /// returned.) This allows considerable space savings in other tables.
42 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM,
52 /// occupy the same space in the decode tables. These conflicts are resolved as
56 /// (that is, the attributes specified for it in the LLVM tables specify
73 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are
75 /// (3) to fix the tables to reflect the actual context (for example, required
83 /// X86DisassemblerTables.h contains the interface for the instruction tables,
86 /// tables
    [all...]
X86DisassemblerTables.h 1 //===- X86DisassemblerTables.h - Disassembler tables ------------*- C++ -*-===//
10 // It contains the interface of the disassembler tables.
29 /// DisassemblerTables - Encapsulates all the decode tables being generated by
30 /// the table emitter. Contains functions to populate the tables as well as
35 /// The decoder tables. There is one for each opcode type:
44 std::unique_ptr<ContextDecision> Tables[8];
69 /// nnnn is the number of a table for looking up these values. The tables
70 /// are written separately so that tables consisting entirely of zeros will
104 /// stream and indent level for the UID tables generated by
107 /// @param o1 - The output stream to print the ID tables generated b
    [all...]
SearchableTableEmitter.cpp 1 //===- SearchableTableEmitter.cpp - Generate efficiently searchable tables -==//
10 // together with companion index tables and lookup functions (binary search,
655 // Emit tables in a deterministic order to avoid needless rebuilds.
656 SmallVector<std::unique_ptr<GenericTable>, 4> Tables;
730 Tables.emplace_back(std::move(Table));
749 // Translate legacy tables.
804 Tables.emplace_back(std::move(Table));
811 for (const auto &Table : Tables)
  /src/sys/external/bsd/acpica/dist/tables/
tbdata.c 73 * RETURN: TRUE if both tables are identical.
92 Status = AcpiTbAcquireTable (&AcpiGbl_RootTableList.Tables[TableIndex],
139 * tables, since the table is not fully mapped at this time.
174 * DESCRIPTION: Acquire an ACPI table. It can be used for tables not
494 * DESCRIPTION: Avoid installing duplicated tables. However table override and
516 /* Do not compare with unverified tables */
518 if (!(AcpiGbl_RootTableList.Tables[i].Flags & ACPI_TABLE_IS_VERIFIED))
537 * The assumption here is that the number of different tables that
542 * machines with many table load/unload operations), tables will
546 if (AcpiGbl_RootTableList.Tables[i].Flags
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 143 ArrayRef<wasm::WasmTable> tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
278 std::vector<wasm::WasmTable> Tables;
  /src/games/sail/
extern.h 226 struct Tables {
229 extern const struct Tables RigTable[11][6];
230 extern const struct Tables HullTable[11][6];
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 306 std::vector<Table> Tables;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 274 const uint8_t *Tables[] = {DecoderTable32, DecoderTableFallback32};
276 for (auto Table : Tables) {
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 322 void writeTableSection(ArrayRef<wasm::WasmTable> Tables);
895 void WasmObjectWriter::writeTableSection(ArrayRef<wasm::WasmTable> Tables) {
896 if (Tables.empty())
902 encodeULEB128(Tables.size(), W->OS);
903 for (const wasm::WasmTable &Table : Tables) {
1403 SmallVector<wasm::WasmTable, 1> Tables;
1627 Table.Index = NumTableImports + Tables.size();
1631 Tables.push_back(Table);
1859 writeTableSection(Tables);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp 124 void printCOFFLoadConfig(const T *Conf, LoadConfigTables &Tables);
787 LoadConfigTables Tables;
789 printCOFFLoadConfig(Obj->getLoadConfig64(), Tables);
791 printCOFFLoadConfig(Obj->getLoadConfig32(), Tables);
793 if (Tables.SEHTableVA) {
795 printRVATable(Tables.SEHTableVA, Tables.SEHTableCount, 4);
804 if (Tables.GuardFidTableVA) {
806 if (Tables.GuardFlags & uint32_t(coff_guard_flags::FidTableHasFlags))
807 printRVATable(Tables.GuardFidTableVA, Tables.GuardFidTableCount, 5
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 655 const DecodeTable Tables[] = {
662 for (auto Table : Tables) {
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 86 #define ACPI_MTX_TABLES 2 /* Data for ACPI tables */
234 ACPI_TABLE_DESC *Tables; /* Table descriptor array */
235 UINT32 CurrentTableCount; /* Tables currently in the array */
236 UINT32 MaxTableCount; /* Max tables array will hold */
248 /* List to manage incoming ACPI tables */

Completed in 48 milliseconds