hanchenye-llvm-project/lld/COFF/Config.h

55 lines
1.3 KiB
C
Raw Normal View History

//===- Config.h -----------------------------------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_COFF_CONFIG_H
#define LLD_COFF_CONFIG_H
#include "llvm/ADT/StringRef.h"
#include "llvm/Object/COFF.h"
#include <cstdint>
#include <set>
#include <string>
namespace lld {
namespace coff {
using llvm::COFF::WindowsSubsystem;
class Configuration {
public:
llvm::COFF::MachineTypes MachineType = llvm::COFF::IMAGE_FILE_MACHINE_AMD64;
bool Verbose = false;
WindowsSubsystem Subsystem = llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI;
std::string EntryName;
2015-05-30 00:21:11 +08:00
uint64_t ImageBase = 0x140000000;
2015-05-30 00:21:11 +08:00
uint64_t StackReserve = 1024 * 1024;
uint64_t StackCommit = 4096;
uint64_t HeapReserve = 1024 * 1024;
uint64_t HeapCommit = 4096;
uint32_t MajorImageVersion = 0;
uint32_t MinorImageVersion = 0;
uint32_t MajorOSVersion = 6;
uint32_t MinorOSVersion = 0;
bool insertFile(llvm::StringRef Path) {
return VisitedFiles.insert(Path.lower()).second;
}
private:
std::set<std::string> VisitedFiles;
};
extern Configuration *Config;
} // namespace coff
} // namespace lld
#endif