Home
last modified time | relevance | path

Searched refs:BitcodeCompiler (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/llvm/lld/wasm/
H A DLTO.cpp73 BitcodeCompiler::BitcodeCompiler() : ltoObj(createLTO()) {} in BitcodeCompiler() function in lld::wasm::BitcodeCompiler
75 BitcodeCompiler::~BitcodeCompiler() = default;
88 void BitcodeCompiler::add(BitcodeFile &f) { in add()
122 std::vector<StringRef> BitcodeCompiler::compile() { in compile()
H A DLTO.h41 class BitcodeCompiler {
43 BitcodeCompiler();
44 ~BitcodeCompiler();
H A DSymbolTable.h143 std::unique_ptr<BitcodeCompiler> lto;
H A DSymbolTable.cpp80 lto.reset(new BitcodeCompiler); in compileBitcodeFiles()
/openbsd-src/gnu/llvm/lld/COFF/
H A DLTO.cpp57 std::string BitcodeCompiler::getThinLTOOutputFile(StringRef path) { in getThinLTOOutputFile()
63 lto::Config BitcodeCompiler::createConfig() { in createConfig()
104 BitcodeCompiler::BitcodeCompiler(COFFLinkerContext &c) : ctx(c) { in BitcodeCompiler() function in BitcodeCompiler
126 BitcodeCompiler::~BitcodeCompiler() = default;
130 void BitcodeCompiler::add(BitcodeFile &f) { in add()
165 std::vector<InputFile *> BitcodeCompiler::compile() { in compile()
H A DLTO.h41 class BitcodeCompiler {
43 BitcodeCompiler(COFFLinkerContext &ctx);
44 ~BitcodeCompiler();
H A DSymbolTable.h136 std::unique_ptr<BitcodeCompiler> lto;
H A DSymbolTable.cpp867 lto.reset(new BitcodeCompiler(ctx)); in compileBitcodeFiles()
/openbsd-src/gnu/llvm/lld/ELF/
H A DLTO.h39 class BitcodeCompiler {
41 BitcodeCompiler();
42 ~BitcodeCompiler();
H A DLTO.cpp191 BitcodeCompiler::BitcodeCompiler() { in BitcodeCompiler() function in BitcodeCompiler
227 BitcodeCompiler::~BitcodeCompiler() = default;
229 void BitcodeCompiler::add(BitcodeFile &f) { in add()
321 std::vector<InputFile *> BitcodeCompiler::compile() { in compile()
H A DConfig.h43 class BitcodeCompiler; variable
123 std::unique_ptr<BitcodeCompiler> lto;
H A DDriver.cpp2253 lto.reset(new BitcodeCompiler); in compileBitcodeFiles()
/openbsd-src/gnu/llvm/lld/MachO/
H A DLTO.h29 class BitcodeCompiler {
31 BitcodeCompiler();
H A DLTO.cpp92 BitcodeCompiler::BitcodeCompiler() { in BitcodeCompiler() function in BitcodeCompiler
115 void BitcodeCompiler::add(BitcodeFile &f) { in add()
198 std::vector<ObjFile *> BitcodeCompiler::compile() { in compile()
H A DDriver.cpp555 auto *lto = make<BitcodeCompiler>(); in compileBitcodeFiles()