forked from OSchip/llvm-project
uselistorder: Pull the bit through WriteToBitcodFile()
Change the callers of `WriteToBitcodeFile()` to pass `true` or `shouldPreserveBitcodeUseListOrder()` explicitly. I left the callers that want to send `false` alone. I'll keep pushing the bit higher until hopefully I can delete the global `cl::opt` entirely. llvm-svn: 234957
This commit is contained in:
parent
458593a457
commit
a052ed6381
|
@ -56,11 +56,16 @@ namespace llvm {
|
||||||
parseBitcodeFile(MemoryBufferRef Buffer, LLVMContext &Context,
|
parseBitcodeFile(MemoryBufferRef Buffer, LLVMContext &Context,
|
||||||
DiagnosticHandlerFunction DiagnosticHandler = nullptr);
|
DiagnosticHandlerFunction DiagnosticHandler = nullptr);
|
||||||
|
|
||||||
/// WriteBitcodeToFile - Write the specified module to the specified
|
/// \brief Write the specified module to the specified raw output stream.
|
||||||
/// raw output stream. For streams where it matters, the given stream
|
///
|
||||||
/// should be in "binary" mode.
|
/// For streams where it matters, the given stream should be in "binary"
|
||||||
void WriteBitcodeToFile(const Module *M, raw_ostream &Out);
|
/// mode.
|
||||||
|
///
|
||||||
|
/// If \c ShouldPreserveUseListOrder, encode the use-list order for each \a
|
||||||
|
/// Value in \c M. These will be reconstructed exactly when \a M is
|
||||||
|
/// deserialized.
|
||||||
|
void WriteBitcodeToFile(const Module *M, raw_ostream &Out,
|
||||||
|
bool ShouldPreserveUseListOrder = false);
|
||||||
|
|
||||||
/// isBitcodeWrapper - Return true if the given bytes are the magic bytes
|
/// isBitcodeWrapper - Return true if the given bytes are the magic bytes
|
||||||
/// for an LLVM IR bitcode wrapper.
|
/// for an LLVM IR bitcode wrapper.
|
||||||
|
|
|
@ -2312,7 +2312,8 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// WriteModule - Emit the specified module to the bitstream.
|
/// WriteModule - Emit the specified module to the bitstream.
|
||||||
static void WriteModule(const Module *M, BitstreamWriter &Stream) {
|
static void WriteModule(const Module *M, BitstreamWriter &Stream,
|
||||||
|
bool ShouldPreserveUseListOrder) {
|
||||||
Stream.EnterSubblock(bitc::MODULE_BLOCK_ID, 3);
|
Stream.EnterSubblock(bitc::MODULE_BLOCK_ID, 3);
|
||||||
|
|
||||||
SmallVector<unsigned, 1> Vals;
|
SmallVector<unsigned, 1> Vals;
|
||||||
|
@ -2321,7 +2322,7 @@ static void WriteModule(const Module *M, BitstreamWriter &Stream) {
|
||||||
Stream.EmitRecord(bitc::MODULE_CODE_VERSION, Vals);
|
Stream.EmitRecord(bitc::MODULE_CODE_VERSION, Vals);
|
||||||
|
|
||||||
// Analyze the module, enumerating globals, functions, etc.
|
// Analyze the module, enumerating globals, functions, etc.
|
||||||
ValueEnumerator VE(*M, shouldPreserveBitcodeUseListOrder());
|
ValueEnumerator VE(*M, ShouldPreserveUseListOrder);
|
||||||
|
|
||||||
// Emit blockinfo, which defines the standard abbreviations etc.
|
// Emit blockinfo, which defines the standard abbreviations etc.
|
||||||
WriteBlockInfo(VE, Stream);
|
WriteBlockInfo(VE, Stream);
|
||||||
|
@ -2440,7 +2441,8 @@ static void EmitDarwinBCHeaderAndTrailer(SmallVectorImpl<char> &Buffer,
|
||||||
|
|
||||||
/// WriteBitcodeToFile - Write the specified module to the specified output
|
/// WriteBitcodeToFile - Write the specified module to the specified output
|
||||||
/// stream.
|
/// stream.
|
||||||
void llvm::WriteBitcodeToFile(const Module *M, raw_ostream &Out) {
|
void llvm::WriteBitcodeToFile(const Module *M, raw_ostream &Out,
|
||||||
|
bool ShouldPreserveUseListOrder) {
|
||||||
SmallVector<char, 0> Buffer;
|
SmallVector<char, 0> Buffer;
|
||||||
Buffer.reserve(256*1024);
|
Buffer.reserve(256*1024);
|
||||||
|
|
||||||
|
@ -2463,7 +2465,7 @@ void llvm::WriteBitcodeToFile(const Module *M, raw_ostream &Out) {
|
||||||
Stream.Emit(0xD, 4);
|
Stream.Emit(0xD, 4);
|
||||||
|
|
||||||
// Emit the module.
|
// Emit the module.
|
||||||
WriteModule(M, Stream);
|
WriteModule(M, Stream, ShouldPreserveUseListOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (TT.isOSDarwin())
|
if (TT.isOSDarwin())
|
||||||
|
|
|
@ -15,11 +15,12 @@
|
||||||
#include "llvm/Bitcode/ReaderWriter.h"
|
#include "llvm/Bitcode/ReaderWriter.h"
|
||||||
#include "llvm/IR/Module.h"
|
#include "llvm/IR/Module.h"
|
||||||
#include "llvm/IR/PassManager.h"
|
#include "llvm/IR/PassManager.h"
|
||||||
|
#include "llvm/IR/UseListOrder.h"
|
||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
PreservedAnalyses BitcodeWriterPass::run(Module &M) {
|
PreservedAnalyses BitcodeWriterPass::run(Module &M) {
|
||||||
WriteBitcodeToFile(&M, OS);
|
WriteBitcodeToFile(&M, OS, shouldPreserveBitcodeUseListOrder());
|
||||||
return PreservedAnalyses::all();
|
return PreservedAnalyses::all();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +35,7 @@ namespace {
|
||||||
const char *getPassName() const override { return "Bitcode Writer"; }
|
const char *getPassName() const override { return "Bitcode Writer"; }
|
||||||
|
|
||||||
bool runOnModule(Module &M) override {
|
bool runOnModule(Module &M) override {
|
||||||
WriteBitcodeToFile(&M, OS);
|
WriteBitcodeToFile(&M, OS, shouldPreserveBitcodeUseListOrder());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -215,7 +215,8 @@ bool LTOCodeGenerator::writeMergedModules(const char *path,
|
||||||
}
|
}
|
||||||
|
|
||||||
// write bitcode to it
|
// write bitcode to it
|
||||||
WriteBitcodeToFile(IRLinker.getModule(), Out.os());
|
WriteBitcodeToFile(IRLinker.getModule(), Out.os(),
|
||||||
|
shouldPreserveBitcodeUseListOrder());
|
||||||
Out.os().close();
|
Out.os().close();
|
||||||
|
|
||||||
if (Out.os().has_error()) {
|
if (Out.os().has_error()) {
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include "llvm/IR/DataLayout.h"
|
#include "llvm/IR/DataLayout.h"
|
||||||
#include "llvm/IR/LegacyPassManager.h"
|
#include "llvm/IR/LegacyPassManager.h"
|
||||||
#include "llvm/IR/Module.h"
|
#include "llvm/IR/Module.h"
|
||||||
|
#include "llvm/IR/UseListOrder.h"
|
||||||
#include "llvm/IR/Verifier.h"
|
#include "llvm/IR/Verifier.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
|
@ -55,7 +56,7 @@ namespace {
|
||||||
/// file. If an error occurs, true is returned.
|
/// file. If an error occurs, true is returned.
|
||||||
///
|
///
|
||||||
static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) {
|
static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) {
|
||||||
WriteBitcodeToFile(M, Out.os());
|
WriteBitcodeToFile(M, Out.os(), shouldPreserveBitcodeUseListOrder());
|
||||||
Out.os().close();
|
Out.os().close();
|
||||||
if (!Out.os().has_error()) {
|
if (!Out.os().has_error()) {
|
||||||
Out.keep();
|
Out.keep();
|
||||||
|
@ -151,7 +152,7 @@ bool BugDriver::runPasses(Module *Program,
|
||||||
|
|
||||||
tool_output_file InFile(InputFilename, InputFD);
|
tool_output_file InFile(InputFilename, InputFD);
|
||||||
|
|
||||||
WriteBitcodeToFile(Program, InFile.os());
|
WriteBitcodeToFile(Program, InFile.os(), shouldPreserveBitcodeUseListOrder());
|
||||||
InFile.os().close();
|
InFile.os().close();
|
||||||
if (InFile.os().has_error()) {
|
if (InFile.os().has_error()) {
|
||||||
errs() << "Error writing bitcode file: " << InputFilename << "\n";
|
errs() << "Error writing bitcode file: " << InputFilename << "\n";
|
||||||
|
|
|
@ -734,12 +734,13 @@ static void runLTOPasses(Module &M, TargetMachine &TM) {
|
||||||
passes.run(M);
|
passes.run(M);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void saveBCFile(StringRef Path, Module &M) {
|
static void saveBCFile(StringRef Path, Module &M,
|
||||||
|
bool ShouldPreserveUseListOrder) {
|
||||||
std::error_code EC;
|
std::error_code EC;
|
||||||
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
|
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
|
||||||
if (EC)
|
if (EC)
|
||||||
message(LDPL_FATAL, "Failed to write the output file.");
|
message(LDPL_FATAL, "Failed to write the output file.");
|
||||||
WriteBitcodeToFile(&M, OS);
|
WriteBitcodeToFile(&M, OS, /* ShouldPreserveUseListOrder */ true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void codegen(Module &M) {
|
static void codegen(Module &M) {
|
||||||
|
|
|
@ -79,7 +79,7 @@ static void WriteOutputFile(const Module *M) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Force || !CheckBitcodeOutputToConsole(Out->os(), true))
|
if (Force || !CheckBitcodeOutputToConsole(Out->os(), true))
|
||||||
WriteBitcodeToFile(M, Out->os());
|
WriteBitcodeToFile(M, Out->os(), shouldPreserveBitcodeUseListOrder());
|
||||||
|
|
||||||
// Declare success.
|
// Declare success.
|
||||||
Out->keep();
|
Out->keep();
|
||||||
|
|
|
@ -152,7 +152,8 @@ int main(int argc, char **argv) {
|
||||||
if (OutputAssembly) {
|
if (OutputAssembly) {
|
||||||
Out.os() << *Composite;
|
Out.os() << *Composite;
|
||||||
} else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
|
} else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
|
||||||
WriteBitcodeToFile(Composite.get(), Out.os());
|
WriteBitcodeToFile(Composite.get(), Out.os(),
|
||||||
|
shouldPreserveBitcodeUseListOrder());
|
||||||
|
|
||||||
// Declare success.
|
// Declare success.
|
||||||
Out.keep();
|
Out.keep();
|
||||||
|
|
|
@ -131,7 +131,7 @@ bool TempFile::writeBitcode(const Module &M) const {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
WriteBitcodeToFile(&M, OS);
|
WriteBitcodeToFile(&M, OS, /* ShouldPreserveUseListOrder */ true);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -542,10 +542,6 @@ int main(int argc, char **argv) {
|
||||||
|
|
||||||
outs() << "*** verify-uselistorder ***\n";
|
outs() << "*** verify-uselistorder ***\n";
|
||||||
// Can't verify if order isn't preserved.
|
// Can't verify if order isn't preserved.
|
||||||
if (!shouldPreserveBitcodeUseListOrder()) {
|
|
||||||
errs() << "warning: forcing -preserve-bc-uselistorder\n";
|
|
||||||
setPreserveBitcodeUseListOrder(true);
|
|
||||||
}
|
|
||||||
if (!shouldPreserveAssemblyUseListOrder()) {
|
if (!shouldPreserveAssemblyUseListOrder()) {
|
||||||
errs() << "warning: forcing -preserve-ll-uselistorder\n";
|
errs() << "warning: forcing -preserve-ll-uselistorder\n";
|
||||||
setPreserveAssemblyUseListOrder(true);
|
setPreserveAssemblyUseListOrder(true);
|
||||||
|
|
Loading…
Reference in New Issue