mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
Add an option to the LTO code generator to disable vectorization during LTO
We used to always vectorize (slp and loop vectorize) in the LTO pass pipeline. r220345 changed it so that we used the PassManager's fields 'LoopVectorize' and 'SLPVectorize' out of the desire to be able to disable vectorization using the cl::opt flags 'vectorize-loops'/'slp-vectorize' which the before mentioned fields default to. Unfortunately, this turns off vectorization because those fields default to false. This commit adds flags to the LTO library to disable lto vectorization which reconciles the desire to optionally disable vectorization during LTO and the desired behavior of defaulting to enabled vectorization. We really want tools to set PassManager flags directly to enable/disable vectorization and not go the route via cl::opt flags *in* PassManagerBuilder.cpp. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220652 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -32,6 +32,10 @@ static cl::opt<bool>
|
||||
DisableGVNLoadPRE("disable-gvn-loadpre", cl::init(false),
|
||||
cl::desc("Do not run the GVN load PRE pass"));
|
||||
|
||||
static cl::opt<bool>
|
||||
DisableLTOVectorization("disable-lto-vectorization", cl::init(false),
|
||||
cl::desc("Do not run loop or slp vectorization during LTO"));
|
||||
|
||||
// Holds most recent error string.
|
||||
// *** Not thread safe ***
|
||||
static std::string sLastErrorString;
|
||||
@@ -252,7 +256,8 @@ const void *lto_codegen_compile(lto_code_gen_t cg, size_t *length) {
|
||||
parsedOptions = true;
|
||||
}
|
||||
return unwrap(cg)->compile(length, DisableOpt, DisableInline,
|
||||
DisableGVNLoadPRE, sLastErrorString);
|
||||
DisableGVNLoadPRE, DisableLTOVectorization,
|
||||
sLastErrorString);
|
||||
}
|
||||
|
||||
bool lto_codegen_compile_to_file(lto_code_gen_t cg, const char **name) {
|
||||
@@ -261,8 +266,9 @@ bool lto_codegen_compile_to_file(lto_code_gen_t cg, const char **name) {
|
||||
lto_add_attrs(cg);
|
||||
parsedOptions = true;
|
||||
}
|
||||
return !unwrap(cg)->compile_to_file(name, DisableOpt, DisableInline,
|
||||
DisableGVNLoadPRE, sLastErrorString);
|
||||
return !unwrap(cg)->compile_to_file(
|
||||
name, DisableOpt, DisableInline, DisableGVNLoadPRE,
|
||||
DisableLTOVectorization, sLastErrorString);
|
||||
}
|
||||
|
||||
void lto_codegen_debug_options(lto_code_gen_t cg, const char *opt) {
|
||||
|
Reference in New Issue
Block a user