#include "util/bitscan.h"
#include <llvm-c/Core.h>
#include <llvm-c/Support.h>
+#include <llvm-c/Transforms/IPO.h>
+#include <llvm-c/Transforms/Scalar.h>
+#if HAVE_LLVM >= 0x0700
+#include <llvm-c/Transforms/Utils.h>
+#endif
#include "c11/threads.h"
#include "util/u_math.h"
return tm;
}
+LLVMPassManagerRef ac_create_passmgr(LLVMTargetLibraryInfoRef target_library_info,
+ bool check_ir)
+{
+ LLVMPassManagerRef passmgr = LLVMCreatePassManager();
+ if (!passmgr)
+ return NULL;
+
+ LLVMAddTargetLibraryInfo(target_library_info,
+ passmgr);
+
+ if (check_ir)
+ LLVMAddVerifierPass(passmgr);
+ LLVMAddAlwaysInlinerPass(passmgr);
+ /* This pass should eliminate all the load and store instructions. */
+ LLVMAddPromoteMemoryToRegisterPass(passmgr);
+ LLVMAddScalarReplAggregatesPass(passmgr);
+ LLVMAddLICMPass(passmgr);
+ LLVMAddAggressiveDCEPass(passmgr);
+ LLVMAddCFGSimplificationPass(passmgr);
+ /* This is recommended by the instruction combining pass. */
+ LLVMAddEarlyCSEMemSSAPass(passmgr);
+ LLVMAddInstructionCombiningPass(passmgr);
+ return passmgr;
+}
+
static const char *attr_to_str(enum ac_func_attr attr)
{
switch (attr) {
#include "vl/vl_decoder.h"
#include "driver_ddebug/dd_util.h"
-#include <llvm-c/Transforms/IPO.h>
-#include <llvm-c/Transforms/Scalar.h>
-#if HAVE_LLVM >= 0x0700
-#include <llvm-c/Transforms/Utils.h>
-#endif
-
static const struct debug_named_value debug_options[] = {
/* Shader logging options: */
{ "vs", DBG(VS), "Print vertex shaders" },
if (!compiler->target_library_info)
return;
- compiler->passmgr = LLVMCreatePassManager();
+ compiler->passmgr = ac_create_passmgr(compiler->target_library_info,
+ (sscreen->debug_flags & DBG(CHECK_IR)));
if (!compiler->passmgr)
return;
-
- LLVMAddTargetLibraryInfo(compiler->target_library_info,
- compiler->passmgr);
-
- /* Add LLVM passes into the pass manager. */
- if (sscreen->debug_flags & DBG(CHECK_IR))
- LLVMAddVerifierPass(compiler->passmgr);
-
- LLVMAddAlwaysInlinerPass(compiler->passmgr);
- /* This pass should eliminate all the load and store instructions. */
- LLVMAddPromoteMemoryToRegisterPass(compiler->passmgr);
- LLVMAddScalarReplAggregatesPass(compiler->passmgr);
- LLVMAddLICMPass(compiler->passmgr);
- LLVMAddAggressiveDCEPass(compiler->passmgr);
- LLVMAddCFGSimplificationPass(compiler->passmgr);
- /* This is recommended by the instruction combining pass. */
- LLVMAddEarlyCSEMemSSAPass(compiler->passmgr);
- LLVMAddInstructionCombiningPass(compiler->passmgr);
}
static void si_destroy_compiler(struct si_compiler *compiler)