Skip to content

Commit

Permalink
eban
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Aug 30, 2000
1 parent db3e830 commit 5b3ed19
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
Wed Aug 30 17:09:14 2000 WATANABE Hirofumi <eban@os.rim.or.jp>

* ext/Win32API/Win32API.c (Win32API_initialize): AlphaNT support.

Wed Aug 30 14:19:07 2000 Yukihiro Matsumoto <matz@ruby-lang.org>

* parse.y (node_assign): should support NODE_CVASGN2 too.
Expand Down
31 changes: 31 additions & 0 deletions ext/Win32API/Win32API.c
Expand Up @@ -8,6 +8,17 @@
#include <stdio.h>
#endif

#if defined(_MSC_VER)
#if defined(_M_ALPHA)
#ifdef __cplusplus
extern "C" { long __asm(char *,...); };
#else
long __asm(char *,...);
#endif
#pragma intrinsic(__asm)
#endif
#endif

#define _T_VOID 0
#define _T_NUMBER 1
#define _T_POINTER 2
Expand Down Expand Up @@ -190,10 +201,20 @@ Win32API_Call(argc, argv, obj)
case _T_INTEGER:
lParam = NUM2ULONG(rb_ary_entry(args, i));
#if defined(_MSC_VER) || defined(__LCC__)
#if defined(_M_IX86)
_asm {
mov eax, lParam
push eax
}
#elif defined(_M_ALPHA)
__asm(
"ldl r0, 0(%0);"
"stq r0, -(sp);"
, lParam
);
#else
#error
#endif
#elif defined __GNUC__
asm volatile ("pushl %0" :: "g" (lParam));
#else
Expand All @@ -212,10 +233,20 @@ Win32API_Call(argc, argv, obj)
pParam = RSTRING(str)->ptr;
}
#if defined(_MSC_VER) || defined(__LCC__)
#if defined(_M_IX86)
_asm {
mov eax, pParam
push eax
}
#elif defined(_M_ALPHA)
__asm(
"ldl r0, 0(%0);"
"stq r0, -(sp);"
, pParam
);
#else
#error
#endif
#elif defined __GNUC__
asm volatile ("pushl %0" :: "g" (pParam));
#else
Expand Down

0 comments on commit 5b3ed19

Please sign in to comment.