aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-08-05 15:29:59 +0300
committerGitHub <noreply@github.com>2022-08-05 15:29:59 +0300
commit42ade6a11443d50bec1131283899e1a9d77c01d6 (patch)
treea6c7dee0b50a9a05c338e17002e9c0ba66486dcc /src/Module.zig
parent259f407160f84a1bf33c1aa7bd10318213f52ddf (diff)
parentab3b614a335ffac9eac4f824ee18fba262ad988e (diff)
downloadzig-42ade6a11443d50bec1131283899e1a9d77c01d6.tar.gz
zig-42ade6a11443d50bec1131283899e1a9d77c01d6.zip
Merge pull request #12300 from antlilja/getParamName
Replace param_names and anytype_args fields inside of Fn with functions
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig57
1 files changed, 35 insertions, 22 deletions
diff --git a/src/Module.zig b/src/Module.zig
index 6122b417e4..ab394af0ad 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -1464,20 +1464,8 @@ pub const Fn = struct {
/// These never have .generic_poison for the Type
/// because the Type is needed to pass to `Type.eql` and for inserting comptime arguments
/// into the inst_map when analyzing the body of a generic function instantiation.
- /// Instead, the is_anytype knowledge is communicated via `anytype_args`.
+ /// Instead, the is_anytype knowledge is communicated via `isAnytypeParam`.
comptime_args: ?[*]TypedValue,
- /// When comptime_args is null, this is undefined. Otherwise, this flags each
- /// parameter and tells whether it is anytype.
- /// TODO apply the same enhancement for param_names below to this field.
- anytype_args: [*]bool,
-
- /// Prefer to use `getParamName` to access this because of the future improvement
- /// we want to do mentioned in the TODO below.
- /// Stored in gpa.
- /// TODO: change param ZIR instructions to be embedded inside the function
- /// ZIR instruction instead of before it, so that `zir_body_inst` can be used to
- /// determine param names rather than redundantly storing them here.
- param_names: []const [:0]const u8,
/// Precomputed hash for monomorphed_funcs.
/// This is important because it may be accessed when resizing monomorphed_funcs
@@ -1590,18 +1578,43 @@ pub const Fn = struct {
gpa.destroy(node);
it = next;
}
+ }
- for (func.param_names) |param_name| {
- gpa.free(param_name);
- }
- gpa.free(func.param_names);
+ pub fn isAnytypeParam(func: Fn, mod: *Module, index: u32) bool {
+ const file = mod.declPtr(func.owner_decl).getFileScope();
+
+ const tags = file.zir.instructions.items(.tag);
+
+ const param_body = file.zir.getParamBody(func.zir_body_inst);
+ const param = param_body[index];
+
+ return switch (tags[param]) {
+ .param, .param_comptime => false,
+ .param_anytype, .param_anytype_comptime => true,
+ else => unreachable,
+ };
}
- pub fn getParamName(func: Fn, index: u32) [:0]const u8 {
- // TODO rework ZIR of parameters so that this function looks up
- // param names in ZIR instead of redundantly saving them into Fn.
- // const zir = func.owner_decl.getFileScope().zir;
- return func.param_names[index];
+ pub fn getParamName(func: Fn, mod: *Module, index: u32) [:0]const u8 {
+ const file = mod.declPtr(func.owner_decl).getFileScope();
+
+ const tags = file.zir.instructions.items(.tag);
+ const data = file.zir.instructions.items(.data);
+
+ const param_body = file.zir.getParamBody(func.zir_body_inst);
+ const param = param_body[index];
+
+ return switch (tags[param]) {
+ .param, .param_comptime => blk: {
+ const extra = file.zir.extraData(Zir.Inst.Param, data[param].pl_tok.payload_index);
+ break :blk file.zir.nullTerminatedString(extra.data.name);
+ },
+ .param_anytype, .param_anytype_comptime => blk: {
+ const param_data = data[param].str_tok;
+ break :blk param_data.get(file.zir);
+ },
+ else => unreachable,
+ };
}
pub fn hasInferredErrorSet(func: Fn, mod: *Module) bool {