aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt.zig
diff options
context:
space:
mode:
authorJan Philipp Hafer <jan.hafer@rwth-aachen.de>2023-02-11 15:16:44 +0100
committerAndrew Kelley <andrew@ziglang.org>2023-02-19 14:00:55 -0500
commit476bdc8b0b02cbd09f6a856aa7dc548dea565109 (patch)
treed1fb06b8dbde71f379bcf9ac9aed53a06436dc9b /lib/compiler_rt.zig
parentadfc019d6070cf322048bdb36d991354711c4636 (diff)
downloadzig-476bdc8b0b02cbd09f6a856aa7dc548dea565109.tar.gz
zig-476bdc8b0b02cbd09f6a856aa7dc548dea565109.zip
compiler_rt: restructure compiler_rt.zig according to README.md
Justifications - compiler_rt base routines are almost finished, so make 1:1 mapping of code and documentation. - Make adjustments to code + documentation simpler to prevent technical or documentation debt.
Diffstat (limited to 'lib/compiler_rt.zig')
-rw-r--r--lib/compiler_rt.zig276
1 files changed, 143 insertions, 133 deletions
diff --git a/lib/compiler_rt.zig b/lib/compiler_rt.zig
index feeb8dfb38..b3fcd6cb80 100644
--- a/lib/compiler_rt.zig
+++ b/lib/compiler_rt.zig
@@ -3,64 +3,35 @@ const builtin = @import("builtin");
pub const panic = @import("compiler_rt/common.zig").panic;
comptime {
- _ = @import("compiler_rt/addf3.zig");
- _ = @import("compiler_rt/addhf3.zig");
- _ = @import("compiler_rt/addsf3.zig");
- _ = @import("compiler_rt/adddf3.zig");
- _ = @import("compiler_rt/addtf3.zig");
- _ = @import("compiler_rt/addxf3.zig");
-
- _ = @import("compiler_rt/subhf3.zig");
- _ = @import("compiler_rt/subsf3.zig");
- _ = @import("compiler_rt/subdf3.zig");
- _ = @import("compiler_rt/subtf3.zig");
- _ = @import("compiler_rt/subxf3.zig");
-
- _ = @import("compiler_rt/mulf3.zig");
- _ = @import("compiler_rt/mulhf3.zig");
- _ = @import("compiler_rt/mulsf3.zig");
- _ = @import("compiler_rt/muldf3.zig");
- _ = @import("compiler_rt/multf3.zig");
- _ = @import("compiler_rt/mulxf3.zig");
-
- _ = @import("compiler_rt/powiXf2.zig");
- _ = @import("compiler_rt/mulc3.zig");
- _ = @import("compiler_rt/mulhc3.zig");
- _ = @import("compiler_rt/mulsc3.zig");
- _ = @import("compiler_rt/muldc3.zig");
- _ = @import("compiler_rt/mulxc3.zig");
- _ = @import("compiler_rt/multc3.zig");
+ // Integer routines
+ _ = @import("compiler_rt/count0bits.zig");
+ _ = @import("compiler_rt/parity.zig");
+ _ = @import("compiler_rt/popcount.zig");
+ _ = @import("compiler_rt/bswap.zig");
+ _ = @import("compiler_rt/cmp.zig");
- _ = @import("compiler_rt/divc3.zig");
- _ = @import("compiler_rt/divhc3.zig");
- _ = @import("compiler_rt/divsc3.zig");
- _ = @import("compiler_rt/divdc3.zig");
- _ = @import("compiler_rt/divxc3.zig");
- _ = @import("compiler_rt/divtc3.zig");
+ _ = @import("compiler_rt/shift.zig");
+ _ = @import("compiler_rt/negXi2.zig");
+ _ = @import("compiler_rt/int.zig");
+ _ = @import("compiler_rt/muldi3.zig");
+ _ = @import("compiler_rt/multi3.zig");
+ _ = @import("compiler_rt/divti3.zig");
+ _ = @import("compiler_rt/udivti3.zig");
+ _ = @import("compiler_rt/modti3.zig");
+ _ = @import("compiler_rt/umodti3.zig");
- _ = @import("compiler_rt/neghf2.zig");
- _ = @import("compiler_rt/negsf2.zig");
- _ = @import("compiler_rt/negdf2.zig");
- _ = @import("compiler_rt/negtf2.zig");
- _ = @import("compiler_rt/negxf2.zig");
+ _ = @import("compiler_rt/absv.zig");
+ _ = @import("compiler_rt/absvsi2.zig");
+ _ = @import("compiler_rt/absvdi2.zig");
+ _ = @import("compiler_rt/absvti2.zig");
+ _ = @import("compiler_rt/negv.zig");
- _ = @import("compiler_rt/comparef.zig");
- _ = @import("compiler_rt/cmphf2.zig");
- _ = @import("compiler_rt/cmpsf2.zig");
- _ = @import("compiler_rt/cmpdf2.zig");
- _ = @import("compiler_rt/cmptf2.zig");
- _ = @import("compiler_rt/cmpxf2.zig");
- _ = @import("compiler_rt/gehf2.zig");
- _ = @import("compiler_rt/gesf2.zig");
- _ = @import("compiler_rt/gedf2.zig");
- _ = @import("compiler_rt/gexf2.zig");
- _ = @import("compiler_rt/getf2.zig");
- _ = @import("compiler_rt/unordhf2.zig");
- _ = @import("compiler_rt/unordsf2.zig");
- _ = @import("compiler_rt/unorddf2.zig");
- _ = @import("compiler_rt/unordxf2.zig");
- _ = @import("compiler_rt/unordtf2.zig");
+ _ = @import("compiler_rt/addo.zig");
+ _ = @import("compiler_rt/subo.zig");
+ _ = @import("compiler_rt/mulo.zig");
+ // Float routines
+ // conversion
_ = @import("compiler_rt/extendf.zig");
_ = @import("compiler_rt/extendhfsf2.zig");
_ = @import("compiler_rt/extendhfdf2.zig");
@@ -85,37 +56,37 @@ comptime {
_ = @import("compiler_rt/trunctfdf2.zig");
_ = @import("compiler_rt/trunctfxf2.zig");
- _ = @import("compiler_rt/divhf3.zig");
- _ = @import("compiler_rt/divsf3.zig");
- _ = @import("compiler_rt/divdf3.zig");
- _ = @import("compiler_rt/divxf3.zig");
- _ = @import("compiler_rt/divtf3.zig");
- _ = @import("compiler_rt/sin.zig");
- _ = @import("compiler_rt/cos.zig");
- _ = @import("compiler_rt/sincos.zig");
- _ = @import("compiler_rt/ceil.zig");
- _ = @import("compiler_rt/exp.zig");
- _ = @import("compiler_rt/exp2.zig");
- _ = @import("compiler_rt/fabs.zig");
- _ = @import("compiler_rt/floor.zig");
- _ = @import("compiler_rt/fma.zig");
- _ = @import("compiler_rt/fmax.zig");
- _ = @import("compiler_rt/fmin.zig");
- _ = @import("compiler_rt/fmod.zig");
- _ = @import("compiler_rt/log.zig");
- _ = @import("compiler_rt/log10.zig");
- _ = @import("compiler_rt/log2.zig");
- _ = @import("compiler_rt/round.zig");
- _ = @import("compiler_rt/sqrt.zig");
- _ = @import("compiler_rt/tan.zig");
- _ = @import("compiler_rt/trunc.zig");
- _ = @import("compiler_rt/divti3.zig");
- _ = @import("compiler_rt/modti3.zig");
- _ = @import("compiler_rt/multi3.zig");
- _ = @import("compiler_rt/udivti3.zig");
- _ = @import("compiler_rt/udivmodei4.zig");
- _ = @import("compiler_rt/udivmodti4.zig");
- _ = @import("compiler_rt/umodti3.zig");
+ _ = @import("compiler_rt/float_to_int.zig");
+ _ = @import("compiler_rt/fixhfsi.zig");
+ _ = @import("compiler_rt/fixhfdi.zig");
+ _ = @import("compiler_rt/fixhfti.zig");
+ _ = @import("compiler_rt/fixsfsi.zig");
+ _ = @import("compiler_rt/fixsfdi.zig");
+ _ = @import("compiler_rt/fixsfti.zig");
+ _ = @import("compiler_rt/fixdfsi.zig");
+ _ = @import("compiler_rt/fixdfdi.zig");
+ _ = @import("compiler_rt/fixdfti.zig");
+ _ = @import("compiler_rt/fixtfsi.zig");
+ _ = @import("compiler_rt/fixtfdi.zig");
+ _ = @import("compiler_rt/fixtfti.zig");
+ _ = @import("compiler_rt/fixxfsi.zig");
+ _ = @import("compiler_rt/fixxfdi.zig");
+ _ = @import("compiler_rt/fixxfti.zig");
+ _ = @import("compiler_rt/fixunshfsi.zig");
+ _ = @import("compiler_rt/fixunshfdi.zig");
+ _ = @import("compiler_rt/fixunshfti.zig");
+ _ = @import("compiler_rt/fixunssfsi.zig");
+ _ = @import("compiler_rt/fixunssfdi.zig");
+ _ = @import("compiler_rt/fixunssfti.zig");
+ _ = @import("compiler_rt/fixunsdfsi.zig");
+ _ = @import("compiler_rt/fixunsdfdi.zig");
+ _ = @import("compiler_rt/fixunsdfti.zig");
+ _ = @import("compiler_rt/fixunstfsi.zig");
+ _ = @import("compiler_rt/fixunstfdi.zig");
+ _ = @import("compiler_rt/fixunstfti.zig");
+ _ = @import("compiler_rt/fixunsxfsi.zig");
+ _ = @import("compiler_rt/fixunsxfdi.zig");
+ _ = @import("compiler_rt/fixunsxfti.zig");
_ = @import("compiler_rt/int_to_float.zig");
_ = @import("compiler_rt/floatsihf.zig");
@@ -149,60 +120,99 @@ comptime {
_ = @import("compiler_rt/floatuntitf.zig");
_ = @import("compiler_rt/floatuntixf.zig");
- _ = @import("compiler_rt/float_to_int.zig");
- _ = @import("compiler_rt/fixhfsi.zig");
- _ = @import("compiler_rt/fixhfdi.zig");
- _ = @import("compiler_rt/fixhfti.zig");
- _ = @import("compiler_rt/fixsfsi.zig");
- _ = @import("compiler_rt/fixsfdi.zig");
- _ = @import("compiler_rt/fixsfti.zig");
- _ = @import("compiler_rt/fixdfsi.zig");
- _ = @import("compiler_rt/fixdfdi.zig");
- _ = @import("compiler_rt/fixdfti.zig");
- _ = @import("compiler_rt/fixtfsi.zig");
- _ = @import("compiler_rt/fixtfdi.zig");
- _ = @import("compiler_rt/fixtfti.zig");
- _ = @import("compiler_rt/fixxfsi.zig");
- _ = @import("compiler_rt/fixxfdi.zig");
- _ = @import("compiler_rt/fixxfti.zig");
- _ = @import("compiler_rt/fixunshfsi.zig");
- _ = @import("compiler_rt/fixunshfdi.zig");
- _ = @import("compiler_rt/fixunshfti.zig");
- _ = @import("compiler_rt/fixunssfsi.zig");
- _ = @import("compiler_rt/fixunssfdi.zig");
- _ = @import("compiler_rt/fixunssfti.zig");
- _ = @import("compiler_rt/fixunsdfsi.zig");
- _ = @import("compiler_rt/fixunsdfdi.zig");
- _ = @import("compiler_rt/fixunsdfti.zig");
- _ = @import("compiler_rt/fixunstfsi.zig");
- _ = @import("compiler_rt/fixunstfdi.zig");
- _ = @import("compiler_rt/fixunstfti.zig");
- _ = @import("compiler_rt/fixunsxfsi.zig");
- _ = @import("compiler_rt/fixunsxfdi.zig");
- _ = @import("compiler_rt/fixunsxfti.zig");
+ // comparison
+ _ = @import("compiler_rt/comparef.zig");
+ _ = @import("compiler_rt/cmphf2.zig");
+ _ = @import("compiler_rt/cmpsf2.zig");
+ _ = @import("compiler_rt/cmpdf2.zig");
+ _ = @import("compiler_rt/cmptf2.zig");
+ _ = @import("compiler_rt/cmpxf2.zig");
+ _ = @import("compiler_rt/unordhf2.zig");
+ _ = @import("compiler_rt/unordsf2.zig");
+ _ = @import("compiler_rt/unorddf2.zig");
+ _ = @import("compiler_rt/unordxf2.zig");
+ _ = @import("compiler_rt/unordtf2.zig");
+ _ = @import("compiler_rt/gehf2.zig");
+ _ = @import("compiler_rt/gesf2.zig");
+ _ = @import("compiler_rt/gedf2.zig");
+ _ = @import("compiler_rt/gexf2.zig");
+ _ = @import("compiler_rt/getf2.zig");
- _ = @import("compiler_rt/count0bits.zig");
- _ = @import("compiler_rt/parity.zig");
- _ = @import("compiler_rt/popcount.zig");
- _ = @import("compiler_rt/bswap.zig");
- _ = @import("compiler_rt/int.zig");
- _ = @import("compiler_rt/shift.zig");
+ // arithmetic
+ _ = @import("compiler_rt/addf3.zig");
+ _ = @import("compiler_rt/addhf3.zig");
+ _ = @import("compiler_rt/addsf3.zig");
+ _ = @import("compiler_rt/adddf3.zig");
+ _ = @import("compiler_rt/addtf3.zig");
+ _ = @import("compiler_rt/addxf3.zig");
- _ = @import("compiler_rt/negXi2.zig");
+ _ = @import("compiler_rt/subhf3.zig");
+ _ = @import("compiler_rt/subsf3.zig");
+ _ = @import("compiler_rt/subdf3.zig");
+ _ = @import("compiler_rt/subtf3.zig");
+ _ = @import("compiler_rt/subxf3.zig");
- _ = @import("compiler_rt/muldi3.zig");
+ _ = @import("compiler_rt/mulf3.zig");
+ _ = @import("compiler_rt/mulhf3.zig");
+ _ = @import("compiler_rt/mulsf3.zig");
+ _ = @import("compiler_rt/muldf3.zig");
+ _ = @import("compiler_rt/multf3.zig");
+ _ = @import("compiler_rt/mulxf3.zig");
- _ = @import("compiler_rt/absv.zig");
- _ = @import("compiler_rt/absvsi2.zig");
- _ = @import("compiler_rt/absvdi2.zig");
- _ = @import("compiler_rt/absvti2.zig");
+ _ = @import("compiler_rt/divhf3.zig");
+ _ = @import("compiler_rt/divsf3.zig");
+ _ = @import("compiler_rt/divdf3.zig");
+ _ = @import("compiler_rt/divxf3.zig");
+ _ = @import("compiler_rt/divtf3.zig");
- _ = @import("compiler_rt/negv.zig");
- _ = @import("compiler_rt/addo.zig");
- _ = @import("compiler_rt/subo.zig");
- _ = @import("compiler_rt/mulo.zig");
- _ = @import("compiler_rt/cmp.zig");
+ _ = @import("compiler_rt/neghf2.zig");
+ _ = @import("compiler_rt/negsf2.zig");
+ _ = @import("compiler_rt/negdf2.zig");
+ _ = @import("compiler_rt/negtf2.zig");
+ _ = @import("compiler_rt/negxf2.zig");
+
+ // other
+ _ = @import("compiler_rt/powiXf2.zig");
+ _ = @import("compiler_rt/mulc3.zig");
+ _ = @import("compiler_rt/mulhc3.zig");
+ _ = @import("compiler_rt/mulsc3.zig");
+ _ = @import("compiler_rt/muldc3.zig");
+ _ = @import("compiler_rt/mulxc3.zig");
+ _ = @import("compiler_rt/multc3.zig");
+
+ _ = @import("compiler_rt/divc3.zig");
+ _ = @import("compiler_rt/divhc3.zig");
+ _ = @import("compiler_rt/divsc3.zig");
+ _ = @import("compiler_rt/divdc3.zig");
+ _ = @import("compiler_rt/divxc3.zig");
+ _ = @import("compiler_rt/divtc3.zig");
+
+ // Math routines. Alphabetically sorted.
+ _ = @import("compiler_rt/ceil.zig");
+ _ = @import("compiler_rt/cos.zig");
+ _ = @import("compiler_rt/exp.zig");
+ _ = @import("compiler_rt/exp2.zig");
+ _ = @import("compiler_rt/fabs.zig");
+ _ = @import("compiler_rt/floor.zig");
+ _ = @import("compiler_rt/fma.zig");
+ _ = @import("compiler_rt/fmax.zig");
+ _ = @import("compiler_rt/fmin.zig");
+ _ = @import("compiler_rt/fmod.zig");
+ _ = @import("compiler_rt/log.zig");
+ _ = @import("compiler_rt/log10.zig");
+ _ = @import("compiler_rt/log2.zig");
+ _ = @import("compiler_rt/round.zig");
+ _ = @import("compiler_rt/sin.zig");
+ _ = @import("compiler_rt/sincos.zig");
+ _ = @import("compiler_rt/sqrt.zig");
+ _ = @import("compiler_rt/tan.zig");
+ _ = @import("compiler_rt/trunc.zig");
+
+ // BigInt. Alphabetically sorted.
+ _ = @import("compiler_rt/udivmodei4.zig");
+ _ = @import("compiler_rt/udivmodti4.zig");
+ // extra
_ = @import("compiler_rt/os_version_check.zig");
_ = @import("compiler_rt/emutls.zig");
_ = @import("compiler_rt/arm.zig");