xref: /freebsd/contrib/llvm-project/llvm/include/llvm/Object/COFFModuleDefinition.h (revision 700637cbb5e582861067a11aaca4d053546871d2)
1 //===--- COFFModuleDefinition.h ---------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Windows-specific.
10 // A parser for the module-definition file (.def file).
11 // Parsed results are directly written to Config global variable.
12 //
13 // The format of module-definition files are described in this document:
14 // https://msdn.microsoft.com/en-us/library/28d6s79h.aspx
15 //
16 //===----------------------------------------------------------------------===//
17 
18 #ifndef LLVM_OBJECT_COFFMODULEDEFINITION_H
19 #define LLVM_OBJECT_COFFMODULEDEFINITION_H
20 
21 #include "llvm/BinaryFormat/COFF.h"
22 #include "llvm/Object/COFFImportFile.h"
23 #include "llvm/Support/Compiler.h"
24 
25 namespace llvm {
26 namespace object {
27 
28 struct COFFModuleDefinition {
29   std::vector<COFFShortExport> Exports;
30   std::string OutputFile;
31   std::string ImportName;
32   uint64_t ImageBase = 0;
33   uint64_t StackReserve = 0;
34   uint64_t StackCommit = 0;
35   uint64_t HeapReserve = 0;
36   uint64_t HeapCommit = 0;
37   uint32_t MajorImageVersion = 0;
38   uint32_t MinorImageVersion = 0;
39   uint32_t MajorOSVersion = 0;
40   uint32_t MinorOSVersion = 0;
41 };
42 
43 LLVM_ABI Expected<COFFModuleDefinition>
44 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
45                           bool MingwDef = false, bool AddUnderscores = true);
46 
47 } // End namespace object.
48 } // End namespace llvm.
49 
50 #endif
51