mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Add chibicc
This program popped up on Hacker News recently. It's the only modern compiler I've ever seen that doesn't have dependencies and is easily modified. So I added all of the missing GNU extensions I like to use which means it might be possible soon to build on non-Linux and have third party not vendor gcc binaries.
This commit is contained in:
parent
e44a0cf6f8
commit
8da931a7f6
298 changed files with 19493 additions and 11950 deletions
|
@ -23,7 +23,6 @@
|
|||
#include "libc/testlib/testlib.h"
|
||||
#include "libc/tinymath/tinymath.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/dtoa/dtoa.h"
|
||||
|
||||
TEST(powl, testLongDouble) {
|
||||
/* .4248496805467504836322459796959084815827285786480897 */
|
||||
|
|
|
@ -34,18 +34,18 @@ FIXTURE(intrin, disableHardwareExtensions) {
|
|||
|
||||
TEST(round, testCornerCases) {
|
||||
EXPECT_STREQ("-0", gc(xdtoa(tinymath_round(-0.0))));
|
||||
EXPECT_STREQ("nan", gc(xdtoa(tinymath_round(NAN))));
|
||||
EXPECT_STREQ("-nan", gc(xdtoa(tinymath_round(-NAN))));
|
||||
EXPECT_STREQ("inf", gc(xdtoa(tinymath_round(INFINITY))));
|
||||
EXPECT_STREQ("-inf", gc(xdtoa(tinymath_round(-INFINITY))));
|
||||
EXPECT_STREQ("NAN", gc(xdtoa(tinymath_round(NAN))));
|
||||
EXPECT_STREQ("-NAN", gc(xdtoa(tinymath_round(-NAN))));
|
||||
EXPECT_STREQ("INFINITY", gc(xdtoa(tinymath_round(INFINITY))));
|
||||
EXPECT_STREQ("-INFINITY", gc(xdtoa(tinymath_round(-INFINITY))));
|
||||
}
|
||||
|
||||
TEST(roundl, testCornerCases) {
|
||||
EXPECT_STREQ("-0", gc(xdtoa(tinymath_roundl(-0.0))));
|
||||
EXPECT_STREQ("nan", gc(xdtoa(tinymath_roundl(NAN))));
|
||||
EXPECT_STREQ("-nan", gc(xdtoa(tinymath_roundl(-NAN))));
|
||||
EXPECT_STREQ("inf", gc(xdtoa(tinymath_roundl(INFINITY))));
|
||||
EXPECT_STREQ("-inf", gc(xdtoa(tinymath_roundl(-INFINITY))));
|
||||
EXPECT_STREQ("NAN", gc(xdtoa(tinymath_roundl(NAN))));
|
||||
EXPECT_STREQ("-NAN", gc(xdtoa(tinymath_roundl(-NAN))));
|
||||
EXPECT_STREQ("INFINITY", gc(xdtoa(tinymath_roundl(INFINITY))));
|
||||
EXPECT_STREQ("-INFINITY", gc(xdtoa(tinymath_roundl(-INFINITY))));
|
||||
}
|
||||
|
||||
TEST(round, test) {
|
||||
|
@ -149,10 +149,10 @@ TEST(rintl, test) {
|
|||
|
||||
TEST(roundf, testCornerCases) {
|
||||
EXPECT_STREQ("-0", gc(xdtoa(tinymath_roundf(-0.0))));
|
||||
EXPECT_STREQ("nan", gc(xdtoa(tinymath_roundf(NAN))));
|
||||
EXPECT_STREQ("-nan", gc(xdtoa(tinymath_roundf(-NAN))));
|
||||
EXPECT_STREQ("inf", gc(xdtoa(tinymath_roundf(INFINITY))));
|
||||
EXPECT_STREQ("-inf", gc(xdtoa(tinymath_roundf(-INFINITY))));
|
||||
EXPECT_STREQ("NAN", gc(xdtoa(tinymath_roundf(NAN))));
|
||||
EXPECT_STREQ("-NAN", gc(xdtoa(tinymath_roundf(-NAN))));
|
||||
EXPECT_STREQ("INFINITY", gc(xdtoa(tinymath_roundf(INFINITY))));
|
||||
EXPECT_STREQ("-INFINITY", gc(xdtoa(tinymath_roundf(-INFINITY))));
|
||||
}
|
||||
|
||||
TEST(lroundf, test) {
|
||||
|
|
|
@ -18,25 +18,26 @@
|
|||
│ 02110-1301 USA │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/math.h"
|
||||
#include "libc/runtime/gc.h"
|
||||
#include "libc/testlib/ezbench.h"
|
||||
#include "libc/testlib/testlib.h"
|
||||
#include "third_party/dtoa/dtoa.h"
|
||||
#include "libc/x/x.h"
|
||||
|
||||
char buf[32];
|
||||
|
||||
TEST(sinl, testLongDouble) {
|
||||
EXPECT_STREQ(".479425538604203", g_fmt(buf, sinl(0.5)));
|
||||
EXPECT_STREQ("-.479425538604203", g_fmt(buf, sinl(-0.5)));
|
||||
EXPECT_STREQ(".479425538604203", gc(xdtoa(sinl(.5))));
|
||||
EXPECT_STREQ("-.479425538604203", gc(xdtoa(sinl(-.5))));
|
||||
}
|
||||
|
||||
TEST(sinl, testDouble) {
|
||||
EXPECT_STREQ(".479425538604203", g_fmt(buf, sin(0.5)));
|
||||
EXPECT_STREQ("-.479425538604203", g_fmt(buf, sin(-0.5)));
|
||||
EXPECT_STREQ(".479425538604203", gc(xdtoa(sin(.5))));
|
||||
EXPECT_STREQ("-.479425538604203", gc(xdtoa(sin(-.5))));
|
||||
}
|
||||
|
||||
TEST(sinl, testFloat) {
|
||||
EXPECT_STARTSWITH(".4794255", g_fmt(buf, sinf(0.5f)));
|
||||
EXPECT_STARTSWITH("-.4794255", g_fmt(buf, sinf(-0.5f)));
|
||||
EXPECT_STARTSWITH(".4794255", gc(xdtoa(sinf(.5f))));
|
||||
EXPECT_STARTSWITH("-.4794255", gc(xdtoa(sinf(-.5f))));
|
||||
}
|
||||
|
||||
BENCH(sinl, bench) {
|
||||
|
|
|
@ -32,8 +32,7 @@ TEST_LIBC_TINYMATH_DIRECTDEPS = \
|
|||
LIBC_NEXGEN32E \
|
||||
LIBC_STUBS \
|
||||
LIBC_TESTLIB \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_DTOA
|
||||
LIBC_X
|
||||
|
||||
TEST_LIBC_TINYMATH_DEPS := \
|
||||
$(call uniq,$(foreach x,$(TEST_LIBC_TINYMATH_DIRECTDEPS),$($(x))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue