Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 0c28e62

Browse files
committed
Give up on packing, add floating point routines
1 parent 1da7d29 commit 0c28e62

File tree

138 files changed

+6203
-210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+6203
-210
lines changed

.github/workflows/pack.yml

-34
This file was deleted.

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
/cc-runtime.c
2-
/cc-runtime.o
1+
*.d
2+
*.o
3+
*.a

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cc-runtime
22
==========
33

4-
cc-runtime is a freestanding, integer-only, easy to integrate subset of LLVM's
5-
compiler-rt libgcc-compatibility functions.
4+
cc-runtime is a freestanding, easy to integrate subset of LLVM's compiler-rt
5+
libgcc-compatibility functions.
66

77
Relevant licenses apply: see license headers in source files and LICENSE.TXT.

adddf3.c

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//===-- lib/adddf3.c - Double-precision addition ------------------*- C -*-===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
//
9+
// This file implements double-precision soft-float addition.
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
#ifndef CC_RUNTIME_NO_FLOAT
14+
15+
#define DOUBLE_PRECISION
16+
#include "fp_add_impl.inc"
17+
18+
COMPILER_RT_ABI double __adddf3(double a, double b) { return __addXf3__(a, b); }
19+
20+
#if defined(__ARM_EABI__)
21+
#if defined(COMPILER_RT_ARMHF_TARGET)
22+
AEABI_RTABI double __aeabi_dadd(double a, double b) { return __adddf3(a, b); }
23+
#else
24+
COMPILER_RT_ALIAS(__adddf3, __aeabi_dadd)
25+
#endif
26+
#endif
27+
28+
#endif

addsf3.c

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//===-- lib/addsf3.c - Single-precision addition ------------------*- C -*-===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
//
9+
// This file implements single-precision soft-float addition.
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
#ifndef CC_RUNTIME_NO_FLOAT
14+
15+
#define SINGLE_PRECISION
16+
#include "fp_add_impl.inc"
17+
18+
COMPILER_RT_ABI float __addsf3(float a, float b) { return __addXf3__(a, b); }
19+
20+
#if defined(__ARM_EABI__)
21+
#if defined(COMPILER_RT_ARMHF_TARGET)
22+
AEABI_RTABI float __aeabi_fadd(float a, float b) { return __addsf3(a, b); }
23+
#else
24+
COMPILER_RT_ALIAS(__addsf3, __aeabi_fadd)
25+
#endif
26+
#endif
27+
28+
#endif

addtf3.c

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//===-- lib/addtf3.c - Quad-precision addition --------------------*- C -*-===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
//
9+
// This file implements quad-precision soft-float addition.
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
#ifndef CC_RUNTIME_NO_FLOAT
14+
15+
#define QUAD_PRECISION
16+
#include "fp_lib.h"
17+
18+
#if defined(CRT_HAS_TF_MODE)
19+
#include "fp_add_impl.inc"
20+
21+
COMPILER_RT_ABI fp_t __addtf3(fp_t a, fp_t b) {
22+
return __addXf3__(a, b);
23+
}
24+
25+
#endif
26+
27+
#endif

assembly.h

+24-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// See https://llvm.org/LICENSE.txt for license information.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
7-
// 2024/01/21 - Modified by mintsuki for use inside cc-runtime
8-
//
97
//===----------------------------------------------------------------------===//
108
//
119
// This file defines macros for use in compiler-rt assembler source.
@@ -18,6 +16,8 @@
1816

1917
#define SEPARATOR ;
2018

19+
#if defined(__ELF__)
20+
2121
#define HIDDEN(name) .hidden name
2222
#define LOCAL_LABEL(name) .L_##name
2323
#define FILE_LEVEL_DIRECTIVE
@@ -30,6 +30,22 @@
3030

3131
#define NO_EXEC_STACK_DIRECTIVE .section .note.GNU-stack,"",%progbits
3232

33+
#else // !__ELF__
34+
35+
#define HIDDEN(name)
36+
#define LOCAL_LABEL(name) .L ## name
37+
#define FILE_LEVEL_DIRECTIVE
38+
#define SYMBOL_IS_FUNC(name) \
39+
.def name SEPARATOR \
40+
.scl 2 SEPARATOR \
41+
.type 32 SEPARATOR \
42+
.endef
43+
#define CONST_SECTION .section .rdata,"rd"
44+
45+
#define NO_EXEC_STACK_DIRECTIVE
46+
47+
#endif
48+
3349
#if defined(__arm__) || defined(__aarch64__)
3450
#define FUNC_ALIGN \
3551
.text SEPARATOR \
@@ -166,9 +182,7 @@
166182
#define GLUE4_(a, b, c, d) a##b##c##d
167183
#define GLUE4(a, b, c, d) GLUE4_(a, b, c, d)
168184

169-
#ifndef SYMBOL_NAME
170185
#define SYMBOL_NAME(name) GLUE(__USER_LABEL_PREFIX__, name)
171-
#endif
172186

173187
#ifdef VISIBILITY_HIDDEN
174188
#define DECLARE_SYMBOL_VISIBILITY(name) \
@@ -239,10 +253,16 @@
239253
#define DEFINE_AEABI_FUNCTION_ALIAS(aeabi_name, name)
240254
#endif
241255

256+
#ifdef __ELF__
242257
#define END_COMPILERRT_FUNCTION(name) \
243258
.size SYMBOL_NAME(name), . - SYMBOL_NAME(name)
244259
#define END_COMPILERRT_OUTLINE_FUNCTION(name) \
245260
CFI_END SEPARATOR \
246261
.size SYMBOL_NAME(name), . - SYMBOL_NAME(name)
262+
#else
263+
#define END_COMPILERRT_FUNCTION(name)
264+
#define END_COMPILERRT_OUTLINE_FUNCTION(name) \
265+
CFI_END
266+
#endif
247267

