2016-11-29 22:54:33 +01:00
|
|
|
//===-- llvm-modextract.cpp - LLVM module extractor utility ---------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-11-29 22:54:33 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This program is for testing features that rely on multi-module bitcode files.
|
|
|
|
// It takes a multi-module bitcode file, extracts one of the modules and writes
|
|
|
|
// it to the output file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
|
|
|
#include "llvm/Bitcode/BitcodeWriter.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2021-07-20 17:10:34 +02:00
|
|
|
static cl::OptionCategory ModextractCategory("Modextract Options");
|
|
|
|
|
2016-11-29 22:54:33 +01:00
|
|
|
static cl::opt<bool>
|
2021-07-20 17:10:34 +02:00
|
|
|
BinaryExtract("b", cl::desc("Whether to perform binary extraction"),
|
|
|
|
cl::cat(ModextractCategory));
|
2016-11-29 22:54:33 +01:00
|
|
|
|
|
|
|
static cl::opt<std::string> OutputFilename("o", cl::Required,
|
|
|
|
cl::desc("Output filename"),
|
2021-07-20 17:10:34 +02:00
|
|
|
cl::value_desc("filename"),
|
|
|
|
cl::cat(ModextractCategory));
|
2016-11-29 22:54:33 +01:00
|
|
|
|
2021-07-20 17:10:34 +02:00
|
|
|
static cl::opt<std::string> InputFilename(cl::Positional,
|
|
|
|
cl::desc("<input bitcode>"),
|
|
|
|
cl::init("-"),
|
|
|
|
cl::cat(ModextractCategory));
|
2016-11-29 22:54:33 +01:00
|
|
|
|
|
|
|
static cl::opt<unsigned> ModuleIndex("n", cl::Required,
|
|
|
|
cl::desc("Index of module to extract"),
|
2021-07-20 17:10:34 +02:00
|
|
|
cl::value_desc("index"),
|
|
|
|
cl::cat(ModextractCategory));
|
2016-11-29 22:54:33 +01:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2021-07-20 17:10:34 +02:00
|
|
|
cl::HideUnrelatedOptions({&ModextractCategory, &getColorCategory()});
|
2016-11-29 22:54:33 +01:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, "Module extractor");
|
|
|
|
|
|
|
|
ExitOnError ExitOnErr("llvm-modextract: error: ");
|
|
|
|
|
|
|
|
std::unique_ptr<MemoryBuffer> MB =
|
|
|
|
ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFilename)));
|
|
|
|
std::vector<BitcodeModule> Ms = ExitOnErr(getBitcodeModuleList(*MB));
|
|
|
|
|
|
|
|
LLVMContext Context;
|
|
|
|
if (ModuleIndex >= Ms.size()) {
|
|
|
|
errs() << "llvm-modextract: error: module index out of range; bitcode file "
|
|
|
|
"contains "
|
|
|
|
<< Ms.size() << " module(s)\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::error_code EC;
|
2017-09-23 03:03:17 +02:00
|
|
|
std::unique_ptr<ToolOutputFile> Out(
|
2019-08-05 07:43:48 +02:00
|
|
|
new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None));
|
2016-11-29 22:54:33 +01:00
|
|
|
ExitOnErr(errorCodeToError(EC));
|
|
|
|
|
|
|
|
if (BinaryExtract) {
|
2017-04-17 19:51:36 +02:00
|
|
|
SmallVector<char, 0> Result;
|
|
|
|
BitcodeWriter Writer(Result);
|
|
|
|
Result.append(Ms[ModuleIndex].getBuffer().begin(),
|
|
|
|
Ms[ModuleIndex].getBuffer().end());
|
|
|
|
Writer.copyStrtab(Ms[ModuleIndex].getStrtab());
|
|
|
|
Out->os() << Result;
|
2016-12-02 00:13:11 +01:00
|
|
|
Out->keep();
|
2016-11-29 22:54:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Module> M = ExitOnErr(Ms[ModuleIndex].parseModule(Context));
|
2018-02-14 20:11:32 +01:00
|
|
|
WriteBitcodeToFile(*M, Out->os());
|
2016-11-29 22:54:33 +01:00
|
|
|
|
2016-12-02 00:13:11 +01:00
|
|
|
Out->keep();
|
2016-11-29 22:54:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|