2016-10-07 09:16:09 +10:00
|
|
|
/*
|
|
|
|
|
* Copyright 2014 Advanced Micro Devices, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/* based on pieces from si_pipe.c and radeon_llvm_emit.c */
|
|
|
|
|
#include "ac_llvm_util.h"
|
2018-03-01 22:12:54 +01:00
|
|
|
#include "ac_llvm_build.h"
|
2017-02-22 02:29:12 +01:00
|
|
|
#include "util/bitscan.h"
|
2016-10-07 09:16:09 +10:00
|
|
|
#include <llvm-c/Core.h>
|
2017-03-15 07:15:50 +10:00
|
|
|
#include <llvm-c/Support.h>
|
2018-06-27 08:52:20 +10:00
|
|
|
#include <llvm-c/Transforms/IPO.h>
|
|
|
|
|
#include <llvm-c/Transforms/Scalar.h>
|
|
|
|
|
#include <llvm-c/Transforms/Utils.h>
|
2016-10-07 09:16:09 +10:00
|
|
|
#include "c11/threads.h"
|
2018-07-20 19:54:56 +02:00
|
|
|
#include "gallivm/lp_bld_misc.h"
|
2018-03-01 22:12:54 +01:00
|
|
|
#include "util/u_math.h"
|
2016-10-07 09:16:09 +10:00
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
2017-02-03 10:05:00 +10:00
|
|
|
#include <string.h>
|
2017-02-02 09:13:44 +10:00
|
|
|
|
2016-10-07 09:16:09 +10:00
|
|
|
static void ac_init_llvm_target()
|
|
|
|
|
{
|
|
|
|
|
LLVMInitializeAMDGPUTargetInfo();
|
|
|
|
|
LLVMInitializeAMDGPUTarget();
|
|
|
|
|
LLVMInitializeAMDGPUTargetMC();
|
|
|
|
|
LLVMInitializeAMDGPUAsmPrinter();
|
2017-03-15 07:15:50 +10:00
|
|
|
|
2017-07-04 22:38:37 +02:00
|
|
|
/* For inline assembly. */
|
|
|
|
|
LLVMInitializeAMDGPUAsmParser();
|
|
|
|
|
|
|
|
|
|
/* Workaround for bug in llvm 4.0 that causes image intrinsics
|
2017-03-15 07:15:50 +10:00
|
|
|
* to disappear.
|
|
|
|
|
* https://reviews.llvm.org/D26348
|
2018-02-02 19:26:49 +01:00
|
|
|
*
|
|
|
|
|
* "mesa" is the prefix for error messages.
|
2018-07-20 19:54:56 +02:00
|
|
|
*
|
|
|
|
|
* -global-isel-abort=2 is a no-op unless global isel has been enabled.
|
|
|
|
|
* This option tells the backend to fall-back to SelectionDAG and print
|
|
|
|
|
* a diagnostic message if global isel fails.
|
2017-03-15 07:15:50 +10:00
|
|
|
*/
|
2019-04-04 11:49:52 +02:00
|
|
|
const char *argv[] = { "mesa", "-simplifycfg-sink-common=false", "-global-isel-abort=2" };
|
|
|
|
|
LLVMParseCommandLineOptions(ARRAY_SIZE(argv), argv, NULL);
|
2016-10-07 09:16:09 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static once_flag ac_init_llvm_target_once_flag = ONCE_FLAG_INIT;
|
|
|
|
|
|
2018-06-27 08:36:41 +10:00
|
|
|
void ac_init_llvm_once(void)
|
|
|
|
|
{
|
|
|
|
|
call_once(&ac_init_llvm_target_once_flag, ac_init_llvm_target);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-27 10:24:18 +10:00
|
|
|
static LLVMTargetRef ac_get_llvm_target(const char *triple)
|
2016-10-07 09:16:09 +10:00
|
|
|
{
|
|
|
|
|
LLVMTargetRef target = NULL;
|
|
|
|
|
char *err_message = NULL;
|
|
|
|
|
|
|
|
|
|
if (LLVMGetTargetFromTriple(triple, &target, &err_message)) {
|
|
|
|
|
fprintf(stderr, "Cannot find target for triple %s ", triple);
|
|
|
|
|
if (err_message) {
|
|
|
|
|
fprintf(stderr, "%s\n", err_message);
|
|
|
|
|
}
|
|
|
|
|
LLVMDisposeMessage(err_message);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return target;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 03:43:38 +01:00
|
|
|
const char *ac_get_llvm_processor_name(enum radeon_family family)
|
2016-10-07 09:16:09 +10:00
|
|
|
{
|
|
|
|
|
switch (family) {
|
|
|
|
|
case CHIP_TAHITI:
|
|
|
|
|
return "tahiti";
|
|
|
|
|
case CHIP_PITCAIRN:
|
|
|
|
|
return "pitcairn";
|
|
|
|
|
case CHIP_VERDE:
|
|
|
|
|
return "verde";
|
|
|
|
|
case CHIP_OLAND:
|
|
|
|
|
return "oland";
|
|
|
|
|
case CHIP_HAINAN:
|
|
|
|
|
return "hainan";
|
|
|
|
|
case CHIP_BONAIRE:
|
|
|
|
|
return "bonaire";
|
|
|
|
|
case CHIP_KABINI:
|
|
|
|
|
return "kabini";
|
|
|
|
|
case CHIP_KAVERI:
|
|
|
|
|
return "kaveri";
|
|
|
|
|
case CHIP_HAWAII:
|
|
|
|
|
return "hawaii";
|
|
|
|
|
case CHIP_TONGA:
|
|
|
|
|
return "tonga";
|
|
|
|
|
case CHIP_ICELAND:
|
|
|
|
|
return "iceland";
|
|
|
|
|
case CHIP_CARRIZO:
|
|
|
|
|
return "carrizo";
|
|
|
|
|
case CHIP_FIJI:
|
|
|
|
|
return "fiji";
|
|
|
|
|
case CHIP_STONEY:
|
|
|
|
|
return "stoney";
|
|
|
|
|
case CHIP_POLARIS10:
|
|
|
|
|
return "polaris10";
|
|
|
|
|
case CHIP_POLARIS11:
|
2017-05-05 10:27:33 +10:00
|
|
|
case CHIP_POLARIS12:
|
2017-02-27 23:28:07 +01:00
|
|
|
case CHIP_VEGAM:
|
2016-10-07 09:16:09 +10:00
|
|
|
return "polaris11";
|
2017-06-06 08:33:53 +10:00
|
|
|
case CHIP_VEGA10:
|
|
|
|
|
return "gfx900";
|
2018-04-30 18:10:50 -04:00
|
|
|
case CHIP_RAVEN:
|
|
|
|
|
return "gfx902";
|
|
|
|
|
case CHIP_VEGA12:
|
2018-11-02 09:50:32 +01:00
|
|
|
return "gfx904";
|
2017-11-07 02:02:21 +01:00
|
|
|
case CHIP_VEGA20:
|
2018-11-02 09:50:32 +01:00
|
|
|
return "gfx906";
|
2017-11-07 02:01:40 +01:00
|
|
|
case CHIP_RAVEN2:
|
2019-01-28 10:56:11 -05:00
|
|
|
return HAVE_LLVM >= 0x0800 ? "gfx909" : "gfx902";
|
2017-10-24 11:42:31 +00:00
|
|
|
case CHIP_NAVI10:
|
|
|
|
|
return "gfx1010";
|
|
|
|
|
case CHIP_NAVI12:
|
|
|
|
|
return "gfx1011";
|
|
|
|
|
case CHIP_NAVI14:
|
|
|
|
|
return "gfx1012";
|
2016-10-07 09:16:09 +10:00
|
|
|
default:
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-27 10:24:18 +10:00
|
|
|
static LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family,
|
|
|
|
|
enum ac_target_machine_options tm_options,
|
2018-07-19 22:55:49 -04:00
|
|
|
LLVMCodeGenOptLevel level,
|
2018-06-27 10:24:18 +10:00
|
|
|
const char **out_triple)
|
2016-10-07 09:16:09 +10:00
|
|
|
{
|
|
|
|
|
assert(family >= CHIP_TAHITI);
|
2017-07-06 03:00:02 +01:00
|
|
|
char features[256];
|
2017-07-06 02:56:21 +01:00
|
|
|
const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--";
|
2016-10-07 09:16:09 +10:00
|
|
|
LLVMTargetRef target = ac_get_llvm_target(triple);
|
2017-07-06 03:00:02 +01:00
|
|
|
|
|
|
|
|
snprintf(features, sizeof(features),
|
2017-10-24 11:42:31 +00:00
|
|
|
"+DumpCode,-fp32-denormals,+fp64-denormals%s%s%s%s%s%s%s",
|
2018-11-01 14:30:08 -04:00
|
|
|
HAVE_LLVM >= 0x0800 ? "" : ",+vgpr-spilling",
|
2017-10-24 11:42:31 +00:00
|
|
|
family >= CHIP_NAVI10 ? ",+wavefrontsize64,-wavefrontsize32" : "",
|
2017-11-07 03:50:19 +01:00
|
|
|
tm_options & AC_TM_SISCHED ? ",+si-scheduler" : "",
|
|
|
|
|
tm_options & AC_TM_FORCE_ENABLE_XNACK ? ",+xnack" : "",
|
|
|
|
|
tm_options & AC_TM_FORCE_DISABLE_XNACK ? ",-xnack" : "",
|
2019-05-07 16:09:46 +02:00
|
|
|
tm_options & AC_TM_PROMOTE_ALLOCA_TO_SCRATCH ? ",-promote-alloca" : "",
|
|
|
|
|
tm_options & AC_TM_NO_LOAD_STORE_OPT ? ",-load-store-opt" : "");
|
|
|
|
|
|
2016-10-07 09:16:09 +10:00
|
|
|
LLVMTargetMachineRef tm = LLVMCreateTargetMachine(
|
|
|
|
|
target,
|
|
|
|
|
triple,
|
|
|
|
|
ac_get_llvm_processor_name(family),
|
2017-07-06 03:00:02 +01:00
|
|
|
features,
|
2018-07-19 22:55:49 -04:00
|
|
|
level,
|
2016-10-07 09:16:09 +10:00
|
|
|
LLVMRelocDefault,
|
|
|
|
|
LLVMCodeModelDefault);
|
|
|
|
|
|
2018-04-09 18:35:45 -04:00
|
|
|
if (out_triple)
|
|
|
|
|
*out_triple = triple;
|
2018-07-20 19:54:56 +02:00
|
|
|
if (tm_options & AC_TM_ENABLE_GLOBAL_ISEL)
|
|
|
|
|
ac_enable_global_isel(tm);
|
2016-10-07 09:16:09 +10:00
|
|
|
return tm;
|
|
|
|
|
}
|
2017-01-10 15:35:27 +01:00
|
|
|
|
2018-06-27 10:24:18 +10:00
|
|
|
static LLVMPassManagerRef ac_create_passmgr(LLVMTargetLibraryInfoRef target_library_info,
|
|
|
|
|
bool check_ir)
|
2018-06-27 08:52:20 +10:00
|
|
|
{
|
|
|
|
|
LLVMPassManagerRef passmgr = LLVMCreatePassManager();
|
|
|
|
|
if (!passmgr)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2018-06-27 09:02:25 +10:00
|
|
|
if (target_library_info)
|
|
|
|
|
LLVMAddTargetLibraryInfo(target_library_info,
|
|
|
|
|
passmgr);
|
2018-06-27 08:52:20 +10:00
|
|
|
|
|
|
|
|
if (check_ir)
|
|
|
|
|
LLVMAddVerifierPass(passmgr);
|
|
|
|
|
LLVMAddAlwaysInlinerPass(passmgr);
|
2018-07-05 02:27:45 -04:00
|
|
|
/* Normally, the pass manager runs all passes on one function before
|
|
|
|
|
* moving onto another. Adding a barrier no-op pass forces the pass
|
|
|
|
|
* manager to run the inliner on all functions first, which makes sure
|
|
|
|
|
* that the following passes are only run on the remaining non-inline
|
|
|
|
|
* function, so it removes useless work done on dead inline functions.
|
|
|
|
|
*/
|
|
|
|
|
ac_llvm_add_barrier_noop_pass(passmgr);
|
2018-06-27 08:52:20 +10:00
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-10 15:35:27 +01:00
|
|
|
static const char *attr_to_str(enum ac_func_attr attr)
|
|
|
|
|
{
|
|
|
|
|
switch (attr) {
|
|
|
|
|
case AC_FUNC_ATTR_ALWAYSINLINE: return "alwaysinline";
|
|
|
|
|
case AC_FUNC_ATTR_INREG: return "inreg";
|
|
|
|
|
case AC_FUNC_ATTR_NOALIAS: return "noalias";
|
|
|
|
|
case AC_FUNC_ATTR_NOUNWIND: return "nounwind";
|
|
|
|
|
case AC_FUNC_ATTR_READNONE: return "readnone";
|
|
|
|
|
case AC_FUNC_ATTR_READONLY: return "readonly";
|
2017-02-24 02:11:07 +01:00
|
|
|
case AC_FUNC_ATTR_WRITEONLY: return "writeonly";
|
|
|
|
|
case AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY: return "inaccessiblememonly";
|
2017-01-22 02:36:48 +01:00
|
|
|
case AC_FUNC_ATTR_CONVERGENT: return "convergent";
|
2017-01-10 15:35:27 +01:00
|
|
|
default:
|
|
|
|
|
fprintf(stderr, "Unhandled function attribute: %x\n", attr);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-01 22:16:27 +01:00
|
|
|
void
|
2017-02-22 02:29:12 +01:00
|
|
|
ac_add_function_attr(LLVMContextRef ctx, LLVMValueRef function,
|
|
|
|
|
int attr_idx, enum ac_func_attr attr)
|
2017-01-10 15:35:27 +01:00
|
|
|
{
|
|
|
|
|
const char *attr_name = attr_to_str(attr);
|
|
|
|
|
unsigned kind_id = LLVMGetEnumAttributeKindForName(attr_name,
|
|
|
|
|
strlen(attr_name));
|
2017-02-22 02:29:12 +01:00
|
|
|
LLVMAttributeRef llvm_attr = LLVMCreateEnumAttribute(ctx, kind_id, 0);
|
|
|
|
|
|
|
|
|
|
if (LLVMIsAFunction(function))
|
|
|
|
|
LLVMAddAttributeAtIndex(function, attr_idx, llvm_attr);
|
|
|
|
|
else
|
|
|
|
|
LLVMAddCallSiteAttribute(function, attr_idx, llvm_attr);
|
2017-01-10 15:35:27 +01:00
|
|
|
}
|
|
|
|
|
|
2017-02-22 02:29:12 +01:00
|
|
|
void ac_add_func_attributes(LLVMContextRef ctx, LLVMValueRef function,
|
|
|
|
|
unsigned attrib_mask)
|
|
|
|
|
{
|
|
|
|
|
attrib_mask |= AC_FUNC_ATTR_NOUNWIND;
|
|
|
|
|
attrib_mask &= ~AC_FUNC_ATTR_LEGACY;
|
|
|
|
|
|
|
|
|
|
while (attrib_mask) {
|
|
|
|
|
enum ac_func_attr attr = 1u << u_bit_scan(&attrib_mask);
|
|
|
|
|
ac_add_function_attr(ctx, function, -1, attr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-28 17:32:05 +01:00
|
|
|
void
|
|
|
|
|
ac_dump_module(LLVMModuleRef module)
|
|
|
|
|
{
|
|
|
|
|
char *str = LLVMPrintModuleToString(module);
|
|
|
|
|
fprintf(stderr, "%s", str);
|
|
|
|
|
LLVMDisposeMessage(str);
|
|
|
|
|
}
|
2017-06-05 01:20:10 +01:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_llvm_add_target_dep_function_attr(LLVMValueRef F,
|
2018-02-25 00:33:28 +01:00
|
|
|
const char *name, unsigned value)
|
2017-06-05 01:20:10 +01:00
|
|
|
{
|
|
|
|
|
char str[16];
|
|
|
|
|
|
2018-02-25 00:33:28 +01:00
|
|
|
snprintf(str, sizeof(str), "0x%x", value);
|
2017-06-05 01:20:10 +01:00
|
|
|
LLVMAddTargetDependentFunctionAttr(F, name, str);
|
2019-05-31 15:38:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ac_llvm_set_workgroup_size(LLVMValueRef F, unsigned size)
|
|
|
|
|
{
|
|
|
|
|
if (!size)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
char str[32];
|
|
|
|
|
snprintf(str, sizeof(str), "%u,%u", size, size);
|
|
|
|
|
LLVMAddTargetDependentFunctionAttr(F, "amdgpu-flat-work-group-size", str);
|
2017-06-05 01:20:10 +01:00
|
|
|
}
|
2018-03-01 22:12:54 +01:00
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
|
ac_count_scratch_private_memory(LLVMValueRef function)
|
|
|
|
|
{
|
|
|
|
|
unsigned private_mem_vgprs = 0;
|
|
|
|
|
|
|
|
|
|
/* Process all LLVM instructions. */
|
|
|
|
|
LLVMBasicBlockRef bb = LLVMGetFirstBasicBlock(function);
|
|
|
|
|
while (bb) {
|
|
|
|
|
LLVMValueRef next = LLVMGetFirstInstruction(bb);
|
|
|
|
|
|
|
|
|
|
while (next) {
|
|
|
|
|
LLVMValueRef inst = next;
|
|
|
|
|
next = LLVMGetNextInstruction(next);
|
|
|
|
|
|
|
|
|
|
if (LLVMGetInstructionOpcode(inst) != LLVMAlloca)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
LLVMTypeRef type = LLVMGetElementType(LLVMTypeOf(inst));
|
|
|
|
|
/* No idea why LLVM aligns allocas to 4 elements. */
|
|
|
|
|
unsigned alignment = LLVMGetAlignment(inst);
|
|
|
|
|
unsigned dw_size = align(ac_get_type_size(type) / 4, alignment);
|
|
|
|
|
private_mem_vgprs += dw_size;
|
|
|
|
|
}
|
|
|
|
|
bb = LLVMGetNextBasicBlock(bb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return private_mem_vgprs;
|
|
|
|
|
}
|
2018-07-03 09:51:42 +10:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
ac_init_llvm_compiler(struct ac_llvm_compiler *compiler,
|
|
|
|
|
enum radeon_family family,
|
|
|
|
|
enum ac_target_machine_options tm_options)
|
|
|
|
|
{
|
|
|
|
|
const char *triple;
|
|
|
|
|
memset(compiler, 0, sizeof(*compiler));
|
|
|
|
|
|
2018-07-19 22:55:49 -04:00
|
|
|
compiler->tm = ac_create_target_machine(family, tm_options,
|
|
|
|
|
LLVMCodeGenLevelDefault,
|
|
|
|
|
&triple);
|
2018-07-03 09:51:42 +10:00
|
|
|
if (!compiler->tm)
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-07-19 22:55:49 -04:00
|
|
|
if (tm_options & AC_TM_CREATE_LOW_OPT) {
|
|
|
|
|
compiler->low_opt_tm =
|
|
|
|
|
ac_create_target_machine(family, tm_options,
|
|
|
|
|
LLVMCodeGenLevelLess, NULL);
|
|
|
|
|
if (!compiler->low_opt_tm)
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-02 09:50:32 +01:00
|
|
|
compiler->target_library_info =
|
|
|
|
|
ac_create_target_library_info(triple);
|
|
|
|
|
if (!compiler->target_library_info)
|
|
|
|
|
goto fail;
|
2018-07-03 09:51:42 +10:00
|
|
|
|
|
|
|
|
compiler->passmgr = ac_create_passmgr(compiler->target_library_info,
|
|
|
|
|
tm_options & AC_TM_CHECK_IR);
|
|
|
|
|
if (!compiler->passmgr)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
fail:
|
|
|
|
|
ac_destroy_llvm_compiler(compiler);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ac_destroy_llvm_compiler(struct ac_llvm_compiler *compiler)
|
|
|
|
|
{
|
2019-06-29 02:25:23 -04:00
|
|
|
ac_destroy_llvm_passes(compiler->passes);
|
|
|
|
|
ac_destroy_llvm_passes(compiler->low_opt_passes);
|
|
|
|
|
|
2018-07-03 09:51:42 +10:00
|
|
|
if (compiler->passmgr)
|
|
|
|
|
LLVMDisposePassManager(compiler->passmgr);
|
|
|
|
|
if (compiler->target_library_info)
|
|
|
|
|
ac_dispose_target_library_info(compiler->target_library_info);
|
2018-07-19 22:55:49 -04:00
|
|
|
if (compiler->low_opt_tm)
|
|
|
|
|
LLVMDisposeTargetMachine(compiler->low_opt_tm);
|
2018-07-03 09:51:42 +10:00
|
|
|
if (compiler->tm)
|
|
|
|
|
LLVMDisposeTargetMachine(compiler->tm);
|
|
|
|
|
}
|