/* This is recommended by the instruction combining pass. */
LLVMAddEarlyCSEMemSSAPass(compiler->passmgr);
LLVMAddInstructionCombiningPass(compiler->passmgr);
+
+ /* Get the data layout. */
+ LLVMTargetDataRef data_layout = LLVMCreateTargetDataLayout(compiler->tm);
+ if (!data_layout)
+ return;
+ compiler->data_layout = LLVMCopyStringRepOfTargetData(data_layout);
+ LLVMDisposeTargetData(data_layout);
}
static void si_destroy_compiler(struct si_compiler *compiler)
{
+ if (compiler->data_layout)
+ LLVMDisposeMessage((char*)compiler->data_layout);
if (compiler->passmgr)
LLVMDisposePassManager(compiler->passmgr);
if (compiler->target_library_info)
struct si_compiler {
LLVMTargetMachineRef tm;
const char *triple;
+ const char *data_layout;
LLVMTargetLibraryInfoRef target_library_info;
LLVMPassManagerRef passmgr;
};
ctx->gallivm.module = LLVMModuleCreateWithNameInContext("tgsi",
ctx->gallivm.context);
LLVMSetTarget(ctx->gallivm.module, compiler->triple);
-
- LLVMTargetDataRef data_layout = LLVMCreateTargetDataLayout(compiler->tm);
- char *data_layout_str = LLVMCopyStringRepOfTargetData(data_layout);
- LLVMSetDataLayout(ctx->gallivm.module, data_layout_str);
- LLVMDisposeTargetData(data_layout);
- LLVMDisposeMessage(data_layout_str);
+ LLVMSetDataLayout(ctx->gallivm.module, compiler->data_layout);
bool unsafe_fpmath = (sscreen->debug_flags & DBG(UNSAFE_MATH)) != 0;
enum ac_float_mode float_mode =