mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
This commit replaces the "fuzzer" UI, previously accessed with the `--fuzz` and `--port` flags, with a more interesting web UI which allows more interactions with the Zig build system. Most notably, it allows accessing the data emitted by a new "time report" system, which allows users to see which parts of Zig programs take the longest to compile. The option to expose the web UI is `--webui`. By default, it will listen on `[::1]` on a random port, but any IPv6 or IPv4 address can be specified with e.g. `--webui=[::1]:8000` or `--webui=127.0.0.1:8000`. The options `--fuzz` and `--time-report` both imply `--webui` if not given. Currently, `--webui` is incompatible with `--watch`; specifying both will cause `zig build` to exit with a fatal error. When the web UI is enabled, the build runner spawns the web server as soon as the configure phase completes. The frontend code consists of one HTML file, one JavaScript file, two CSS files, and a few Zig source files which are built into a WASM blob on-demand -- this is all very similar to the old fuzzer UI. Also inherited from the fuzzer UI is that the build system communicates with web clients over a WebSocket connection. When the build finishes, if `--webui` was passed (i.e. if the web server is running), the build runner does not terminate; it continues running to serve web requests, allowing interactive control of the build system. In the web interface is an overall "status" indicating whether a build is currently running, and also a list of all steps in this build. There are visual indicators (colors and spinners) for in-progress, succeeded, and failed steps. There is a "Rebuild" button which will cause the build system to reset the state of every step (note that this does not affect caching) and evaluate the step graph again. If `--time-report` is passed to `zig build`, a new section of the interface becomes visible, which associates every build step with a "time report". For most steps, this is just a simple "time taken" value. However, for `Compile` steps, the compiler communicates with the build system to provide it with much more interesting information: time taken for various pipeline phases, with a per-declaration and per-file breakdown, sorted by slowest declarations/files first. This feature is still in its early stages: the data can be a little tricky to understand, and there is no way to, for instance, sort by different properties, or filter to certain files. However, it has already given us some interesting statistics, and can be useful for spotting, for instance, particularly complex and slow compile-time logic. Additionally, if a compilation uses LLVM, its time report includes the "LLVM pass timing" information, which was previously accessible with the (now removed) `-ftime-report` compiler flag. To make time reports more useful, ZIR and compilation caches are ignored by the Zig compiler when they are enabled -- in other words, `Compile` steps *always* run, even if their result should be cached. This means that the flag can be used to analyze a project's compile time without having to repeatedly clear cache directory, for instance. However, when using `-fincremental`, updates other than the first will only show you the statistics for what changed on that particular update. Notably, this gives us a fairly nice way to see exactly which declarations were re-analyzed by an incremental update. If `--fuzz` is passed to `zig build`, another section of the web interface becomes visible, this time exposing the fuzzer. This is quite similar to the fuzzer UI this commit replaces, with only a few cosmetic tweaks. The interface is closer than before to supporting multiple fuzz steps at a time (in line with the overall strategy for this build UI, the goal will be for all of the fuzz steps to be accessible in the same interface), but still doesn't actually support it. The fuzzer UI looks quite different under the hood: as a result, various bugs are fixed, although other bugs remain. For instance, viewing the source code of any file other than the root of the main module is completely broken (as on master) due to some bogus file-to-module assignment logic in the fuzzer UI. Implementation notes: * The `lib/build-web/` directory holds the client side of the web UI. * The general server logic is in `std.Build.WebServer`. * Fuzzing-specific logic is in `std.Build.Fuzz`. * `std.Build.abi` is the new home of `std.Build.Fuzz.abi`, since it now relates to the build system web UI in general. * The build runner now has an **actual** general-purpose allocator, because thanks to `--watch` and `--webui`, the process can be arbitrarily long-lived. The gpa is `std.heap.DebugAllocator`, but the arena remains backed by `std.heap.page_allocator` for efficiency. I fixed several crashes caused by conflation of `gpa` and `arena` in the build runner and `std.Build`, but there may still be some I have missed. * The I/O logic in `std.Build.WebServer` is pretty gnarly; there are a *lot* of threads involved. I anticipate this situation improving significantly once the `std.Io` interface (with concurrency support) is introduced.
195 lines
7.1 KiB
Zig
195 lines
7.1 KiB
Zig
const std = @import("std");
|
|
const Step = std.Build.Step;
|
|
const LazyPath = std.Build.LazyPath;
|
|
const fs = std.fs;
|
|
const mem = std.mem;
|
|
|
|
const TranslateC = @This();
|
|
|
|
pub const base_id: Step.Id = .translate_c;
|
|
|
|
step: Step,
|
|
source: std.Build.LazyPath,
|
|
include_dirs: std.ArrayList(std.Build.Module.IncludeDir),
|
|
c_macros: std.ArrayList([]const u8),
|
|
out_basename: []const u8,
|
|
target: std.Build.ResolvedTarget,
|
|
optimize: std.builtin.OptimizeMode,
|
|
output_file: std.Build.GeneratedFile,
|
|
link_libc: bool,
|
|
use_clang: bool,
|
|
|
|
pub const Options = struct {
|
|
root_source_file: std.Build.LazyPath,
|
|
target: std.Build.ResolvedTarget,
|
|
optimize: std.builtin.OptimizeMode,
|
|
link_libc: bool = true,
|
|
use_clang: bool = true,
|
|
};
|
|
|
|
pub fn create(owner: *std.Build, options: Options) *TranslateC {
|
|
const translate_c = owner.allocator.create(TranslateC) catch @panic("OOM");
|
|
const source = options.root_source_file.dupe(owner);
|
|
translate_c.* = .{
|
|
.step = Step.init(.{
|
|
.id = base_id,
|
|
.name = "translate-c",
|
|
.owner = owner,
|
|
.makeFn = make,
|
|
}),
|
|
.source = source,
|
|
.include_dirs = std.ArrayList(std.Build.Module.IncludeDir).init(owner.allocator),
|
|
.c_macros = std.ArrayList([]const u8).init(owner.allocator),
|
|
.out_basename = undefined,
|
|
.target = options.target,
|
|
.optimize = options.optimize,
|
|
.output_file = .{ .step = &translate_c.step },
|
|
.link_libc = options.link_libc,
|
|
.use_clang = options.use_clang,
|
|
};
|
|
source.addStepDependencies(&translate_c.step);
|
|
return translate_c;
|
|
}
|
|
|
|
pub const AddExecutableOptions = struct {
|
|
name: ?[]const u8 = null,
|
|
version: ?std.SemanticVersion = null,
|
|
target: ?std.Build.ResolvedTarget = null,
|
|
optimize: ?std.builtin.OptimizeMode = null,
|
|
linkage: ?std.builtin.LinkMode = null,
|
|
};
|
|
|
|
pub fn getOutput(translate_c: *TranslateC) std.Build.LazyPath {
|
|
return .{ .generated = .{ .file = &translate_c.output_file } };
|
|
}
|
|
|
|
/// Creates a module from the translated source and adds it to the package's
|
|
/// module set making it available to other packages which depend on this one.
|
|
/// `createModule` can be used instead to create a private module.
|
|
pub fn addModule(translate_c: *TranslateC, name: []const u8) *std.Build.Module {
|
|
return translate_c.step.owner.addModule(name, .{
|
|
.root_source_file = translate_c.getOutput(),
|
|
.target = translate_c.target,
|
|
.optimize = translate_c.optimize,
|
|
.link_libc = translate_c.link_libc,
|
|
});
|
|
}
|
|
|
|
/// Creates a private module from the translated source to be used by the
|
|
/// current package, but not exposed to other packages depending on this one.
|
|
/// `addModule` can be used instead to create a public module.
|
|
pub fn createModule(translate_c: *TranslateC) *std.Build.Module {
|
|
return translate_c.step.owner.createModule(.{
|
|
.root_source_file = translate_c.getOutput(),
|
|
.target = translate_c.target,
|
|
.optimize = translate_c.optimize,
|
|
.link_libc = translate_c.link_libc,
|
|
});
|
|
}
|
|
|
|
pub fn addAfterIncludePath(translate_c: *TranslateC, lazy_path: LazyPath) void {
|
|
const b = translate_c.step.owner;
|
|
translate_c.include_dirs.append(.{ .path_after = lazy_path.dupe(b) }) catch
|
|
@panic("OOM");
|
|
lazy_path.addStepDependencies(&translate_c.step);
|
|
}
|
|
|
|
pub fn addSystemIncludePath(translate_c: *TranslateC, lazy_path: LazyPath) void {
|
|
const b = translate_c.step.owner;
|
|
translate_c.include_dirs.append(.{ .path_system = lazy_path.dupe(b) }) catch
|
|
@panic("OOM");
|
|
lazy_path.addStepDependencies(&translate_c.step);
|
|
}
|
|
|
|
pub fn addIncludePath(translate_c: *TranslateC, lazy_path: LazyPath) void {
|
|
const b = translate_c.step.owner;
|
|
translate_c.include_dirs.append(.{ .path = lazy_path.dupe(b) }) catch
|
|
@panic("OOM");
|
|
lazy_path.addStepDependencies(&translate_c.step);
|
|
}
|
|
|
|
pub fn addConfigHeader(translate_c: *TranslateC, config_header: *Step.ConfigHeader) void {
|
|
translate_c.include_dirs.append(.{ .config_header_step = config_header }) catch
|
|
@panic("OOM");
|
|
translate_c.step.dependOn(&config_header.step);
|
|
}
|
|
|
|
pub fn addSystemFrameworkPath(translate_c: *TranslateC, directory_path: LazyPath) void {
|
|
const b = translate_c.step.owner;
|
|
translate_c.include_dirs.append(.{ .framework_path_system = directory_path.dupe(b) }) catch
|
|
@panic("OOM");
|
|
directory_path.addStepDependencies(&translate_c.step);
|
|
}
|
|
|
|
pub fn addFrameworkPath(translate_c: *TranslateC, directory_path: LazyPath) void {
|
|
const b = translate_c.step.owner;
|
|
translate_c.include_dirs.append(.{ .framework_path = directory_path.dupe(b) }) catch
|
|
@panic("OOM");
|
|
directory_path.addStepDependencies(&translate_c.step);
|
|
}
|
|
|
|
pub fn addCheckFile(translate_c: *TranslateC, expected_matches: []const []const u8) *Step.CheckFile {
|
|
return Step.CheckFile.create(
|
|
translate_c.step.owner,
|
|
translate_c.getOutput(),
|
|
.{ .expected_matches = expected_matches },
|
|
);
|
|
}
|
|
|
|
/// If the value is omitted, it is set to 1.
|
|
/// `name` and `value` need not live longer than the function call.
|
|
pub fn defineCMacro(translate_c: *TranslateC, name: []const u8, value: ?[]const u8) void {
|
|
const macro = translate_c.step.owner.fmt("{s}={s}", .{ name, value orelse "1" });
|
|
translate_c.c_macros.append(macro) catch @panic("OOM");
|
|
}
|
|
|
|
/// name_and_value looks like [name]=[value]. If the value is omitted, it is set to 1.
|
|
pub fn defineCMacroRaw(translate_c: *TranslateC, name_and_value: []const u8) void {
|
|
translate_c.c_macros.append(translate_c.step.owner.dupe(name_and_value)) catch @panic("OOM");
|
|
}
|
|
|
|
fn make(step: *Step, options: Step.MakeOptions) !void {
|
|
const prog_node = options.progress_node;
|
|
const b = step.owner;
|
|
const translate_c: *TranslateC = @fieldParentPtr("step", step);
|
|
|
|
var argv_list = std.ArrayList([]const u8).init(b.allocator);
|
|
try argv_list.append(b.graph.zig_exe);
|
|
try argv_list.append("translate-c");
|
|
if (translate_c.link_libc) {
|
|
try argv_list.append("-lc");
|
|
}
|
|
if (!translate_c.use_clang) {
|
|
try argv_list.append("-fno-clang");
|
|
}
|
|
|
|
try argv_list.append("--listen=-");
|
|
|
|
if (!translate_c.target.query.isNative()) {
|
|
try argv_list.append("-target");
|
|
try argv_list.append(try translate_c.target.query.zigTriple(b.allocator));
|
|
}
|
|
|
|
switch (translate_c.optimize) {
|
|
.Debug => {}, // Skip since it's the default.
|
|
else => try argv_list.append(b.fmt("-O{s}", .{@tagName(translate_c.optimize)})),
|
|
}
|
|
|
|
for (translate_c.include_dirs.items) |include_dir| {
|
|
try include_dir.appendZigProcessFlags(b, &argv_list, step);
|
|
}
|
|
|
|
for (translate_c.c_macros.items) |c_macro| {
|
|
try argv_list.append("-D");
|
|
try argv_list.append(c_macro);
|
|
}
|
|
|
|
const c_source_path = translate_c.source.getPath2(b, step);
|
|
try argv_list.append(c_source_path);
|
|
|
|
const output_dir = try step.evalZigProcess(argv_list.items, prog_node, false, options.web_server, options.gpa);
|
|
|
|
const basename = std.fs.path.stem(std.fs.path.basename(c_source_path));
|
|
translate_c.out_basename = b.fmt("{s}.zig", .{basename});
|
|
translate_c.output_file.path = output_dir.?.joinString(b.allocator, translate_c.out_basename) catch @panic("OOM");
|
|
}
|