2018-07-14 12:45:15 -07:00
|
|
|
const std = @import("std");
|
2018-07-14 13:12:41 -07:00
|
|
|
const Compilation = @import("compilation.zig").Compilation;
|
2018-07-14 12:45:15 -07:00
|
|
|
const llvm = @import("llvm.zig");
|
2018-07-16 17:52:50 -07:00
|
|
|
const c = @import("c.zig");
|
2018-07-14 12:45:15 -07:00
|
|
|
const ir = @import("ir.zig");
|
|
|
|
const Value = @import("value.zig").Value;
|
|
|
|
const Type = @import("type.zig").Type;
|
2018-07-24 17:24:05 -07:00
|
|
|
const Scope = @import("scope.zig").Scope;
|
2019-11-23 10:15:59 -08:00
|
|
|
const util = @import("util.zig");
|
2018-07-14 12:45:15 -07:00
|
|
|
const event = std.event;
|
2018-07-14 21:04:12 -07:00
|
|
|
const assert = std.debug.assert;
|
2018-07-16 17:52:50 -07:00
|
|
|
const DW = std.dwarf;
|
2018-10-26 11:59:58 -07:00
|
|
|
const maxInt = std.math.maxInt;
|
2018-07-14 12:45:15 -07:00
|
|
|
|
2019-11-07 14:18:14 -08:00
|
|
|
pub async fn renderToLlvm(comp: *Compilation, fn_val: *Value.Fn, code: *ir.Code) Compilation.BuildError!void {
|
2018-07-14 12:45:15 -07:00
|
|
|
fn_val.base.ref();
|
2018-07-14 13:12:41 -07:00
|
|
|
defer fn_val.base.deref(comp);
|
2018-07-16 17:52:50 -07:00
|
|
|
defer code.destroy(comp.gpa());
|
|
|
|
|
2019-11-07 14:18:14 -08:00
|
|
|
var output_path = try comp.createRandomOutputPath(comp.target.oFileExt());
|
2018-07-16 17:52:50 -07:00
|
|
|
errdefer output_path.deinit();
|
2018-07-14 12:45:15 -07:00
|
|
|
|
2018-08-10 09:28:20 -07:00
|
|
|
const llvm_handle = try comp.zig_compiler.getAnyLlvmContext();
|
|
|
|
defer llvm_handle.release(comp.zig_compiler);
|
2018-07-14 12:45:15 -07:00
|
|
|
|
|
|
|
const context = llvm_handle.node.data;
|
|
|
|
|
2019-11-26 00:27:51 -08:00
|
|
|
const module = llvm.ModuleCreateWithNameInContext(comp.name.toSliceConst(), context) orelse return error.OutOfMemory;
|
2018-07-14 12:45:15 -07:00
|
|
|
defer llvm.DisposeModule(module);
|
|
|
|
|
2019-11-26 00:27:51 -08:00
|
|
|
llvm.SetTarget(module, comp.llvm_triple.toSliceConst());
|
2018-07-16 17:52:50 -07:00
|
|
|
llvm.SetDataLayout(module, comp.target_layout_str);
|
|
|
|
|
2019-11-23 10:15:59 -08:00
|
|
|
if (util.getObjectFormat(comp.target) == .coff) {
|
2018-07-16 17:52:50 -07:00
|
|
|
llvm.AddModuleCodeViewFlag(module);
|
|
|
|
} else {
|
|
|
|
llvm.AddModuleDebugInfoFlag(module);
|
|
|
|
}
|
|
|
|
|
2018-07-14 12:45:15 -07:00
|
|
|
const builder = llvm.CreateBuilderInContext(context) orelse return error.OutOfMemory;
|
|
|
|
defer llvm.DisposeBuilder(builder);
|
|
|
|
|
2018-07-16 17:52:50 -07:00
|
|
|
const dibuilder = llvm.CreateDIBuilder(module, true) orelse return error.OutOfMemory;
|
|
|
|
defer llvm.DisposeDIBuilder(dibuilder);
|
|
|
|
|
|
|
|
// Don't use ZIG_VERSION_STRING here. LLVM misparses it when it includes
|
|
|
|
// the git revision.
|
2019-12-08 20:17:03 -08:00
|
|
|
const producer = try std.Buffer.allocPrint(&code.arena.allocator, "zig {}.{}.{}", .{
|
2019-11-26 00:27:51 -08:00
|
|
|
@as(u32, c.ZIG_VERSION_MAJOR),
|
|
|
|
@as(u32, c.ZIG_VERSION_MINOR),
|
|
|
|
@as(u32, c.ZIG_VERSION_PATCH),
|
2019-12-08 20:17:03 -08:00
|
|
|
});
|
2019-11-19 17:29:08 -08:00
|
|
|
const flags = "";
|
2018-07-16 17:52:50 -07:00
|
|
|
const runtime_version = 0;
|
|
|
|
const compile_unit_file = llvm.CreateFile(
|
|
|
|
dibuilder,
|
2019-11-26 00:27:51 -08:00
|
|
|
comp.name.toSliceConst(),
|
|
|
|
comp.root_package.root_src_dir.toSliceConst(),
|
2018-07-16 17:52:50 -07:00
|
|
|
) orelse return error.OutOfMemory;
|
2019-11-06 22:31:00 -08:00
|
|
|
const is_optimized = comp.build_mode != .Debug;
|
2018-07-16 17:52:50 -07:00
|
|
|
const compile_unit = llvm.CreateCompileUnit(
|
|
|
|
dibuilder,
|
|
|
|
DW.LANG_C99,
|
|
|
|
compile_unit_file,
|
2019-11-26 00:27:51 -08:00
|
|
|
producer.toSliceConst(),
|
2018-07-16 17:52:50 -07:00
|
|
|
is_optimized,
|
|
|
|
flags,
|
|
|
|
runtime_version,
|
2019-11-19 17:29:08 -08:00
|
|
|
"",
|
2018-07-16 17:52:50 -07:00
|
|
|
0,
|
|
|
|
!comp.strip,
|
|
|
|
) orelse return error.OutOfMemory;
|
|
|
|
|
2018-11-13 05:08:37 -08:00
|
|
|
var ofile = ObjectFile{
|
2018-07-14 13:12:41 -07:00
|
|
|
.comp = comp,
|
2018-07-14 12:45:15 -07:00
|
|
|
.module = module,
|
|
|
|
.builder = builder,
|
2018-07-16 17:52:50 -07:00
|
|
|
.dibuilder = dibuilder,
|
2018-07-14 12:45:15 -07:00
|
|
|
.context = context,
|
2019-11-06 11:29:18 -08:00
|
|
|
.lock = event.Lock.init(),
|
2018-07-22 20:27:58 -07:00
|
|
|
.arena = &code.arena.allocator,
|
2018-07-14 12:45:15 -07:00
|
|
|
};
|
|
|
|
|
2018-07-14 13:12:41 -07:00
|
|
|
try renderToLlvmModule(&ofile, fn_val, code);
|
2018-07-14 12:45:15 -07:00
|
|
|
|
2018-07-14 21:04:12 -07:00
|
|
|
// TODO module level assembly
|
|
|
|
//if (buf_len(&g->global_asm) != 0) {
|
|
|
|
// LLVMSetModuleInlineAsm(g->module, buf_ptr(&g->global_asm));
|
|
|
|
//}
|
|
|
|
|
2018-07-16 17:52:50 -07:00
|
|
|
llvm.DIBuilderFinalize(dibuilder);
|
2018-07-14 21:04:12 -07:00
|
|
|
|
2018-07-14 13:12:41 -07:00
|
|
|
if (comp.verbose_llvm_ir) {
|
2019-12-08 20:17:03 -08:00
|
|
|
std.debug.warn("raw module:\n", .{});
|
2018-07-14 13:12:41 -07:00
|
|
|
llvm.DumpModule(ofile.module);
|
2018-07-14 12:45:15 -07:00
|
|
|
}
|
2018-07-14 21:04:12 -07:00
|
|
|
|
|
|
|
// verify the llvm module when safety is on
|
|
|
|
if (std.debug.runtime_safety) {
|
2019-11-26 00:27:51 -08:00
|
|
|
var error_ptr: ?[*:0]u8 = null;
|
2018-07-14 21:04:12 -07:00
|
|
|
_ = llvm.VerifyModule(ofile.module, llvm.AbortProcessAction, &error_ptr);
|
|
|
|
}
|
2018-07-16 17:52:50 -07:00
|
|
|
|
2019-11-06 22:31:00 -08:00
|
|
|
const is_small = comp.build_mode == .ReleaseSmall;
|
|
|
|
const is_debug = comp.build_mode == .Debug;
|
2018-07-16 17:52:50 -07:00
|
|
|
|
2019-11-26 00:27:51 -08:00
|
|
|
var err_msg: [*:0]u8 = undefined;
|
2018-07-16 17:52:50 -07:00
|
|
|
// TODO integrate this with evented I/O
|
|
|
|
if (llvm.TargetMachineEmitToFile(
|
|
|
|
comp.target_machine,
|
|
|
|
module,
|
2019-11-26 00:27:51 -08:00
|
|
|
output_path.toSliceConst(),
|
2018-07-16 17:52:50 -07:00
|
|
|
llvm.EmitBinary,
|
|
|
|
&err_msg,
|
|
|
|
is_debug,
|
|
|
|
is_small,
|
|
|
|
)) {
|
|
|
|
if (std.debug.runtime_safety) {
|
2019-12-08 20:17:03 -08:00
|
|
|
std.debug.panic("unable to write object file {}: {s}\n", .{ output_path.toSliceConst(), err_msg });
|
2018-07-16 17:52:50 -07:00
|
|
|
}
|
|
|
|
return error.WritingObjectFileFailed;
|
|
|
|
}
|
|
|
|
//validate_inline_fns(g); TODO
|
|
|
|
fn_val.containing_object = output_path;
|
2018-07-17 10:18:13 -07:00
|
|
|
if (comp.verbose_llvm_ir) {
|
2019-12-08 20:17:03 -08:00
|
|
|
std.debug.warn("optimized module:\n", .{});
|
2018-07-17 10:18:13 -07:00
|
|
|
llvm.DumpModule(ofile.module);
|
|
|
|
}
|
|
|
|
if (comp.verbose_link) {
|
2019-12-08 20:17:03 -08:00
|
|
|
std.debug.warn("created {}\n", .{output_path.toSliceConst()});
|
2018-07-17 10:18:13 -07:00
|
|
|
}
|
2018-07-14 12:45:15 -07:00
|
|
|
}
|
|
|
|
|
2018-11-13 05:08:37 -08:00
|
|
|
pub const ObjectFile = struct {
|
2018-07-14 13:12:41 -07:00
|
|
|
comp: *Compilation,
|
2019-02-14 12:48:28 -08:00
|
|
|
module: *llvm.Module,
|
|
|
|
builder: *llvm.Builder,
|
2018-07-16 17:52:50 -07:00
|
|
|
dibuilder: *llvm.DIBuilder,
|
2019-02-14 12:48:28 -08:00
|
|
|
context: *llvm.Context,
|
2018-07-14 12:45:15 -07:00
|
|
|
lock: event.Lock,
|
2018-07-22 20:27:58 -07:00
|
|
|
arena: *std.mem.Allocator,
|
2018-07-14 12:45:15 -07:00
|
|
|
|
2018-07-16 17:52:50 -07:00
|
|
|
fn gpa(self: *ObjectFile) *std.mem.Allocator {
|
|
|
|
return self.comp.gpa();
|
2018-07-14 12:45:15 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-07-14 13:12:41 -07:00
|
|
|
pub fn renderToLlvmModule(ofile: *ObjectFile, fn_val: *Value.Fn, code: *ir.Code) !void {
|
2018-07-14 12:45:15 -07:00
|
|
|
// TODO audit more of codegen.cpp:fn_llvm_value and port more logic
|
2018-07-22 20:27:58 -07:00
|
|
|
const llvm_fn_type = try fn_val.base.typ.getLlvmType(ofile.arena, ofile.context);
|
2018-07-14 21:04:12 -07:00
|
|
|
const llvm_fn = llvm.AddFunction(
|
|
|
|
ofile.module,
|
2019-11-26 00:27:51 -08:00
|
|
|
fn_val.symbol_name.toSliceConst(),
|
2018-07-14 21:04:12 -07:00
|
|
|
llvm_fn_type,
|
|
|
|
) orelse return error.OutOfMemory;
|
|
|
|
|
2018-07-24 17:24:05 -07:00
|
|
|
const want_fn_safety = fn_val.block_scope.?.safety.get(ofile.comp);
|
2018-07-14 21:04:12 -07:00
|
|
|
if (want_fn_safety and ofile.comp.haveLibC()) {
|
|
|
|
try addLLVMFnAttr(ofile, llvm_fn, "sspstrong");
|
|
|
|
try addLLVMFnAttrStr(ofile, llvm_fn, "stack-protector-buffer-size", "4");
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
//if (fn_val.align_stack) |align_stack| {
|
|
|
|
// try addLLVMFnAttrInt(ofile, llvm_fn, "alignstack", align_stack);
|
|
|
|
//}
|
|
|
|
|
2018-07-22 20:27:58 -07:00
|
|
|
const fn_type = fn_val.base.typ.cast(Type.Fn).?;
|
2018-07-24 11:20:49 -07:00
|
|
|
const fn_type_normal = &fn_type.key.data.Normal;
|
2018-07-14 21:04:12 -07:00
|
|
|
|
|
|
|
try addLLVMFnAttr(ofile, llvm_fn, "nounwind");
|
|
|
|
//add_uwtable_attr(g, fn_table_entry->llvm_value);
|
|
|
|
try addLLVMFnAttr(ofile, llvm_fn, "nobuiltin");
|
|
|
|
|
|
|
|
//if (g->build_mode == BuildModeDebug && fn_table_entry->fn_inline != FnInlineAlways) {
|
|
|
|
// ZigLLVMAddFunctionAttr(fn_table_entry->llvm_value, "no-frame-pointer-elim", "true");
|
|
|
|
// ZigLLVMAddFunctionAttr(fn_table_entry->llvm_value, "no-frame-pointer-elim-non-leaf", nullptr);
|
|
|
|
//}
|
|
|
|
|
|
|
|
//if (fn_table_entry->section_name) {
|
|
|
|
// LLVMSetSection(fn_table_entry->llvm_value, buf_ptr(fn_table_entry->section_name));
|
|
|
|
//}
|
|
|
|
//if (fn_table_entry->align_bytes > 0) {
|
|
|
|
// LLVMSetAlignment(fn_table_entry->llvm_value, (unsigned)fn_table_entry->align_bytes);
|
|
|
|
//} else {
|
|
|
|
// // We'd like to set the best alignment for the function here, but on Darwin LLVM gives
|
|
|
|
// // "Cannot getTypeInfo() on a type that is unsized!" assertion failure when calling
|
|
|
|
// // any of the functions for getting alignment. Not specifying the alignment should
|
|
|
|
// // use the ABI alignment, which is fine.
|
|
|
|
//}
|
|
|
|
|
|
|
|
//if (!type_has_bits(return_type)) {
|
|
|
|
// // nothing to do
|
|
|
|
//} else if (type_is_codegen_pointer(return_type)) {
|
|
|
|
// addLLVMAttr(fn_table_entry->llvm_value, 0, "nonnull");
|
|
|
|
//} else if (handle_is_ptr(return_type) &&
|
|
|
|
// calling_convention_does_first_arg_return(fn_type->data.fn.fn_type_id.cc))
|
|
|
|
//{
|
|
|
|
// addLLVMArgAttr(fn_table_entry->llvm_value, 0, "sret");
|
|
|
|
// addLLVMArgAttr(fn_table_entry->llvm_value, 0, "nonnull");
|
|
|
|
//}
|
|
|
|
|
|
|
|
// TODO set parameter attributes
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
//uint32_t err_ret_trace_arg_index = get_err_ret_trace_arg_index(g, fn_table_entry);
|
|
|
|
//if (err_ret_trace_arg_index != UINT32_MAX) {
|
|
|
|
// addLLVMArgAttr(fn_table_entry->llvm_value, (unsigned)err_ret_trace_arg_index, "nonnull");
|
|
|
|
//}
|
|
|
|
|
2018-07-24 11:20:49 -07:00
|
|
|
const cur_ret_ptr = if (fn_type_normal.return_type.handleIsPtr()) llvm.GetParam(llvm_fn, 0) else null;
|
2018-07-14 21:04:12 -07:00
|
|
|
|
|
|
|
// build all basic blocks
|
|
|
|
for (code.basic_block_list.toSlice()) |bb| {
|
|
|
|
bb.llvm_block = llvm.AppendBasicBlockInContext(
|
|
|
|
ofile.context,
|
|
|
|
llvm_fn,
|
|
|
|
bb.name_hint,
|
|
|
|
) orelse return error.OutOfMemory;
|
|
|
|
}
|
|
|
|
const entry_bb = code.basic_block_list.at(0);
|
|
|
|
llvm.PositionBuilderAtEnd(ofile.builder, entry_bb.llvm_block);
|
|
|
|
|
|
|
|
llvm.ClearCurrentDebugLocation(ofile.builder);
|
|
|
|
|
|
|
|
// TODO set up error return tracing
|
|
|
|
// TODO allocate temporary stack values
|
2018-07-24 17:24:05 -07:00
|
|
|
|
|
|
|
const var_list = fn_type.non_key.Normal.variable_list.toSliceConst();
|
|
|
|
// create debug variable declarations for variables and allocate all local variables
|
|
|
|
for (var_list) |var_scope, i| {
|
|
|
|
const var_type = switch (var_scope.data) {
|
2019-11-06 22:31:00 -08:00
|
|
|
.Const => unreachable,
|
|
|
|
.Param => |param| param.typ,
|
2018-07-24 17:24:05 -07:00
|
|
|
};
|
|
|
|
// if (!type_has_bits(var->value->type)) {
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
// if (ir_get_var_is_comptime(var))
|
|
|
|
// continue;
|
|
|
|
// if (type_requires_comptime(var->value->type))
|
|
|
|
// continue;
|
|
|
|
// if (var->src_arg_index == SIZE_MAX) {
|
|
|
|
// var->value_ref = build_alloca(g, var->value->type, buf_ptr(&var->name), var->align_bytes);
|
|
|
|
|
|
|
|
// var->di_loc_var = ZigLLVMCreateAutoVariable(g->dbuilder, get_di_scope(g, var->parent_scope),
|
|
|
|
// buf_ptr(&var->name), import->di_file, (unsigned)(var->decl_node->line + 1),
|
|
|
|
// var->value->type->di_type, !g->strip_debug_symbols, 0);
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
// it's a parameter
|
|
|
|
// assert(var->gen_arg_index != SIZE_MAX);
|
|
|
|
// TypeTableEntry *gen_type;
|
|
|
|
// FnGenParamInfo *gen_info = &fn_table_entry->type_entry->data.fn.gen_param_info[var->src_arg_index];
|
|
|
|
|
|
|
|
if (var_type.handleIsPtr()) {
|
|
|
|
// if (gen_info->is_byval) {
|
|
|
|
// gen_type = var->value->type;
|
|
|
|
// } else {
|
|
|
|
// gen_type = gen_info->type;
|
|
|
|
// }
|
|
|
|
var_scope.data.Param.llvm_value = llvm.GetParam(llvm_fn, @intCast(c_uint, i));
|
|
|
|
} else {
|
|
|
|
// gen_type = var->value->type;
|
2019-11-06 22:31:00 -08:00
|
|
|
var_scope.data.Param.llvm_value = try renderAlloca(ofile, var_type, var_scope.name, .Abi);
|
2018-07-24 17:24:05 -07:00
|
|
|
}
|
|
|
|
// if (var->decl_node) {
|
|
|
|
// var->di_loc_var = ZigLLVMCreateParameterVariable(g->dbuilder, get_di_scope(g, var->parent_scope),
|
|
|
|
// buf_ptr(&var->name), import->di_file,
|
|
|
|
// (unsigned)(var->decl_node->line + 1),
|
|
|
|
// gen_type->di_type, !g->strip_debug_symbols, 0, (unsigned)(var->gen_arg_index + 1));
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
2018-07-14 21:04:12 -07:00
|
|
|
// TODO finishing error return trace setup. we have to do this after all the allocas.
|
2018-07-24 17:24:05 -07:00
|
|
|
|
|
|
|
// create debug variable declarations for parameters
|
|
|
|
// rely on the first variables in the variable_list being parameters.
|
|
|
|
//size_t next_var_i = 0;
|
|
|
|
for (fn_type.key.data.Normal.params) |param, i| {
|
|
|
|
//FnGenParamInfo *info = &fn_table_entry->type_entry->data.fn.gen_param_info[param_i];
|
|
|
|
//if (info->gen_index == SIZE_MAX)
|
|
|
|
// continue;
|
|
|
|
const scope_var = var_list[i];
|
|
|
|
//assert(variable->src_arg_index != SIZE_MAX);
|
|
|
|
//next_var_i += 1;
|
|
|
|
//assert(variable);
|
|
|
|
//assert(variable->value_ref);
|
|
|
|
|
|
|
|
if (!param.typ.handleIsPtr()) {
|
|
|
|
//clear_debug_source_node(g);
|
|
|
|
const llvm_param = llvm.GetParam(llvm_fn, @intCast(c_uint, i));
|
2019-03-23 16:33:00 -07:00
|
|
|
_ = try renderStoreUntyped(
|
2018-07-24 17:24:05 -07:00
|
|
|
ofile,
|
|
|
|
llvm_param,
|
|
|
|
scope_var.data.Param.llvm_value,
|
2019-11-06 22:31:00 -08:00
|
|
|
.Abi,
|
|
|
|
.Non,
|
2018-07-24 17:24:05 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//if (variable->decl_node) {
|
|
|
|
// gen_var_debug_decl(g, variable);
|
|
|
|
//}
|
|
|
|
}
|
2018-07-14 21:04:12 -07:00
|
|
|
|
|
|
|
for (code.basic_block_list.toSlice()) |current_block| {
|
|
|
|
llvm.PositionBuilderAtEnd(ofile.builder, current_block.llvm_block);
|
|
|
|
for (current_block.instruction_list.toSlice()) |instruction| {
|
|
|
|
if (instruction.ref_count == 0 and !instruction.hasSideEffects()) continue;
|
|
|
|
|
|
|
|
instruction.llvm_value = try instruction.render(ofile, fn_val);
|
|
|
|
}
|
|
|
|
current_block.llvm_exit_block = llvm.GetInsertBlock(ofile.builder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn addLLVMAttr(
|
|
|
|
ofile: *ObjectFile,
|
2019-02-14 12:48:28 -08:00
|
|
|
val: *llvm.Value,
|
2018-07-14 21:04:12 -07:00
|
|
|
attr_index: llvm.AttributeIndex,
|
|
|
|
attr_name: []const u8,
|
|
|
|
) !void {
|
|
|
|
const kind_id = llvm.GetEnumAttributeKindForName(attr_name.ptr, attr_name.len);
|
|
|
|
assert(kind_id != 0);
|
|
|
|
const llvm_attr = llvm.CreateEnumAttribute(ofile.context, kind_id, 0) orelse return error.OutOfMemory;
|
|
|
|
llvm.AddAttributeAtIndex(val, attr_index, llvm_attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn addLLVMAttrStr(
|
|
|
|
ofile: *ObjectFile,
|
2019-02-14 12:48:28 -08:00
|
|
|
val: *llvm.Value,
|
2018-07-14 21:04:12 -07:00
|
|
|
attr_index: llvm.AttributeIndex,
|
|
|
|
attr_name: []const u8,
|
|
|
|
attr_val: []const u8,
|
|
|
|
) !void {
|
|
|
|
const llvm_attr = llvm.CreateStringAttribute(
|
|
|
|
ofile.context,
|
|
|
|
attr_name.ptr,
|
|
|
|
@intCast(c_uint, attr_name.len),
|
|
|
|
attr_val.ptr,
|
|
|
|
@intCast(c_uint, attr_val.len),
|
|
|
|
) orelse return error.OutOfMemory;
|
|
|
|
llvm.AddAttributeAtIndex(val, attr_index, llvm_attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn addLLVMAttrInt(
|
2019-02-14 12:48:28 -08:00
|
|
|
val: *llvm.Value,
|
2018-07-14 21:04:12 -07:00
|
|
|
attr_index: llvm.AttributeIndex,
|
|
|
|
attr_name: []const u8,
|
|
|
|
attr_val: u64,
|
|
|
|
) !void {
|
|
|
|
const kind_id = llvm.GetEnumAttributeKindForName(attr_name.ptr, attr_name.len);
|
|
|
|
assert(kind_id != 0);
|
|
|
|
const llvm_attr = llvm.CreateEnumAttribute(ofile.context, kind_id, attr_val) orelse return error.OutOfMemory;
|
|
|
|
llvm.AddAttributeAtIndex(val, attr_index, llvm_attr);
|
|
|
|
}
|
|
|
|
|
2019-02-14 12:48:28 -08:00
|
|
|
fn addLLVMFnAttr(ofile: *ObjectFile, fn_val: *llvm.Value, attr_name: []const u8) !void {
|
2018-10-26 11:59:58 -07:00
|
|
|
return addLLVMAttr(ofile, fn_val, maxInt(llvm.AttributeIndex), attr_name);
|
2018-07-14 21:04:12 -07:00
|
|
|
}
|
|
|
|
|
2019-02-14 12:48:28 -08:00
|
|
|
fn addLLVMFnAttrStr(ofile: *ObjectFile, fn_val: *llvm.Value, attr_name: []const u8, attr_val: []const u8) !void {
|
2018-10-26 11:59:58 -07:00
|
|
|
return addLLVMAttrStr(ofile, fn_val, maxInt(llvm.AttributeIndex), attr_name, attr_val);
|
2018-07-14 21:04:12 -07:00
|
|
|
}
|
|
|
|
|
2019-02-14 12:48:28 -08:00
|
|
|
fn addLLVMFnAttrInt(ofile: *ObjectFile, fn_val: *llvm.Value, attr_name: []const u8, attr_val: u64) !void {
|
2018-10-26 11:59:58 -07:00
|
|
|
return addLLVMAttrInt(ofile, fn_val, maxInt(llvm.AttributeIndex), attr_name, attr_val);
|
2018-07-14 12:45:15 -07:00
|
|
|
}
|
2018-07-24 17:24:05 -07:00
|
|
|
|
|
|
|
fn renderLoadUntyped(
|
|
|
|
ofile: *ObjectFile,
|
2019-02-14 12:48:28 -08:00
|
|
|
ptr: *llvm.Value,
|
2018-07-24 17:24:05 -07:00
|
|
|
alignment: Type.Pointer.Align,
|
|
|
|
vol: Type.Pointer.Vol,
|
2019-11-26 00:27:51 -08:00
|
|
|
name: [*:0]const u8,
|
2019-02-14 12:48:28 -08:00
|
|
|
) !*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
const result = llvm.BuildLoad(ofile.builder, ptr, name) orelse return error.OutOfMemory;
|
|
|
|
switch (vol) {
|
2019-11-06 22:31:00 -08:00
|
|
|
.Non => {},
|
|
|
|
.Volatile => llvm.SetVolatile(result, 1),
|
2018-07-24 17:24:05 -07:00
|
|
|
}
|
|
|
|
llvm.SetAlignment(result, resolveAlign(ofile, alignment, llvm.GetElementType(llvm.TypeOf(ptr))));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-26 00:27:51 -08:00
|
|
|
fn renderLoad(ofile: *ObjectFile, ptr: *llvm.Value, ptr_type: *Type.Pointer, name: [*:0]const u8) !*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
return renderLoadUntyped(ofile, ptr, ptr_type.key.alignment, ptr_type.key.vol, name);
|
|
|
|
}
|
|
|
|
|
2019-02-14 12:48:28 -08:00
|
|
|
pub fn getHandleValue(ofile: *ObjectFile, ptr: *llvm.Value, ptr_type: *Type.Pointer) !?*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
const child_type = ptr_type.key.child_type;
|
|
|
|
if (!child_type.hasBits()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (child_type.handleIsPtr()) {
|
|
|
|
return ptr;
|
|
|
|
}
|
2019-11-19 17:29:08 -08:00
|
|
|
return try renderLoad(ofile, ptr, ptr_type, "");
|
2018-07-24 17:24:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn renderStoreUntyped(
|
|
|
|
ofile: *ObjectFile,
|
2019-02-14 12:48:28 -08:00
|
|
|
value: *llvm.Value,
|
|
|
|
ptr: *llvm.Value,
|
2018-07-24 17:24:05 -07:00
|
|
|
alignment: Type.Pointer.Align,
|
|
|
|
vol: Type.Pointer.Vol,
|
2019-02-14 12:48:28 -08:00
|
|
|
) !*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
const result = llvm.BuildStore(ofile.builder, value, ptr) orelse return error.OutOfMemory;
|
|
|
|
switch (vol) {
|
2019-11-06 22:31:00 -08:00
|
|
|
.Non => {},
|
|
|
|
.Volatile => llvm.SetVolatile(result, 1),
|
2018-07-24 17:24:05 -07:00
|
|
|
}
|
|
|
|
llvm.SetAlignment(result, resolveAlign(ofile, alignment, llvm.TypeOf(value)));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn renderStore(
|
|
|
|
ofile: *ObjectFile,
|
2019-02-14 12:48:28 -08:00
|
|
|
value: *llvm.Value,
|
|
|
|
ptr: *llvm.Value,
|
2018-07-24 17:24:05 -07:00
|
|
|
ptr_type: *Type.Pointer,
|
2019-02-14 12:48:28 -08:00
|
|
|
) !*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
return renderStoreUntyped(ofile, value, ptr, ptr_type.key.alignment, ptr_type.key.vol);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn renderAlloca(
|
|
|
|
ofile: *ObjectFile,
|
|
|
|
var_type: *Type,
|
|
|
|
name: []const u8,
|
|
|
|
alignment: Type.Pointer.Align,
|
2019-02-14 12:48:28 -08:00
|
|
|
) !*llvm.Value {
|
2018-07-24 17:24:05 -07:00
|
|
|
const llvm_var_type = try var_type.getLlvmType(ofile.arena, ofile.context);
|
|
|
|
const name_with_null = try std.cstr.addNullByte(ofile.arena, name);
|
2019-11-26 00:27:51 -08:00
|
|
|
const result = llvm.BuildAlloca(ofile.builder, llvm_var_type, @ptrCast([*:0]const u8, name_with_null.ptr)) orelse return error.OutOfMemory;
|
2018-07-24 17:24:05 -07:00
|
|
|
llvm.SetAlignment(result, resolveAlign(ofile, alignment, llvm_var_type));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-02-14 12:48:28 -08:00
|
|
|
pub fn resolveAlign(ofile: *ObjectFile, alignment: Type.Pointer.Align, llvm_type: *llvm.Type) u32 {
|
2018-07-24 17:24:05 -07:00
|
|
|
return switch (alignment) {
|
2019-11-06 22:31:00 -08:00
|
|
|
.Abi => return llvm.ABIAlignmentOfType(ofile.comp.target_data_ref, llvm_type),
|
|
|
|
.Override => |a| a,
|
2018-07-24 17:24:05 -07:00
|
|
|
};
|
|
|
|
}
|