Robin Voetter
e3be1a1e88
SPIR-V: DeclGen constructor/destructor
2021-05-22 16:11:56 +02:00
Robin Voetter
46184ab85e
SPIR-V: branching
2021-05-22 16:11:56 +02:00
Robin Voetter
5edc5f9730
SPIR-V: Pass source location to genType and genConstant for better error reporting
2021-05-22 16:11:56 +02:00
Robin Voetter
63d0576f1c
SPIR-V: Preliminary alloc/store/load generation
2021-05-22 16:11:56 +02:00
Robin Voetter
6a121d9ccd
SPIR-V: Split out genCmp from genBinOp
2021-05-22 16:11:56 +02:00
Robin Voetter
b8444d2c51
SPIR-V: Preliminary integer constant encoding
2021-05-22 16:11:56 +02:00
Robin Voetter
c190b2ff83
SPIR-V: ResultId and Word aliases to improve code clarity
2021-05-22 16:11:56 +02:00
Robin Voetter
9ddd7f4a60
SPIR-V: Put types in SPIRVModule, some general restructuring
2021-05-22 16:11:56 +02:00
Robin Voetter
bcda3c5b82
SPIR-V: Use Value.toFloat instead of switching on value tag when generating float constants
2021-05-22 16:11:56 +02:00
Matthew Borkowski
f4101c1153
fix accidental quadratic dependence on haystack length in replace and replacementSize ( #8859 )
2021-05-22 10:55:28 +02:00
Jakub Konka
bd325d1bd9
wasm: fix object extension to standard .o from .o.wasm
...
This should offer more compatibility with external tooling when
cross-compiling to wasm with zig.
2021-05-21 22:29:36 +02:00
Jakub Konka
fbd96907c9
wasm: build static archive unless -dynamic specified
...
This matches the behaviour for other targets in that
```
zig build-lib math.zig -target wasm32-freestanding
```
produces now `libmath.a` while
```
zig build-lib math.zig -dynamic -target wasm32-freestanding
```
is required to create a loadable Wasm module.
2021-05-21 20:24:13 +02:00
Jonathan Marler
b0116afd8a
handle relative paths with too many ".."
2021-05-21 01:29:40 -06:00
Jakub Konka
4b69bd61e4
Merge pull request #8837 from ziglang/cc-wasm32-wasi
...
cc,wasi: ship WASI libc and autobuild it when needed
2021-05-21 09:04:16 +02:00
Andrew Kelley
0267abfe9b
Merge pull request #8847 from Luukdegram/wasm-struct-switch
...
stage2: wasm - Structs and switch support
2021-05-20 18:55:49 -04:00
mason1920
884547f177
Const correct GUID parameter of getInfo and setInfo
2021-05-20 18:53:59 -04:00
Andrew Kelley
495e996169
Merge pull request #8776 from notviri/windows-wm-constants
...
fix & add some Win32 window message constants
2021-05-20 18:51:45 -04:00
Matthew Borkowski
510f858143
fix calculation of max_io_bits in PackedIntIo
2021-05-20 18:47:16 -04:00
Andrew Kelley
3845c264a6
stage2: fix compile error rendering for hard tabs
...
render them as 1 space instead. This fixes the column caret.
2021-05-20 15:20:27 -07:00
Jonathan Marler
59de5d0350
add the openDir cwd parent test
2021-05-20 14:00:41 -06:00
Jonathan Marler
a72ad61cd4
have collapseRepeats return slice intead of just len
2021-05-20 14:00:41 -06:00
Jonathan Marler
666584067a
implement nt path conversion for windows
2021-05-20 14:00:40 -06:00
Isaac Freund
563ea60a86
translate-c: use inline keyword instead of callconv(.Inline)
2021-05-20 21:59:46 +02:00
Andrew Kelley
34d0542a53
Merge pull request #8695 from Bxil/socket
...
std.os: WSAStartup is now called upon socket creation when needed
2021-05-20 15:31:22 -04:00
Andrew Kelley
61850f8883
std: Windows: WSASocketW ensures WSAStartup
...
When WSASocketW gets WSANOTINITIALISED, now it will lock a mutex to
safely call WSAStartup and then try again one time.
This implementation:
* Does not use recursion
* Contains a detailed doc comment explaining why things are how they are
* Is careful about which errors are surfaced in the respective error
sets. `std.os.socket` intentionally does not have "not initialised"
as one of the possible errors.
2021-05-20 12:28:30 -07:00
Bxil
85c2ffc9ba
std.os: WSAStartup is now called upon socket creation when needed
2021-05-20 11:22:55 -07:00
Andrew Kelley
df56bf94a2
Merge pull request #8789 from Luukdegram/wasm-enum
...
stage2: wasm backend - Enums
2021-05-20 14:03:54 -04:00
Luuk de Gram
0ac56e7f3a
Add test cases for switches
2021-05-20 19:59:37 +02:00
Isaac Freund
5b850d5c92
Run zig fmt on src/ and lib/std/
...
This replaces callconv(.Inline) with the more idiomatic inline keyword.
2021-05-20 17:14:18 +02:00
Isaac Freund
4a582734fd
zig fmt: replace callconv(.Inline) with the inline keyword
2021-05-20 17:13:47 +02:00
Jakub Konka
b63c92f0b9
cc,wasi: do not add stack protector
2021-05-20 16:54:00 +02:00
Jakub Konka
3a5d0f7700
wasm: link dynamically by default when targeting wasm
...
This matches the behaviour of other languages and leaves us
the ability to create actual static Wasm archives with
```
zig build-lib -static some.zig
```
which can then be combined with other Wasm object files and linked
into either a Wasm lib or executable using `wasm-ld`.
Update langref to reflect the fact we now ship WASI libc.
2021-05-20 16:54:00 +02:00
Jakub Konka
f291b8b9bc
cc,wasi: remove unused headers and sources
2021-05-20 16:54:00 +02:00
Jakub Konka
6d5002028a
cc,wasi: link compiled WASI libc with wasm-ld
2021-05-20 16:54:00 +02:00
Jakub Konka
f102a5800c
cc,wasi: compile all WASI libc objects
2021-05-20 16:54:00 +02:00
Jakub Konka
60d8779eae
cc,wasi: add source file paths to wasi_libc.zig
2021-05-20 16:54:00 +02:00
Jakub Konka
7b74de7d71
wasi,cc: fix naming and add stubs for building
...
Rename include dir to match the convention:
from `wasm32-wasi` to `wasm-wasi-musl`
Add building stubs which will be used to build and cache WASI
libc sysroot.
2021-05-20 16:54:00 +02:00
Jakub Konka
782cfedaf6
cc,wasi: add wasi-libc source
2021-05-20 16:54:00 +02:00
Jakub Konka
a901d44b4e
cc,wasi: add wasi libc headers
2021-05-20 16:53:59 +02:00
Jakub Konka
b09936d728
Merge pull request #8842 from LemonBoy/thinko
...
Some TLCSPRNG fixes
2021-05-20 16:53:24 +02:00
Luuk de Gram
f8d0501f50
Also support multi-prong branches
2021-05-20 16:21:11 +02:00
LemonBoy
ec9a44b2a5
std: Make atfork handler more robust
...
The atfork handler is executed even when fork()-ing threads that have
never initialized their local csprng. Handle this case gracefully
instead of raising a runtime error.
Fixes #8841
2021-05-20 15:28:59 +02:00
LemonBoy
abfe7f96dd
std: Call pthread_atfork only once
...
Some libc implementations (glib) deduplicate identical hooks, others
(musl, macos) do not and blindly append them to an internal list.
Ensure there's only a single call to pthread_atfork to prevent unbounded
memory use when lots of threads/forks are used.
2021-05-20 15:26:17 +02:00
Isaac Freund
3fd8ac092e
stage2: support inline keyword on function decls
...
This is an alternative to callconv(.Inline). Using an inline keyword
as well as an explicit callconv() is a compile error.
2021-05-20 14:54:44 +02:00
Isaac Freund
569525f03e
stage1: support inline keyword on function decls
...
This is an alternative to callconv(.Inline). Using an inline keyword
as well as an explicit callconv() is a compile error.
2021-05-20 14:54:44 +02:00
LemonBoy
992c02ab95
std: Fix error in tlcsprng init sequence
...
The fallback case was actually switched with the success one.
2021-05-20 14:43:04 +02:00
Luuk de Gram
81d8fe7558
stage2 wasm: Support basic switches
...
- Adds support for single branches
- Allows both enums and integers
- Supports 'else' branch
2021-05-20 14:21:02 +02:00
Luuk de Gram
87a9c6946d
wasm backend: implement multi_value for WValue
...
This allows us to differentiate between regular locals and variables that create multiple locals
on the stack such as optionals and structs.
Now `struct_a = struct_b;` works and only updates a reference, rather than update all local's values.
Also created more test cases to test against this.
2021-05-20 09:25:02 +02:00
Andrew Kelley
9910bfa6d8
ci: use a different ssh private key to deploy the website
...
This changes the deploy key to a different one on www.ziglang.org so
that we can test notifications.
2021-05-19 21:36:48 -07:00
Andrew Kelley
a8eac0cf07
stage2 test harness: show source file name
...
Also support specifying source file name in compile error test cases.
closes #8829
2021-05-19 20:59:06 -07:00