| /external/llvm/tools/llvm-readobj/ |
| COFFImportDumper.cpp | 1 //===-- COFFImportDumper.cpp - COFF import library dumper -------*- C++ -*-===// 11 /// \brief This file implements the COFF import library dumper for llvm-readobj. 18 #include "llvm/Object/COFF.h" 20 #include "llvm/Support/COFF.h" 29 outs() << "Format: COFF-import-file\n"; 33 case COFF::IMPORT_CODE: outs() << "Type: code\n"; break; 34 case COFF::IMPORT_DATA: outs() << "Type: data\n"; break; 35 case COFF::IMPORT_CONST: outs() << "Type: const\n"; break; 39 case COFF::IMPORT_ORDINAL: outs() << "Name type: ordinal\n"; break; 40 case COFF::IMPORT_NAME: outs() << "Name type: name\n"; break [all...] |
| /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/ |
| local_label_coff.d | 2 #name: ARM local label relocs to section symbol relocs (COFF) 3 # This test is only valid on COFF based targets, except Windows CE. 5 #not-skip: *-unknown-pe *-epoc-pe *-*-*coff
|
| addsw-bad.d | 2 #skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd
|
| barrier-bad.d | 2 #skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd
|
| local_label_elf.d | 4 # There are COFF and Windows CE versions of this test. 5 #skip: *-*-*coff *-*-pe *-wince-* *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
| /device/linaro/bootloader/edk2/MdePkg/Include/Library/ |
| PeCoffLib.h | 2 Provides services to load and relocate a PE/COFF image.
4 The PE/COFF Loader Library abstracts the implementation of a PE/COFF loader for
24 // Return status codes from the PE/COFF Loader services
40 Reads contents of a PE/COFF image.
42 A function of this type reads contents of the PE/COFF image specified by FileHandle. The read
43 operation copies ReadSize bytes from the PE/COFF image starting at byte offset FileOffset into
45 If FileOffset specifies an offset past the end of the PE/COFF image, a ReadSize of 0 is returned.
47 structure for the PE/COFF Loader Library service to function correctly. This function abstracts access
48 to a PE/COFF image so it can be implemented in an environment specific manner. For example, SEC and PEI [all...] |
| /external/llvm/test/Object/X86/ |
| objdump-trivial-object.test | 1 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.coff-i386 \ 2 RUN: | FileCheck %s -check-prefix COFF-i386 3 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.coff-x86-64 \ 4 RUN: | FileCheck %s -check-prefix COFF-x86-64 10 COFF-i386: file format COFF-i386 11 COFF-i386: Disassembly of section .text: 12 COFF-i386: 0: 83 ec 0c subl $12, %esp 13 COFF-i386: 3: c7 44 24 08 00 00 00 00 movl $0, 8(%esp) 14 COFF-i386: b: c7 04 24 00 00 00 00 movl $0, (%esp [all...] |
| /external/swiftshader/third_party/LLVM/test/Object/ |
| objdump-trivial-object.test | 1 RUN: llvm-objdump -d %p/TestObjectFiles/trivial-object-test.coff-i386 \ 2 RUN: | FileCheck %s -check-prefix COFF-i386 3 RUN: llvm-objdump -d %p/TestObjectFiles/trivial-object-test.coff-x86-64 \ 4 RUN: | FileCheck %s -check-prefix COFF-x86-64 10 COFF-i386: file format COFF-i386 11 COFF-i386: Disassembly of section .text: 12 COFF-i386: 0: 83 ec 0c subl $12, %esp 13 COFF-i386: 3: c7 44 24 08 00 00 00 00 movl $0, 8(%esp) 14 COFF-i386: b: c7 04 24 00 00 00 00 movl $0, (%esp [all...] |
| /external/llvm/lib/MC/ |
| MCObjectFileInfo.cpp | 19 #include "llvm/Support/COFF.h" 594 ".eh_frame", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | 595 COFF::IMAGE_SCN_MEM_READ | COFF::IMAGE_SCN_MEM_WRITE, 605 // COFF 607 ".bss", COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA | 608 COFF::IMAGE_SCN_MEM_READ | COFF::IMAGE_SCN_MEM_WRITE, 612 (IsThumb ? COFF::IMAGE_SCN_MEM_16BIT : (COFF::SectionCharacteristics)0) [all...] |
| /device/linaro/bootloader/edk2/ArmPkg/Library/DefaultExceptionHandlerLib/ |
| DefaultExceptionHandlerBase.c | 19 @param FaultAddress Address to find PE/COFF image for.
21 @param PeCoffSizeOfHeaders Return the size of the PE/COFF header for the image that was found
23 @retval NULL FaultAddress not in a loaded PE/COFF image.
24 @retval Path and file name of PE/COFF image.
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/ |
| PeCoffExtraActionLibNull.uni | 2 // Null PE/Coff Extra Action library instances with empty functions.
4 // Null PE/Coff Extra Action library instances with empty functions.
18 #string STR_MODULE_ABSTRACT #language en-US "Null PE/Coff Extra Action library instances with empty functions"
20 #string STR_MODULE_DESCRIPTION #language en-US "Null PE/Coff Extra Action library instances with empty functions."
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/ |
| BasePeCoffGetEntryPointLib.uni | 2 // PE/COFF Entry Point Library implementation.
4 // PE/COFF Entry Point Library implementation.
18 #string STR_MODULE_ABSTRACT #language en-US "PE/COFF Entry Point Library implementation"
20 #string STR_MODULE_DESCRIPTION #language en-US "PE/COFF Entry Point Library implementation."
|
| /external/llvm/test/Object/Inputs/COFF/ |
| long-section-name.yaml | 1 --- !COFF
|
| /external/llvm/test/tools/llvm-objdump/ |
| coff-large-bss.test | 1 RUN: llvm-objdump -s %p/Inputs/large-bss.obj.coff-i386 | FileCheck %s
|
| /external/llvm/test/tools/llvm-readobj/Inputs/ |
| cxx-cli-aux.cpp | 1 // cl.exe -clr -c t.cpp -Fo"cxx-cli-aux.obj.coff-i386"
|
| /toolchain/binutils/binutils-2.27/ld/emulparams/ |
| coff_sparc.sh | 2 OUTPUT_FORMAT="coff-sparc"
|
| i386go32.sh | 2 OUTPUT_FORMAT="coff-go32"
|
| sh.sh | 5 OUTPUT_FORMAT="coff-sh"
|
| /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/ |
| image_size.d | 1 #name: PE-COFF SizeOfImage
|
| /external/llvm/test/CodeGen/X86/ |
| mingw-alloca.ll | 1 ; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s -check-prefix=COFF 8 ; COFF: _foo1: 9 ; COFF: calll __alloca 21 ; COFF: _foo2: 22 ; COFF: andl $-16, %esp 23 ; COFF: pushl %eax 24 ; COFF: calll __alloca 25 ; COFF: movl 8012(%esp), %eax
|
| /external/llvm/test/tools/llvm-symbolizer/Inputs/ |
| coff-dwarf.cpp | 2 // clang-cl -MD -O2 -gdwarf -c coff-dwarf.cpp && lld-link -debug coff-dwarf.obj
|
| /device/linaro/bootloader/edk2/Nt32Pkg/Include/Ppi/ |
| NtPeiLoadFile.h | 46 Loads and relocates a PE/COFF image into memory.
49 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
50 ImageAddress - The base address of the relocated PE/COFF image
51 ImageSize - The size of the relocated PE/COFF image
52 EntryPoint - The entry point of the relocated PE/COFF image
56 EFI_OUT_OF_RESOURCES - There was not enough memory to load and relocate the PE/COFF file
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
| PeCoffLib.h | 2 Function prototypes and defines on Memory Only PE COFF loader
19 // Return status codes from the PE/COFF Loader services
36 // PE/COFF Loader Read Function passed in by caller
48 // Context structure used while PE/COFF image is being loaded and relocated
76 Retrieves information on a PE/COFF image
80 @retval EFI_SUCCESS The information on the PE/COFF image was collected.
82 @retval EFI_UNSUPPORTED The PE/COFF image is not supported.
83 @retval Otherwise The error status from reading the PE/COFF image using the
95 Relocates a PE/COFF image in memory
99 @retval EFI_SUCCESS if the PE/COFF image was relocated [all...] |
| /external/swiftshader/third_party/LLVM/lib/MC/ |
| MCSectionCOFF.cpp | 1 //===- lib/MC/MCSectionCOFF.cpp - COFF Code Section Representation --------===// 47 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_DISCARDABLE) 51 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) { 53 case COFF::IMAGE_COMDAT_SELECT_NODUPLICATES: 56 case COFF::IMAGE_COMDAT_SELECT_ANY: 59 case COFF::IMAGE_COMDAT_SELECT_SAME_SIZE: 62 case COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH: 68 case COFF::IMAGE_COMDAT_SELECT_LARGEST: 72 assert (0 && "unsupported COFF selection type"); 83 return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA [all...] |
| /device/linaro/bootloader/edk2/EmbeddedPkg/Library/DxeHobPeCoffLib/ |
| DxeHobPeCoff.c | 2 PE/COFF Loader Library implementation that wraps a protocol passed up from
28 Retrieves information about a PE/COFF image.
34 If the PE/COFF image accessed through the ImageRead service in the ImageContext
35 structure is not a supported PE/COFF image type, then return RETURN_UNSUPPORTED.
42 @param ImageContext Pointer to the image context structure that describes the PE/COFF
45 @retval RETURN_SUCCESS The information on the PE/COFF image was collected.
47 @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
[all...] |