| /external/llvm/lib/Target/ARM/MCTargetDesc/ |
| ARMWinCOFFObjectWriter.cpp | 1 //===-- ARMWinCOFFObjectWriter.cpp - ARM Windows COFF Object Writer -- C++ -==// 17 #include "llvm/Support/COFF.h" 26 : MCWinCOFFObjectTargetWriter(COFF::IMAGE_FILE_MACHINE_ARMNT) { 42 assert(getMachine() == COFF::IMAGE_FILE_MACHINE_ARMNT && 56 return COFF::IMAGE_REL_ARM_ADDR32NB; 58 return COFF::IMAGE_REL_ARM_SECREL; 60 return COFF::IMAGE_REL_ARM_ADDR32; 63 return COFF::IMAGE_REL_ARM_SECTION; 65 return COFF::IMAGE_REL_ARM_SECREL; 67 return COFF::IMAGE_REL_ARM_BRANCH20T [all...] |
| /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/ |
| PeCoffLoader.h | 31 Retrieves information about a PE/COFF image.
37 If the PE/COFF image accessed through the ImageRead service in the ImageContext
38 structure is not a supported PE/COFF image type, then return RETURN_UNSUPPORTED.
45 @param ImageContext Pointer to the image context structure that describes the PE/COFF
48 @retval RETURN_SUCCESS The information on the PE/COFF image was collected.
50 @retval RETURN_UNSUPPORTED The PE/COFF image is not supported.
61 Applies relocation fixups to a PE/COFF image that was loaded with PeCoffLoaderLoadImage().
77 prior to transferring control to a PE/COFF image that is loaded using this library.
79 @param ImageContext Pointer to the image context structure that describes the PE/COFF
82 @retval RETURN_SUCCESS The PE/COFF image was relocated. [all...] |
| /external/llvm/test/Object/ |
| objdump-section-content.test | 1 RUN: yaml2obj %p/Inputs/COFF/i386.yaml | llvm-objdump -s - | FileCheck %s -check-prefix COFF-i386 7 COFF-i386: file format 8 COFF-i386: Contents of section .text: 9 COFF-i386: 0000 83ec0cc7 44240800 000000c7 04240000 ....D$.......$.. 10 COFF-i386: 0010 0000e800 000000e8 00000000 8b442408 .............D$. 11 COFF-i386: 0020 83c40cc3 .... 12 COFF-i386: Contents of section .data: 13 COFF-i386: 0000 48656c6c 6f20576f 726c6421 00 Hello World!.
|
| objdump-relocations.test | 1 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.coff-i386 \ 2 RUN: | FileCheck %s -check-prefix COFF-i386 3 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.coff-x86-64 \ 4 RUN: | FileCheck %s -check-prefix COFF-x86-64 19 COFF-i386: .text 20 COFF-i386: IMAGE_REL_I386_DIR32 L_.str 21 COFF-i386: IMAGE_REL_I386_REL32 _puts 22 COFF-i386: IMAGE_REL_I386_REL32 _SomeOtherFunction 24 COFF-x86-64: .text 25 COFF-x86-64: IMAGE_REL_AMD64_REL32 L.st [all...] |
| objdump-symbol-table.test | 1 RUN: yaml2obj %p/Inputs/COFF/i386.yaml | llvm-objdump -t - \ 2 RUN: | FileCheck %s -check-prefix COFF-i386 10 COFF-i386: file format 11 COFF-i386: SYMBOL TABLE: 12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text 13 COFF-i386: AUX scnlen 0x24 nreloc 3 nlnno 0 checksum 0x0 assoc 1 comdat 0 14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data 15 COFF-i386: AUX scnlen 0xd nreloc 0 nlnno 0 checksum 0x0 assoc 2 comdat 0 16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main 17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.st [all...] |
| /device/linaro/bootloader/edk2/MdePkg/Include/Library/ |
| PeCoffExtraActionLib.h | 2 Provides services to perform additional actions when a PE/COFF image is loaded
23 Performs additional actions after a PE/COFF image has been loaded and relocated.
28 PE/COFF image that has already been loaded and relocated.
38 Performs additional actions just before a PE/COFF image is unloaded. Any resources
44 PE/COFF image that is being unloaded.
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/ |
| PeCoffExtraActionLib.c | 2 Null PE/Coff Extra Action library instances with empty functions.
20 Performs additional actions after a PE/COFF image has been loaded and relocated.
25 PE/COFF image that has already been loaded and relocated.
38 Performs additional actions just before a PE/COFF image is unloaded. Any resources
44 PE/COFF image that is being unloaded.
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/ |
| PeCoffGetEntryPoint.c | 19 Pe/Coff loader
26 Retrieves and returns a pointer to the entry point to a PE/COFF image that has been loaded
27 into system memory with the PE/COFF Loader Library functions.
29 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
30 point in EntryPoint. If the entry point could not be retrieved from the PE/COFF image, then
35 @param Pe32Data Pointer to the PE/COFF image that is loaded in system memory.
36 @param EntryPoint Pointer to entry point to the PE/COFF image to return.
39 @retval RETURN_INVALID_PARAMETER The entry point could not be found in the PE/COFF image.
78 Returns the machine type of a PE/COFF image.
80 Returns the machine type from the PE/COFF image specified by Pe32Data. [all...] |
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Guid/PeiPeCoffLoader/ |
| PeiPeCoffLoader.c | 18 GUID for the PE/COFF Loader APIs shared between PEI and DXE
27 EFI_GUID_STRING(&gEfiPeiPeCoffLoaderGuid, "PE/COFF Loader", "PE/COFF Loader APIs from PEI");
|
| /external/llvm/test/tools/llvm-readobj/ |
| coff-basereloc.test | 1 RUN: llvm-readobj -coff-basereloc %p/Inputs/basereloc.obj.coff-i386 | FileCheck %s 3 CHECK: Format: COFF-i386
|
| coff-exports.test | 1 RUN: llvm-readobj -coff-exports %p/Inputs/export-x86.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-X86 2 RUN: llvm-readobj -coff-exports %p/Inputs/export-x64.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-X64 3 RUN: llvm-readobj -coff-exports %p/Inputs/export-arm.dll | FileCheck %s -check-prefix CHECK -check-prefix CHECK-ARM
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Ppi/NtPeiLoadFile/ |
| NtPeiLoadFile.h | 47 Loads and relocates a PE/COFF image into memory.
50 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
51 ImageAddress - The base address of the relocated PE/COFF image
52 ImageSize - The size of the relocated PE/COFF image
53 EntryPoint - The entry point of the relocated PE/COFF image
57 EFI_OUT_OF_RESOURCES - There was not enough memory to load and relocate the PE/COFF file
|
| /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/ |
| fill.d | 6 #xfail: ia64-*-* alpha-*-*ecoff m32c-*-* mips*-*-* sh-*-pe sparc*-*-coff 7 #xfail: tic30-*-coff tic4x-*-* tic54x-*-* 10 # could be increased to suit ia64 but then we'd break many coff targets 16 # sparc-coff aligns to 8 bytes 17 # tic30-coff aligns to 2 bytes 21 # z8k-coff aligns to 2 bytes
|
| /external/llvm/test/Object/X86/ |
| objdump-disassembly-inline-relocations.test | 1 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-i386 \ 2 RUN: | FileCheck %s -check-prefix COFF-i386 3 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-x86-64 \ 4 RUN: | FileCheck %s -check-prefix COFF-x86-64 14 COFF-i386: file format COFF-i386 15 COFF-i386: Disassembly of section .text: 16 COFF-i386: 0: 83 ec 0c subl $12, %esp 17 COFF-i386: 3: c7 44 24 08 00 00 00 00 movl $0, 8(%esp) 18 COFF-i386: b: c7 04 24 00 00 00 00 movl $0, (%esp [all...] |
| /external/llvm/test/tools/llvm-ar/ |
| default-coff.test | 1 RUN: yaml2obj %S/Inputs/coff.yaml -o %t.obj 7 Ensure that we generate a GNU style archive for COFF by default. The GNU linker
|
| /external/swiftshader/third_party/LLVM/test/MC/COFF/ |
| bss.s | 3 // RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | coff-dump.py | FileCheck %s
4 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | coff-dump.py | FileCheck %s
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/ |
| EdkIIGluePeCoffLib.h | 40 // Return status codes from the PE/COFF Loader services
56 // PE/COFF Loader Read Function passed in by caller
68 // Context structure used while PE/COFF image is being loaded and relocated
95 Retrieves information about a PE/COFF image.
100 If the PE/COFF image accessed through the ImageRead service in the ImageContext structure is not
101 a supported PE/COFF image type, then return RETURN_UNSUPPORTED. If any errors occur while
105 @param ImageContext Pointer to the image context structure that describes the PE/COFF
108 @retval RETURN_SUCCESS The information on the PE/COFF image was collected.
110 @retval RETURN_UNSUPPORTED The PE/COFF image is not supported.
120 Applies relocation fixups to a PE/COFF image that was loaded with PeCoffLoaderLoadImage(). [all...] |
| /toolchain/binutils/binutils-2.27/bfd/po/ |
| SRC-POTFILES.in | 28 coff-alpha.c 29 coff-apollo.c 30 coff-arm.c 31 coff-aux.c 32 coff-bfd.c 33 coff-go32.c 34 coff-h8300.c 35 coff-h8500.c 36 coff-i386.c 37 coff-i860. [all...] |
| /device/linaro/bootloader/edk2/EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/ |
| PeiEmuPeCoffGetEntryPointLib.c | 27 Retrieves and returns a pointer to the entry point to a PE/COFF image that has been loaded
28 into system memory with the PE/COFF Loader Library functions.
30 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
31 point in EntryPoint. If the entry point could not be retrieved from the PE/COFF image, then
36 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
37 @param EntryPoint The pointer to entry point to the PE/COFF image to return.
40 @retval RETURN_INVALID_PARAMETER The entry point could not be found in the PE/COFF image.
71 Returns the machine type of PE/COFF image.
77 @param Pe32Data Pointer to a PE/COFF header
111 Returns a pointer to the PDB file name for a PE/COFF image that has been [all...] |
| /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| RuntimeDyldCOFFX86_64.h | 1 //===-- RuntimeDyldCOFFX86_64.h --- COFF/X86_64 specific code ---*- C++ -*-===// 10 // COFF x86_x64 support for MC-JIT runtime dynamic linker. 17 #include "llvm/Object/COFF.h" 18 #include "llvm/Support/COFF.h" 69 case COFF::IMAGE_REL_AMD64_REL32: 70 case COFF::IMAGE_REL_AMD64_REL32_1: 71 case COFF::IMAGE_REL_AMD64_REL32_2: 72 case COFF::IMAGE_REL_AMD64_REL32_3: 73 case COFF::IMAGE_REL_AMD64_REL32_4: 74 case COFF::IMAGE_REL_AMD64_REL32_5: [all...] |
| /toolchain/binutils/binutils-2.27/bfd/ |
| coff-tic54x.c | 1 /* BFD back-end for TMS320C54X coff binaries. 26 #include "coff/tic54x.h" 27 #include "coff/internal.h" 41 the COFF file, you would see the octets ordered as 0x78, 0x56, 0x34, 0x12. 311 /* Replace the stock _bfd_coff_is_local_label_name to recognize TI COFF local 399 /* TI COFF v0, DOS tools (little-endian headers). */ 430 BFD_JUMP_TABLE_GENERIC (coff), 431 BFD_JUMP_TABLE_COPY (coff), 434 BFD_JUMP_TABLE_SYMBOLS (coff), 435 BFD_JUMP_TABLE_RELOCS (coff), [all...] |
| /external/llvm/test/ExecutionEngine/OrcLazy/ |
| lit.local.cfg | 6 # FIXME: These tests don't pass with the COFF rtld.
|
| /external/llvm/test/MC/COFF/ |
| relax-reloc.s | 3 // Don't crash trying to create relaxable relocations on COFF.
|
| /external/llvm/test/Object/Inputs/COFF/ |
| long-file-symbol.yaml | 1 --- !COFF
|
| /external/llvm/test/Object/Inputs/ |
| archive-test.a-coff-i386 | 5 trivial-object-test.coff-i386 /0 1317070755 100666 346 `
|