authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-05-04 15:19:14-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-05-04 15:19:14-04:00
log6a34da963b4712da7fa20079e6ab557455ffe4bf
treededa8f8f46e2033b1f6c3d19d8e2b52ae1fab9e6
parent6f0aa801c80a434b7cc931e879d234a8de501e38
parent09cbcf8841a0b80cdbdf40c2b48acccbaa945ce8
signaturelock-open Commit is signed but in an unrecognized format.

Merge branch 'LemonBoy-stdlib-32b'


5 files changed, 18 insertions(+), 14 deletions(-)

std/crypto/chacha20.zig+3-2
......@@ -142,7 +142,7 @@ pub fn chaCha20With64BitNonce(out: []u8, in: []const u8, counter: u64, key: [32]
142142 assert(in.len >= out.len);
143143 assert(counter +% (in.len >> 6) >= counter);
144144
145 var cursor: u64 = 0;
145 var cursor: usize = 0;
146146 var k: [8]u32 = undefined;
147147 var c: [4]u32 = undefined;
148148
......@@ -161,7 +161,8 @@ pub fn chaCha20With64BitNonce(out: []u8, in: []const u8, counter: u64, key: [32]
161161 c[3] = mem.readIntSliceLittle(u32, nonce[4..8]);
162162
163163 const block_size = (1 << 6);
164 const big_block = (block_size << 32);
164 // The full block size is greater than the address space on a 32bit machine
165 const big_block = if (@sizeOf(usize) > 4) (block_size << 32) else maxInt(usize);
165166
166167 // first partial big block
167168 if (((@intCast(u64, maxInt(u32) - @truncate(u32, counter)) + 1) << 6) < in.len) {
std/heap.zig+1-1
......@@ -603,7 +603,7 @@ test "ArenaAllocator" {
603603 try testAllocatorAlignedShrink(&arena_allocator.allocator);
604604}
605605
606var test_fixed_buffer_allocator_memory: [40000 * @sizeOf(usize)]u8 = undefined;
606var test_fixed_buffer_allocator_memory: [40000 * @sizeOf(u64)]u8 = undefined;
607607test "FixedBufferAllocator" {
608608 var fixed_buffer_allocator = FixedBufferAllocator.init(test_fixed_buffer_allocator_memory[0..]);
609609
std/os/linux.zig+2-2
......@@ -1101,8 +1101,8 @@ pub fn sigaction(sig: u6, noalias act: *const Sigaction, noalias oact: ?*Sigacti
11011101
11021102const NSIG = 65;
11031103const sigset_t = [128 / @sizeOf(usize)]usize;
1104const all_mask = []usize{maxInt(usize)};
1105const app_mask = []usize{0xfffffffc7fffffff};
1104const all_mask = []u32{0xffffffff, 0xffffffff};
1105const app_mask = []u32{0xfffffffc, 0x7fffffff};
11061106
11071107const k_sigaction = extern struct {
11081108 handler: extern fn (i32) void,
std/os/time.zig+10-7
......@@ -3,6 +3,7 @@ const builtin = @import("builtin");
33const Os = builtin.Os;
44const debug = std.debug;
55const testing = std.testing;
6const math = std.math;
67
78const windows = std.os.windows;
89const linux = std.os.linux;
......@@ -12,33 +13,34 @@ const posix = std.os.posix;
1213
1314pub const epoch = @import("epoch.zig");
1415
15/// Sleep for the specified duration
16/// Spurious wakeups are possible and no precision of timing is guaranteed.
1617pub fn sleep(nanoseconds: u64) void {
1718 switch (builtin.os) {
1819 Os.linux, Os.macosx, Os.ios, Os.freebsd, Os.netbsd => {
1920 const s = nanoseconds / ns_per_s;
2021 const ns = nanoseconds % ns_per_s;
21 posixSleep(@intCast(u63, s), @intCast(u63, ns));
22 posixSleep(s, ns);
2223 },
2324 Os.windows => {
2425 const ns_per_ms = ns_per_s / ms_per_s;
2526 const milliseconds = nanoseconds / ns_per_ms;
26 windows.Sleep(@intCast(windows.DWORD, milliseconds));
27 const ms_that_will_fit = std.math.cast(windows.DWORD, milliseconds) catch std.math.maxInt(windows.DWORD);
28 windows.Sleep(ms_that_will_fit);
2729 },
2830 else => @compileError("Unsupported OS"),
2931 }
3032}
3133
32pub fn posixSleep(seconds: u63, nanoseconds: u63) void {
34/// Spurious wakeups are possible and no precision of timing is guaranteed.
35pub fn posixSleep(seconds: u64, nanoseconds: u64) void {
3336 var req = posix.timespec{
34 .tv_sec = seconds,
35 .tv_nsec = nanoseconds,
37 .tv_sec = std.math.cast(isize, seconds) catch std.math.maxInt(isize),
38 .tv_nsec = std.math.cast(isize, nanoseconds) catch std.math.maxInt(isize),
3639 };
3740 var rem: posix.timespec = undefined;
3841 while (true) {
3942 const ret_val = posix.nanosleep(&req, &rem);
4043 const err = posix.getErrno(ret_val);
41 if (err == 0) return;
4244 switch (err) {
4345 posix.EFAULT => unreachable,
4446 posix.EINVAL => {
......@@ -50,6 +52,7 @@ pub fn posixSleep(seconds: u63, nanoseconds: u63) void {
5052 req = rem;
5153 continue;
5254 },
55 // This prong handles success as well as unexpected errors.
5356 else => return,
5457 }
5558 }
std/rand.zig+2-2
......@@ -768,10 +768,10 @@ pub const Isaac64 = struct {
768768 const x = self.m[base + m1];
769769 self.a = mix +% self.m[base + m2];
770770
771 const y = self.a +% self.b +% self.m[(x >> 3) % self.m.len];
771 const y = self.a +% self.b +% self.m[@intCast(usize, (x >> 3) % self.m.len)];
772772 self.m[base + m1] = y;
773773
774 self.b = x +% self.m[(y >> 11) % self.m.len];
774 self.b = x +% self.m[@intCast(usize, (y >> 11) % self.m.len)];
775775 self.r[self.r.len - 1 - base - m1] = self.b;
776776 }
777777