Skip to content

Commit

Permalink
WIP: Enable build on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
ginggs committed Apr 8, 2016
1 parent 960fdbf commit 019990e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Make.inc
Expand Up @@ -73,6 +73,9 @@ REAL_ARCH := $(ARCH)
ifeq ($(findstring arm,$(ARCH)),arm)
override ARCH := arm
endif
ifeq ($(ARCH),aarch64)
override ARCH := arm
endif
ifeq ($(findstring powerpc,$(ARCH)),powerpc)
override ARCH := powerpc
endif
Expand Down
8 changes: 4 additions & 4 deletions bsdsrc/b_tgamma.c
Expand Up @@ -128,16 +128,16 @@ tgamma(x)
{
struct Double u;

if (x >= 6) {
if (isgreaterequal(x, 6)) {
if(x > 171.63)
return (x / zero);
u = large_gam(x);
return(__exp__D(u.a, u.b));
} else if (x >= 1.0 + LEFT + x0)
} else if (isgreaterequal(x, 1.0 + LEFT + x0))
return (small_gam(x));
else if (x > 1.e-17)
else if (isgreater(x, 1.e-17))
return (smaller_gam(x));
else if (x > -1.e-17) {
else if (isgreater(x, -1.e-17)) {
if (x != 0.0)
u.a = one - tiny; /* raise inexact */
return (one/x);
Expand Down
2 changes: 1 addition & 1 deletion include/openlibm_fenv.h
Expand Up @@ -2,7 +2,7 @@
#include <fenv.h>
#else /* !OPENLIBM_USE_HOST_FENV_H */

#if defined(__arm__)
#if defined(__aarch64__) || defined(__arm__)
#include <openlibm_fenv_arm.h>
#elif defined(__x86_64__)
#include <openlibm_fenv_amd64.h>
Expand Down
5 changes: 4 additions & 1 deletion include/openlibm_fenv_arm.h
Expand Up @@ -64,7 +64,10 @@ extern const fenv_t __fe_dfl_env;
#define _FPUSW_SHIFT 16
#define _ENABLE_MASK (FE_ALL_EXCEPT << _FPUSW_SHIFT)

#ifdef ARM_HARD_FLOAT
#if defined(__aarch64__)
#define __rfs(__fpsr) __asm __volatile("mrs %0,fpsr" : "=r" (*(__fpsr)))
#define __wfs(__fpsr) __asm __volatile("msr fpsr,%0" : : "r" (__fpsr))
#elif defined(ARM_HARD_FLOAT)
#define __rfs(__fpsr) __asm __volatile("rfs %0" : "=r" (*(__fpsr)))
#define __wfs(__fpsr) __asm __volatile("wfs %0" : : "r" (__fpsr))
#else
Expand Down

0 comments on commit 019990e

Please sign in to comment.