Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1477680, land NSPR 4.20 beta snapshot 34274ae8c85e, r=me
Browse files Browse the repository at this point in the history
UPGRADE_NSPR_RELEASE
  • Loading branch information
kaie committed Aug 22, 2018
1 parent 984901e commit feb4b2e
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nsprpub/TAG-INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6e31156d7002
34274ae8c85e
1 change: 0 additions & 1 deletion nsprpub/config/prdepend.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@
*/

#error "Do not include this header file."

4 changes: 4 additions & 0 deletions nsprpub/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -2106,6 +2106,10 @@ tools are selected during the Xcode/Developer Tools installation.])
AC_DEFINE(_AMD64_)
USE_64=1
;;
aarch64)
AC_DEFINE(_ARM64_)
USE_64=1
;;
ia64)
AC_DEFINE(_IA64_)
USE_64=1
Expand Down
49 changes: 49 additions & 0 deletions nsprpub/pr/include/md/_win95.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,55 @@
#define PR_BYTES_PER_WORD_LOG2 2
#define PR_BYTES_PER_DWORD_LOG2 3

#elif defined(_M_ARM64) || defined(_ARM64_)

#define IS_LITTLE_ENDIAN 1
#undef IS_BIG_ENDIAN
#define IS_64

#define PR_BYTES_PER_BYTE 1
#define PR_BYTES_PER_SHORT 2
#define PR_BYTES_PER_INT 4
#define PR_BYTES_PER_INT64 8
#define PR_BYTES_PER_LONG 4
#define PR_BYTES_PER_FLOAT 4
#define PR_BYTES_PER_WORD 8
#define PR_BYTES_PER_DWORD 8
#define PR_BYTES_PER_DOUBLE 8

#define PR_BITS_PER_BYTE 8
#define PR_BITS_PER_SHORT 16
#define PR_BITS_PER_INT 32
#define PR_BITS_PER_INT64 64
#define PR_BITS_PER_LONG 32
#define PR_BITS_PER_FLOAT 32
#define PR_BITS_PER_WORD 64
#define PR_BITS_PER_DWORD 64
#define PR_BITS_PER_DOUBLE 64

#define PR_BITS_PER_BYTE_LOG2 3
#define PR_BITS_PER_SHORT_LOG2 4
#define PR_BITS_PER_INT_LOG2 5
#define PR_BITS_PER_INT64_LOG2 6
#define PR_BITS_PER_LONG_LOG2 5
#define PR_BITS_PER_FLOAT_LOG2 5
#define PR_BITS_PER_WORD_LOG2 6
#define PR_BITS_PER_DWORD_LOG2 6
#define PR_BITS_PER_DOUBLE_LOG2 6

#define PR_ALIGN_OF_SHORT 2
#define PR_ALIGN_OF_INT 4
#define PR_ALIGN_OF_LONG 4
#define PR_ALIGN_OF_INT64 8
#define PR_ALIGN_OF_FLOAT 4
#define PR_ALIGN_OF_WORD 8
#define PR_ALIGN_OF_DWORD 8
#define PR_ALIGN_OF_DOUBLE 8
#define PR_ALIGN_OF_POINTER 8

#define PR_BYTES_PER_WORD_LOG2 3
#define PR_BYTES_PER_DWORD_LOG2 3

#else /* defined(_M_IX86) || defined(_X86_) */

#error unknown processor architecture
Expand Down
2 changes: 2 additions & 0 deletions nsprpub/pr/include/md/_win95.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#define _PR_SI_ARCHITECTURE "ia64"
#elif defined(_M_ARM) || defined(_ARM_)
#define _PR_SI_ARCHITECTURE "arm"
#elif defined(_M_ARM64)
#define _PR_SI_ARCHITECTURE "aarch64"
#else
#error unknown processor architecture
#endif
Expand Down

0 comments on commit feb4b2e

Please sign in to comment.