-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
good first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requestedzig
Description
I can compile this with zig cc --target=wasm32-wasi -o math.wasm math.c, and run it with wzprof -sample 1 -memprofile /tmp/profile math.wasm and end up an image like this on go tool pprof -http :4000 /tmp/profile:
#include <stdio.h>
int main(int argc, char** argv)
{
fprintf(stderr, "%d\n", 1+2);
}Ironically, if I do the same in zig build-exe math.zig -target wasm32-wasi, I don't get anything.
const std = @import("std");
pub fn main() !void {
std.debug.print("{}\n", .{1 + 2});
}$ wasm-tools objdump math.wasm
types | 0xa - 0x4b | 65 bytes | 11 count
imports | 0x4d - 0x93 | 70 bytes | 2 count
functions | 0x95 - 0xe5 | 80 bytes | 79 count
memories | 0xe7 - 0xea | 3 bytes | 1 count
globals | 0xec - 0xf5 | 9 bytes | 1 count
exports | 0xf7 - 0x10a | 19 bytes | 2 count
code | 0x10e - 0xa50f | 41985 bytes | 79 count
data | 0xa512 - 0xaac0 | 1454 bytes | 1 count
custom ".debug_info" | 0xaacf - 0xdfa8 | 13529 bytes | 1 count
custom ".debug_pubtypes" | 0xdfbb - 0xe8b5 | 2298 bytes | 1 count
custom ".debug_loc" | 0xe8c3 - 0xecf4 | 1073 bytes | 1 count
custom ".debug_ranges" | 0xed05 - 0xf07d | 888 bytes | 1 count
custom ".debug_abbrev" | 0xf08e - 0xf2d6 | 584 bytes | 1 count
custom ".debug_line" | 0xf2e5 - 0x11e9d | 11192 bytes | 1 count
custom ".debug_str" | 0x11eab - 0x14b7c | 11473 bytes | 1 count
custom ".debug_pubnames" | 0x14b8f - 0x15f57 | 5064 bytes | 1 count
custom "name" | 0x15f5f - 0x16ed1 | 3954 bytes | 1 count
custom "producers" | 0x16edd - 0x16eed | 16 bytes | 1 countLet me know if you have any ideas on why!
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requestedzig