mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
Previously, they were only created when we had any TLS segment. This meant that while the symbol existed, the global itself wouldn't. The result of this was a crash during symbol names writing as it would attempt to write the symbol name of a global that didn't exist. Now we always create them, and instead update its `init` value during `setupMemory`. In the future, the entire symbol (and global) will be removed by the garbage collector.
99 lines
3.7 KiB
Zig
99 lines
3.7 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const test_step = b.step("test", "Test");
|
|
b.default_step = test_step;
|
|
|
|
add(b, test_step, .Debug);
|
|
add(b, test_step, .ReleaseFast);
|
|
add(b, test_step, .ReleaseSmall);
|
|
add(b, test_step, .ReleaseSafe);
|
|
}
|
|
|
|
fn add(b: *std.Build, test_step: *std.Build.Step, optimize_mode: std.builtin.OptimizeMode) void {
|
|
{
|
|
const lib = b.addSharedLibrary(.{
|
|
.name = "lib",
|
|
.root_source_file = .{ .path = "lib.zig" },
|
|
.target = .{
|
|
.cpu_arch = .wasm32,
|
|
.cpu_model = .{ .explicit = &std.Target.wasm.cpu.mvp },
|
|
.cpu_features_add = std.Target.wasm.featureSet(&.{ .atomics, .bulk_memory }),
|
|
.os_tag = .freestanding,
|
|
},
|
|
.optimize = optimize_mode,
|
|
});
|
|
lib.use_lld = false;
|
|
lib.strip = false;
|
|
lib.import_memory = true;
|
|
lib.export_memory = true;
|
|
lib.shared_memory = true;
|
|
lib.max_memory = 67108864;
|
|
lib.single_threaded = false;
|
|
lib.export_symbol_names = &.{"foo"};
|
|
|
|
const check_lib = lib.checkObject();
|
|
|
|
check_lib.checkStart("Section import");
|
|
check_lib.checkNext("entries 1");
|
|
check_lib.checkNext("module env");
|
|
check_lib.checkNext("name memory"); // ensure we are importing memory
|
|
|
|
check_lib.checkStart("Section export");
|
|
check_lib.checkNext("entries 2");
|
|
check_lib.checkNext("name memory"); // ensure we also export memory again
|
|
|
|
// This section *must* be emit as the start function is set to the index
|
|
// of __wasm_init_memory
|
|
// release modes will have the TLS segment optimized out in our test-case.
|
|
// This means we won't have __wasm_init_memory in such case, and therefore
|
|
// should also not have a section "start"
|
|
if (optimize_mode == .Debug) {
|
|
check_lib.checkStart("Section start");
|
|
}
|
|
|
|
// This section is only and *must* be emit when shared-memory is enabled
|
|
// release modes will have the TLS segment optimized out in our test-case.
|
|
if (optimize_mode == .Debug) {
|
|
check_lib.checkStart("Section data_count");
|
|
check_lib.checkNext("count 3");
|
|
}
|
|
|
|
check_lib.checkStart("Section custom");
|
|
check_lib.checkNext("name name");
|
|
check_lib.checkNext("type function");
|
|
if (optimize_mode == .Debug) {
|
|
check_lib.checkNext("name __wasm_init_memory");
|
|
}
|
|
check_lib.checkNext("name __wasm_init_tls");
|
|
check_lib.checkNext("type global");
|
|
|
|
// In debug mode the symbol __tls_base is resolved to an undefined symbol
|
|
// from the object file, hence its placement differs than in release modes
|
|
// where the entire tls segment is optimized away, and tls_base will have
|
|
// its original position.
|
|
if (optimize_mode == .Debug) {
|
|
check_lib.checkNext("name __tls_size");
|
|
check_lib.checkNext("name __tls_align");
|
|
check_lib.checkNext("name __tls_base");
|
|
} else {
|
|
check_lib.checkNext("name __tls_base");
|
|
check_lib.checkNext("name __tls_size");
|
|
check_lib.checkNext("name __tls_align");
|
|
}
|
|
|
|
check_lib.checkNext("type data_segment");
|
|
if (optimize_mode == .Debug) {
|
|
check_lib.checkNext("names 3");
|
|
check_lib.checkNext("index 0");
|
|
check_lib.checkNext("name .rodata");
|
|
check_lib.checkNext("index 1");
|
|
check_lib.checkNext("name .bss");
|
|
check_lib.checkNext("index 2");
|
|
check_lib.checkNext("name .tdata");
|
|
}
|
|
|
|
test_step.dependOn(&check_lib.step);
|
|
}
|
|
}
|