Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sys/include/ape: add BYTE_ORDER #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions 386/include/ape/_apetypes.h
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
#if !defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN)
#define __BYTE_ORDER __LITTLE_ENDIAN
#endif

#if !defined(BYTE_ORDER) && defined(LITTLE_ENDIAN)
#define BYTE_ORDER LITTLE_ENDIAN
#endif
5 changes: 5 additions & 0 deletions 386/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
8 changes: 0 additions & 8 deletions amd64/include/ape/_apetypes.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
#ifndef _BITS64
#define _BITS64
#endif

#if !defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN)
#define __BYTE_ORDER __LITTLE_ENDIAN
#endif

#if !defined(BYTE_ORDER) && defined(LITTLE_ENDIAN)
#define BYTE_ORDER LITTLE_ENDIAN
#endif
5 changes: 5 additions & 0 deletions amd64/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
5 changes: 5 additions & 0 deletions arm/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
5 changes: 5 additions & 0 deletions mips/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __BIG_ENDIAN
5 changes: 5 additions & 0 deletions mips64/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __BIG_ENDIAN
5 changes: 5 additions & 0 deletions power/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __BIG_ENDIAN
5 changes: 5 additions & 0 deletions power64/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __BIG_ENDIAN
5 changes: 5 additions & 0 deletions riscv/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
5 changes: 5 additions & 0 deletions riscv64/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
5 changes: 5 additions & 0 deletions sparc/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __BIG_ENDIAN
5 changes: 5 additions & 0 deletions spim/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
5 changes: 5 additions & 0 deletions spim64/include/ape/_endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifndef _ENDIAN_H_
This header file is expected to include only from machine/endian.h
#endif

#define __BYTE_ORDER __LITTLE_ENDIAN
13 changes: 9 additions & 4 deletions sys/include/ape/machine/endian.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
#ifndef _ENDIAN_H_
#define _ENDIAN_H_

#define LITTLE_ENDIAN 1234
#define BIG_ENDIAN 4321
#define PDP_ENDIAN 3412
#define __LITTLE_ENDIAN 1234
#define __BIG_ENDIAN 4321
#define __PDP_ENDIAN 3412

#include "_apetypes.h"
#include <_endian.h>

#define LITTLE_ENDIAN __LITTLE_ENDIAN
#define BIG_ENDIAN __BIG_ENDIAN
#define PDP_ENDIAN __PDP_ENDIAN
#define BYTE_ORDER __BYTE_ORDER

#endif