HomeSort by relevance Sort by last modified time
    Searched full:coff (Results 26 - 50 of 617) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/Object/Inputs/
archive-test.a-coff-i386 5 trivial-object-test.coff-i386/0 1317070755 100666 346 `
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 13 #include "llvm/Object/COFF.h"
23 coff enumerator in enum:__anon24149::ObjectFileType
29 cl::values(clEnumVal(coff, "process COFF object files"), clEnumValEnd));
50 errs() << "Error: " << ec.message() << " dumping COFF file\n";
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 498 // COFF
501 COFF::IMAGE_SCN_CNT_CODE |
502 COFF::IMAGE_SCN_MEM_EXECUTE |
503 COFF::IMAGE_SCN_MEM_READ,
507 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
508 COFF::IMAGE_SCN_MEM_READ |
509 COFF::IMAGE_SCN_MEM_WRITE,
513 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
514 COFF::IMAGE_SCN_MEM_READ,
519 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA
    [all...]
WinCOFFObjectWriter.cpp 10 // This file contains an implementation of a Win32 COFF object file writer.
31 #include "llvm/Support/COFF.h"
40 typedef SmallString<COFF::NameSize> name;
52 COFF::Auxiliary Aux;
60 COFF::symbol Data;
80 // This class contains staging data for a COFF relocation entry.
82 COFF::relocation Data;
86 static size_t size() { return COFF::RelocationSize; }
93 COFF::section Header;
105 // This class holds the COFF string table
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 1 //===- COFFObjectFile.cpp - COFF object file implementation -----*- C++ -*-===//
14 #include "llvm/Object/COFF.h"
148 if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
149 symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) {
152 if (symb->getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION) {
173 if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
174 symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED)
178 if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL)
181 if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL)
184 if (symb->SectionNumber == COFF::IMAGE_SYM_ABSOLUTE
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/po/
yasm.pot 918 #: modules/arch/x86/x86bc.c:741 modules/objfmts/coff/win64-except.c:275
1249 #: modules/objfmts/coff/coff-objfmt.c:2047
1394 #: modules/objfmts/bin/bin-objfmt.c:998 modules/objfmts/coff/coff-objfmt.c:741
1414 #: modules/objfmts/coff/coff-objfmt.c:1205
1415 #: modules/objfmts/coff/coff-objfmt.c:125
    [all...]
POTFILES.in 40 modules/objfmts/coff/coff-objfmt.c
41 modules/objfmts/coff/win64-except.c
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 1 //===- COFFAsmParser.cpp - COFF Assembly Parser ---------------------------===//
21 #include "llvm/Support/COFF.h"
88 COFF::IMAGE_SCN_CNT_CODE
89 | COFF::IMAGE_SCN_MEM_EXECUTE
90 | COFF::IMAGE_SCN_MEM_READ,
95 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA
96 | COFF::IMAGE_SCN_MEM_READ
97 | COFF::IMAGE_SCN_MEM_WRITE,
102 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA
103 | COFF::IMAGE_SCN_MEM_REA
    [all...]
  /external/llvm/lib/Target/X86/
X86COFFMachineModuleInfo.h 1 //===-- X86coffmachinemoduleinfo.h - X86 COFF MMI Impl ----------*- C++ -*-===//
10 // This is an MMI implementation for X86 COFF (windows) targets.
26 /// for X86 COFF targets.
X86COFFMachineModuleInfo.cpp 1 //===-- X86COFFMachineModuleInfo.cpp - X86 COFF MMI Impl ------------------===//
10 // This is an MMI implementation for X86 COFF (windows) targets.
  /external/llvm/test/MC/COFF/
secrel-variant.s 0 // COFF section-relative relocations
switch-relocations.ll 1 ; The purpose of this test is to see if the COFF object writer can properly
7 ; x86-64 COFF code yet.
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 1 //===- yaml2coff - Convert YAML to a COFF object file ---------------------===//
11 /// \brief The COFF component of yaml2obj.
29 /// This parses a yaml stream that represents a COFF object file.
33 // A COFF string table always starts with a 4 byte size field. Offsets into
47 if (Name.size() <= COFF::NameSize) {
74 if (Name.size() <= COFF::NameSize) {
84 Sym.Header.Type |= Sym.ComplexType << COFF::SCT_COMPLEX_TYPE_SHIFT;
123 SectionTableStart = sizeof(COFF::header) + CP.Obj.Header.SizeOfOptionalHeader;
124 SectionTableSize = sizeof(COFF::section) * CP.Obj.Sections.size();
140 COFF::RelocationSize
    [all...]
  /external/llvm/test/tools/llvm-readobj/
reloc-types.test 13 RUN: llvm-readobj -r -expand-relocs %p/Inputs/relocs.obj.coff-i386 | FileCheck %s -check-prefix COFF-32
14 RUN: llvm-readobj -r -expand-relocs %p/Inputs/relocs.obj.coff-x86_64 | FileCheck %s -check-prefix COFF-64
550 COFF-32: Type: IMAGE_REL_I386_ABSOLUTE (0)
551 COFF-32: Type: IMAGE_REL_I386_DIR16 (1)
552 COFF-32: Type: IMAGE_REL_I386_REL16 (2)
553 COFF-32: Type: IMAGE_REL_I386_DIR32 (6)
554 COFF-32: Type: IMAGE_REL_I386_DIR32NB (7)
555 COFF-32: Type: IMAGE_REL_I386_SEG12 (9
    [all...]
sections.test 1 RUN: llvm-readobj -s %p/Inputs/trivial.obj.coff-i386 \
2 RUN: | FileCheck %s -check-prefix COFF
16 COFF: Sections [
17 COFF-NEXT: Section {
18 COFF-NEXT: Number: 1
19 COFF-NEXT: Name: .text (2E 74 65 78 74 00 00 00)
20 COFF-NEXT: VirtualSize: 0x0
21 COFF-NEXT: VirtualAddress: 0x0
22 COFF-NEXT: RawDataSize: 22
23 COFF-NEXT: PointerToRawData: 0x6
    [all...]
sections-ext.test 1 RUN: llvm-readobj -s -st -sr -sd %p/Inputs/trivial.obj.coff-i386 \
2 RUN: | FileCheck %s -check-prefix COFF
16 COFF: Sections [
17 COFF-NEXT: Section {
18 COFF-NEXT: Number: 1
19 COFF-NEXT: Name: .text (2E 74 65 78 74 00 00 00)
20 COFF-NEXT: VirtualSize: 0x0
21 COFF-NEXT: VirtualAddress: 0x0
22 COFF-NEXT: RawDataSize: 22
23 COFF-NEXT: PointerToRawData: 0x6
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/
Makefile.inc 5 EXTRA_DIST += modules/objfmts/coff/Makefile.inc
16 include modules/objfmts/coff/Makefile.inc
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/
cofftest.c 2 * test source file for assembling to COFF
4 * yasm -f coff cofftest.asm
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
win32test.c 2 * test source file for assembling to COFF
4 * yasm -f coff cofftest.asm
  /external/llvm/include/llvm/MC/
MCWinCOFFObjectWriter.h 1 //===-- llvm/MC/MCWinCOFFObjectWriter.h - Win COFF Object Writer *- C++ -*-===//
34 /// \brief Construct a new Win COFF writer instance.
  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/
Makefile.dj 88 modules/objfmts/coff/coff-objfmt.o \
89 modules/objfmts/coff/win64-except.o \
190 win64-nasm.c: modules/objfmts/coff/win64-nasm.mac genmacro
191 ./genmacro $@ win64_nasm_stdmac modules/objfmts/coff/win64-nasm.mac
192 win64-gas.c: modules/objfmts/coff/win64-gas.mac genmacro
193 ./genmacro $@ win64_gas_stdmac modules/objfmts/coff/win64-gas.mac
195 modules/objfmts/coff/coff-objfmt.c: win64-nasm.c win64-gas.c
  /external/chromium_org/third_party/yasm/source/patched-yasm/
splint.sh 70 modules/objfmts/coff/coff-objfmt.c \
71 modules/objfmts/coff/win64-except.c \
  /external/dropbear/libtommath/etc/
makefile 17 # same app but using RDTSC for higher precision [requires 80586+], coff based gcc installs [e.g. ming, cygwin, djgpp]
19 nasm -f coff timer.asm
  /external/llvm/test/tools/llvm-readobj/Inputs/
trivial.ll 1 ; llc -mtriple=i386-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-i386
2 ; llc -mtriple=x86_64-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-x86-64
  /hardware/ti/omap3/dspbridge/inc/
dbdcd.h 56 * special COFF section called ".dcd_register"
59 * pszCoffPath: Pointer to name of COFF file containing DCD
72 * COFF file to contain the right COFF sections, especially
82 * special COFF section called ".dcd_register"
85 * pszCoffPath: Pointer to name of COFF file containing
98 * COFF file to contain the right COFF sections, especially
305 * COFF section called ".dcd_register", and for each object,
311 * pszCoffPath: Pointer to name of COFF file containing DC
    [all...]

Completed in 429 milliseconds

12 3 4 5 6 7 8 91011>>