248268
#endif // COMPILERRT_ASSEMBLY_H

cc-runtime.mk

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
MAKEFLAGS += -rR
2+
.SUFFIXES:
3+
4+
override USER_VARIABLE = $(if $(filter $(origin $(1)),default undefined),$(eval override $(1) := $(2)))
5+
6+
$(call USER_VARIABLE,CC,cc)
7+
8+
$(call USER_VARIABLE,AR,ar)
9+
10+
$(call USER_VARIABLE,CFLAGS,-g -O2 -pipe)
11+
$(call USER_VARIABLE,CPPFLAGS,)
12+
13+
override CFLAGS += \
14+
-Wall \
15+
-Wextra \
16+
-std=gnu11 \
17+
-ffreestanding \
18+
-fno-stack-protector \
19+
-fno-stack-check \
20+
-fno-lto \
21+
-ffunction-sections \
22+
-fdata-sections
23+
24+
override CPPFLAGS := \
25+
$(CPPFLAGS) \
26+
-MMD \
27+
-MP
28+
29+
override CFILES := $(shell find -L * -type f -name '*.c' | LC_ALL=C sort)
30+
override OBJ := $(CFILES:.c=.c.o)
31+
override HEADER_DEPS := $(CFILES:.c=.c.d)
32+
33+
$(info Building cc-runtime.a...)
34+
35+
.PHONY: all
36+
all: cc-runtime.a
37+
38+
cc-runtime.a: $(OBJ)
39+
@$(AR) rcs $@ $(OBJ)
40+
@ls -la $@
41+
@echo "Done."
42+
43+
-include $(HEADER_DEPS)
44+
45+
%.c.o: %.c cc-runtime.mk
46+
@$(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
47+
48+
.PHONY: clean
49+
clean:
50+
rm -f cc-runtime.a $(OBJ) $(HEADER_DEPS)

clzdi2.c

-6
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// See https://llvm.org/LICENSE.txt for license information.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
7-
// 2024/08/10 - Modified by mintsuki for use inside cc-runtime
8-
//
97
//===----------------------------------------------------------------------===//
108
//
119
// This file implements __clzdi2 for the compiler_rt library.
@@ -35,7 +33,3 @@ COMPILER_RT_ABI int __clzdi2(di_int a) {
3533
return clzsi((x.s.high & ~f) | (x.s.low & f)) +
3634
(f & ((si_int)(sizeof(si_int) * CHAR_BIT)));
3735
}
38-
39-
#ifdef __builtin_clz
40-
#undef __builtin_clz
41-
#endif

comparedf2.c

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
//===-- lib/comparedf2.c - Double-precision comparisons -----------*- C -*-===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
//
9+
// // This file implements the following soft-float comparison routines:
10+
//
11+
// __eqdf2 __gedf2 __unorddf2
12+
// __ledf2 __gtdf2
13+
// __ltdf2
14+
// __nedf2
15+
//
16+
// The semantics of the routines grouped in each column are identical, so there
17+
// is a single implementation for each, and wrappers to provide the other names.
18+
//
19+
// The main routines behave as follows:
20+
//
21+
// __ledf2(a,b) returns -1 if a < b
22+
// 0 if a == b
23+
// 1 if a > b
24+
// 1 if either a or b is NaN
25+
//
26+
// __gedf2(a,b) returns -1 if a < b
27+
// 0 if a == b
28+
// 1 if a > b
29+
// -1 if either a or b is NaN
30+
//
31+
// __unorddf2(a,b) returns 0 if both a and b are numbers
32+
// 1 if either a or b is NaN
33+
//
34+
// Note that __ledf2( ) and __gedf2( ) are identical except in their handling of
35+
// NaN values.
36+
//
37+
//===----------------------------------------------------------------------===//
38+
39+
#ifndef CC_RUNTIME_NO_FLOAT
40+
41+
#define DOUBLE_PRECISION
42+
#include "fp_lib.h"
43+
44+
#include "fp_compare_impl.inc"
45+
46+
COMPILER_RT_ABI CMP_RESULT __ledf2(fp_t a, fp_t b) { return __leXf2__(a, b); }
47+
48+
#if defined(__ELF__)
49+
// Alias for libgcc compatibility
50+
COMPILER_RT_ALIAS(__ledf2, __cmpdf2)
51+
#endif
52+
COMPILER_RT_ALIAS(__ledf2, __eqdf2)
53+
COMPILER_RT_ALIAS(__ledf2, __ltdf2)
54+
COMPILER_RT_ALIAS(__ledf2, __nedf2)
55+
56+
COMPILER_RT_ABI CMP_RESULT __gedf2(fp_t a, fp_t b) { return __geXf2__(a, b); }
57+
58+
COMPILER_RT_ALIAS(__gedf2, __gtdf2)
59+
60+
COMPILER_RT_ABI CMP_RESULT __unorddf2(fp_t a, fp_t b) {
61+
return __unordXf2__(a, b);
62+
}
63+
64+
#if defined(__ARM_EABI__)
65+
#if defined(COMPILER_RT_ARMHF_TARGET)
66+
AEABI_RTABI int __aeabi_dcmpun(fp_t a, fp_t b) { return __unorddf2(a, b); }
67+
#else
68+
COMPILER_RT_ALIAS(__unorddf2, __aeabi_dcmpun)
69+
#endif
70+
#endif
71+
72+
#endif

0 commit comments

Comments
 (0)