Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:COFF

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;
41 case COFF::IMPORT_NAME_NOPREFIX: outs() << "Name type: noprefix\n"; break;
42 case COFF::IMPORT_NAME_UNDECORATE: outs() << "Name type: undecorate\n"; break;