Skip to content

Commit c56663d

Browse files
Jan Philipp Haferandrewrk
Jan Philipp Hafer
authored andcommitted
compiler_rt: add __negsi2, __negdi2, __negti2
- use negXi2.zig to prevent confusion with negXf2.zig - used for size optimized builds and machines without carry instruction - tests: special cases 0, -INT_MIN * use divTrunc range and shift with constant offsets See #1290
1 parent 50201e1 commit c56663d

File tree

6 files changed

+1843
-0
lines changed

6 files changed

+1843
-0
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ set(ZIG_STAGE2_SOURCES
498498
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/muloti4.zig"
499499
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/multi3.zig"
500500
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/negXf2.zig"
501+
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/negXi2.zig"
501502
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/os_version_check.zig"
502503
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/parity.zig"
503504
"${CMAKE_SOURCE_DIR}/lib/std/special/compiler_rt/popcount.zig"

lib/std/special/compiler_rt.zig

+6
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,12 @@ comptime {
382382
}
383383

384384
// Integral arithmetic
385+
const __negsi2 = @import("compiler_rt/negXi2.zig").__negsi2;
386+
@export(__negsi2, .{ .name = "__negsi2", .linkage = linkage });
387+
const __negdi2 = @import("compiler_rt/negXi2.zig").__negdi2;
388+
@export(__negdi2, .{ .name = "__negdi2", .linkage = linkage });
389+
const __negti2 = @import("compiler_rt/negXi2.zig").__negti2;
390+
@export(__negti2, .{ .name = "__negti2", .linkage = linkage });
385391
const __mulsi3 = @import("compiler_rt/int.zig").__mulsi3;
386392
@export(__mulsi3, .{ .name = "__mulsi3", .linkage = linkage });
387393
const __muldi3 = @import("compiler_rt/muldi3.zig").__muldi3;
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
const std = @import("std");
2+
const builtin = @import("builtin");
3+
4+
// neg - negate (the number)
5+
// - negXi2_generic for unoptimized little and big endian
6+
7+
// sfffffff = 2^31-1
8+
// two's complement inverting bits and add 1 would result in -INT_MIN == 0
9+
// => -INT_MIN = -2^31 forbidden
10+
11+
// * size optimized builds
12+
// * machines that dont support carry operations
13+
14+
fn negXi2_generic(comptime T: type) fn (a: T) callconv(.C) T {
15+
return struct {
16+
fn f(a: T) callconv(.C) T {
17+
@setRuntimeSafety(builtin.is_test);
18+
return -a;
19+
}
20+
}.f;
21+
}
22+
23+
pub const __negsi2 = negXi2_generic(i32);
24+
25+
pub const __negdi2 = negXi2_generic(i64);
26+
27+
pub const __negti2 = negXi2_generic(i128);
28+
29+
test {
30+
_ = @import("negsi2_test.zig");
31+
_ = @import("negdi2_test.zig");
32+
_ = @import("negti2_test.zig");
33+
}

0 commit comments

Comments
 (0)