PPC64: Add LJ_GC64 mode interpreter for ppc.

This commit is contained in:
Gustavo Serra Scalet 2015-06-02 14:50:03 -03:00 committed by Gustavo Serra Scalet
parent dbd04e77a0
commit 821f0b7535
2 changed files with 4517 additions and 0 deletions

View File

@ -207,6 +207,15 @@ enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */
#define CFRAME_OFS_MULTRES 456 #define CFRAME_OFS_MULTRES 456
#define CFRAME_SIZE 400 #define CFRAME_SIZE 400
#define CFRAME_SHIFT_MULTRES 3 #define CFRAME_SHIFT_MULTRES 3
#elif LJ_ARCH_PPC64
#define CFRAME_OFS_ERRF 88
#define CFRAME_OFS_NRES 80
#define CFRAME_OFS_L 72
#define CFRAME_OFS_PC 64
#define CFRAME_OFS_MULTRES 56
#define CFRAME_OFS_PREV 48
#define CFRAME_SIZE 400
#define CFRAME_SHIFT_MULTRES 3
#else #else
#define CFRAME_OFS_ERRF 48 #define CFRAME_OFS_ERRF 48
#define CFRAME_OFS_NRES 44 #define CFRAME_OFS_NRES 44

4508
src/vm_ppc64.dasc Normal file

File diff suppressed because it is too large Load Diff