lib/choir/src/backends/aarch64/registers/root.zig
daab053ee43316e1809a84551d573ddd1e5bf3d2
1 const model = @import("model.zig");
2
3 pub const Encoded = model.Encoded;
4 pub const GPR = model.GPR;
5 pub const SP = model.SP;
6 pub const ZR = model.ZR;
7 pub const FPR = model.FPR;
8 pub const GPRSize = model.GPRSize;
9 pub const FPRSize = model.FPRSize;
10 pub const Register = model.Register;
11 pub const allocatable_gprs = model.allocatable_gprs;
12 pub const callee_saved_gprs = model.callee_saved_gprs;
13 pub const allocatable_fprs = model.allocatable_fprs;
14 pub const callee_saved_fprs = model.callee_saved_fprs;