Skip to content

Commit 8f2f0d8

Browse files
authored
Merge pull request #11962 from LordMZTE/fix/cast-or-call-parens
translate-c: fix cast or call macro with parenthesis
2 parents 98681b2 + b4ecc02 commit 8f2f0d8

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

src/translate_c.zig

+24
Original file line numberDiff line numberDiff line change
@@ -5109,7 +5109,30 @@ const PatternList = struct {
51095109
[2][]const u8{ "Ull_SUFFIX(X) (X ## Ull)", "ULL_SUFFIX" },
51105110
[2][]const u8{ "ULL_SUFFIX(X) (X ## ULL)", "ULL_SUFFIX" },
51115111

5112+
[2][]const u8{ "f_SUFFIX(X) X ## f", "F_SUFFIX" },
5113+
[2][]const u8{ "F_SUFFIX(X) X ## F", "F_SUFFIX" },
5114+
5115+
[2][]const u8{ "u_SUFFIX(X) X ## u", "U_SUFFIX" },
5116+
[2][]const u8{ "U_SUFFIX(X) X ## U", "U_SUFFIX" },
5117+
5118+
[2][]const u8{ "l_SUFFIX(X) X ## l", "L_SUFFIX" },
5119+
[2][]const u8{ "L_SUFFIX(X) X ## L", "L_SUFFIX" },
5120+
5121+
[2][]const u8{ "ul_SUFFIX(X) X ## ul", "UL_SUFFIX" },
5122+
[2][]const u8{ "uL_SUFFIX(X) X ## uL", "UL_SUFFIX" },
5123+
[2][]const u8{ "Ul_SUFFIX(X) X ## Ul", "UL_SUFFIX" },
5124+
[2][]const u8{ "UL_SUFFIX(X) X ## UL", "UL_SUFFIX" },
5125+
5126+
[2][]const u8{ "ll_SUFFIX(X) X ## ll", "LL_SUFFIX" },
5127+
[2][]const u8{ "LL_SUFFIX(X) X ## LL", "LL_SUFFIX" },
5128+
5129+
[2][]const u8{ "ull_SUFFIX(X) X ## ull", "ULL_SUFFIX" },
5130+
[2][]const u8{ "uLL_SUFFIX(X) X ## uLL", "ULL_SUFFIX" },
5131+
[2][]const u8{ "Ull_SUFFIX(X) X ## Ull", "ULL_SUFFIX" },
5132+
[2][]const u8{ "ULL_SUFFIX(X) X ## ULL", "ULL_SUFFIX" },
5133+
51125134
[2][]const u8{ "CAST_OR_CALL(X, Y) (X)(Y)", "CAST_OR_CALL" },
5135+
[2][]const u8{ "CAST_OR_CALL(X, Y) ((X)(Y))", "CAST_OR_CALL" },
51135136

51145137
[2][]const u8{
51155138
\\wl_container_of(ptr, sample, member) \
@@ -5303,6 +5326,7 @@ test "Macro matching" {
53035326

53045327
try helper.checkMacro(allocator, pattern_list, "NO_MATCH(X, Y) (X + Y)", null);
53055328
try helper.checkMacro(allocator, pattern_list, "CAST_OR_CALL(X, Y) (X)(Y)", "CAST_OR_CALL");
5329+
try helper.checkMacro(allocator, pattern_list, "CAST_OR_CALL(X, Y) ((X)(Y))", "CAST_OR_CALL");
53065330
try helper.checkMacro(allocator, pattern_list, "IGNORE_ME(X) (void)(X)", "DISCARD");
53075331
try helper.checkMacro(allocator, pattern_list, "IGNORE_ME(X) ((void)(X))", "DISCARD");
53085332
try helper.checkMacro(allocator, pattern_list, "IGNORE_ME(X) (const void)(X)", "DISCARD");

test/behavior/translate_c_macros.h

+1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ union U {
3737
#define IGNORE_ME_10(x) (volatile const void)(x)
3838

3939
#define UNION_CAST(X) (union U)(X)
40+
#define CAST_OR_CALL_WITH_PARENS(type_or_fn, val) ((type_or_fn)(val))
4041

4142
#define NESTED_COMMA_OPERATOR (1, (2, 3))

test/behavior/translate_c_macros.zig

+20
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,26 @@ test "casting to union with a macro" {
7070
try expect(d == casted.d);
7171
}
7272

73+
test "casting or calling a value with a paren-surrounded macro" {
74+
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
75+
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
76+
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
77+
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
78+
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
79+
80+
const l: c_long = 42;
81+
const casted = h.CAST_OR_CALL_WITH_PARENS(c_int, l);
82+
try expect(casted == @intCast(c_int, l));
83+
84+
const Helper = struct {
85+
fn foo(n: c_int) !void {
86+
try expect(n == 42);
87+
}
88+
};
89+
90+
try h.CAST_OR_CALL_WITH_PARENS(Helper.foo, 42);
91+
}
92+
7393
test "nested comma operator" {
7494
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
7595
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO

0 commit comments

Comments
 (0)