zig/test/behavior/asm.zig
Andrew Kelley 5619ce2406 Merge remote-tracking branch 'origin/master' into stage2-whole-file-astgen
Conflicts:
 * doc/langref.html.in
 * lib/std/enums.zig
 * lib/std/fmt.zig
 * lib/std/hash/auto_hash.zig
 * lib/std/math.zig
 * lib/std/mem.zig
 * lib/std/meta.zig
 * test/behavior/alignof.zig
 * test/behavior/bitcast.zig
 * test/behavior/bugs/1421.zig
 * test/behavior/cast.zig
 * test/behavior/ptrcast.zig
 * test/behavior/type_info.zig
 * test/behavior/vector.zig

Master branch added `try` to a bunch of testing function calls, and some
lines also had changed how to refer to the native architecture and other
`@import("builtin")` stuff.
2021-05-08 14:45:21 -07:00

110 lines
2.1 KiB
Zig

const std = @import("std");
const expect = std.testing.expect;
const is_x86_64_linux = std.Target.current.cpu.arch == .x86_64 and std.Target.current.os.tag == .linux;
comptime {
if (is_x86_64_linux) {
asm (
\\.globl this_is_my_alias;
\\.type this_is_my_alias, @function;
\\.set this_is_my_alias, derp;
);
}
}
test "module level assembly" {
if (is_x86_64_linux) {
try expect(this_is_my_alias() == 1234);
}
}
test "output constraint modifiers" {
// This is only testing compilation.
var a: u32 = 3;
asm volatile (""
: [_] "=m,r" (a)
:
: ""
);
asm volatile (""
: [_] "=r,m" (a)
:
: ""
);
}
test "alternative constraints" {
// Make sure we allow commas as a separator for alternative constraints.
var a: u32 = 3;
asm volatile (""
: [_] "=r,m" (a)
: [_] "r,m" (a)
: ""
);
}
test "sized integer/float in asm input" {
asm volatile (""
:
: [_] "m" (@as(usize, 3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(i15, -3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(u3, 3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(i3, 3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(u121, 3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(i121, 3))
: ""
);
asm volatile (""
:
: [_] "m" (@as(f32, 3.17))
: ""
);
asm volatile (""
:
: [_] "m" (@as(f64, 3.17))
: ""
);
}
test "struct/array/union types as input values" {
asm volatile (""
:
: [_] "m" (@as([1]u32, undefined))
); // fails
asm volatile (""
:
: [_] "m" (@as(struct { x: u32, y: u8 }, undefined))
); // fails
asm volatile (""
:
: [_] "m" (@as(union { x: u32, y: u8 }, undefined))
); // fails
}
extern fn this_is_my_alias() i32;
export fn derp() i32 {
return 1234;
}