Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
70835ebf
Commit
70835ebf
authored
Mar 15, 2004
by
Jukka Heinonen
Committed by
Alexandre Julliard
Mar 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove support for generating interrupt handlers.
parent
2165660f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
26 deletions
+6
-26
build.h
tools/winebuild/build.h
+2
-3
parser.c
tools/winebuild/parser.c
+0
-6
spec16.c
tools/winebuild/spec16.c
+4
-14
winebuild.man.in
tools/winebuild/winebuild.man.in
+0
-3
No files found.
tools/winebuild/build.h
View file @
70835ebf
...
...
@@ -123,10 +123,9 @@ typedef struct
#define FLAG_RET64 0x08
/* function returns a 64-bit value */
#define FLAG_I386 0x10
/* function is i386 only */
#define FLAG_REGISTER 0x20
/* use register calling convention */
#define FLAG_INTERRUPT 0x40
/* function is an interrupt handler */
#define FLAG_PRIVATE 0x80
/* function is private (cannot be imported) */
#define FLAG_PRIVATE 0x40
/* function is private (cannot be imported) */
#define FLAG_FORWARD 0x
100
/* function is a forwarded name */
#define FLAG_FORWARD 0x
80
/* function is a forwarded name */
/* Offset of a structure field relative to the start of the struct */
#define STRUCTOFFSET(type,field) ((int)&((type *)0)->field)
...
...
tools/winebuild/parser.c
View file @
70835ebf
...
...
@@ -66,7 +66,6 @@ static const char * const FlagNames[] =
"ret64"
,
/* FLAG_RET64 */
"i386"
,
/* FLAG_I386 */
"register"
,
/* FLAG_REGISTER */
"interrupt"
,
/* FLAG_INTERRUPT */
"private"
,
/* FLAG_PRIVATE */
NULL
};
...
...
@@ -240,11 +239,6 @@ static int parse_spec_export( ORDDEF *odp, DLLSPEC *spec )
error
(
"'pascal' not supported for Win32
\n
"
);
return
0
;
}
if
(
odp
->
flags
&
FLAG_INTERRUPT
)
{
error
(
"'interrupt' not supported for Win32
\n
"
);
return
0
;
}
break
;
default:
break
;
...
...
tools/winebuild/spec16.c
View file @
70835ebf
...
...
@@ -317,8 +317,6 @@ static int BuildModule16( FILE *outfile, int max_code_offset,
* extern LONG WINAPI PREFIX_CallFrom16_C_long_xxx( FARPROC func, LPBYTE args );
* extern void WINAPI PREFIX_CallFrom16_C_regs_xxx( FARPROC func, LPBYTE args,
* CONTEXT86 *context );
* extern void WINAPI PREFIX_CallFrom16_C_intr_xxx( FARPROC func, LPBYTE args,
* CONTEXT86 *context );
*
* where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
* and each 'x' is an argument ('w'=word, 's'=signed word, 'l'=long,
...
...
@@ -333,10 +331,6 @@ static int BuildModule16( FILE *outfile, int max_code_offset,
* For register functions, the arguments (if present) are converted just
* the same as for normal functions, but in addition the CONTEXT86 pointer
* filled with the current register values is passed to the 32-bit routine.
* (An 'intr' interrupt handler routine is treated exactly like a register
* routine, except that upon return, the flags word pushed onto the stack
* by the interrupt is removed by the 16-bit call stub.)
*
*/
static
void
BuildCallFrom16Func
(
FILE
*
outfile
,
const
char
*
profile
,
const
char
*
prefix
)
{
...
...
@@ -360,7 +354,6 @@ static void BuildCallFrom16Func( FILE *outfile, const char *profile, const char
if
(
!
strncmp
(
"word_"
,
profile
+
2
,
5
))
short_ret
=
1
;
else
if
(
!
strncmp
(
"regs_"
,
profile
+
2
,
5
))
reg_func
=
1
;
else
if
(
!
strncmp
(
"intr_"
,
profile
+
2
,
5
))
reg_func
=
2
;
else
if
(
strncmp
(
"long_"
,
profile
+
2
,
5
))
{
fprintf
(
stderr
,
"Invalid function name '%s', ignored
\n
"
,
profile
);
...
...
@@ -467,7 +460,6 @@ static const char *get_function_name( const ORDDEF *odp )
(
odp
->
type
==
TYPE_PASCAL
)
?
"p"
:
(
odp
->
type
==
TYPE_VARARGS
)
?
"v"
:
"c"
,
(
odp
->
flags
&
FLAG_REGISTER
)
?
"regs"
:
(
odp
->
flags
&
FLAG_INTERRUPT
)
?
"intr"
:
(
odp
->
flags
&
FLAG_RET16
)
?
"word"
:
"long"
,
odp
->
u
.
func
.
arg_types
);
return
buffer
;
...
...
@@ -490,8 +482,8 @@ static int Spec16TypeCompare( const void *e1, const void *e2 )
if
((
retval
=
type1
-
type2
)
!=
0
)
return
retval
;
type1
=
odp1
->
flags
&
(
FLAG_RET16
|
FLAG_REGISTER
|
FLAG_INTERRUPT
);
type2
=
odp2
->
flags
&
(
FLAG_RET16
|
FLAG_REGISTER
|
FLAG_INTERRUPT
);
type1
=
odp1
->
flags
&
(
FLAG_RET16
|
FLAG_REGISTER
);
type2
=
odp2
->
flags
&
(
FLAG_RET16
|
FLAG_REGISTER
);
if
((
retval
=
type1
-
type2
)
!=
0
)
return
retval
;
...
...
@@ -701,8 +693,6 @@ void BuildSpec16File( FILE *outfile, DLLSPEC *spec )
break
;
}
if
(
typelist
[
i
]
->
flags
&
FLAG_INTERRUPT
)
argsize
+=
2
;
/* build the arg types bit fields */
arg_types
[
0
]
=
arg_types
[
1
]
=
0
;
for
(
j
=
0
;
typelist
[
i
]
->
u
.
func
.
arg_types
[
j
];
j
++
)
...
...
@@ -719,13 +709,13 @@ void BuildSpec16File( FILE *outfile, DLLSPEC *spec )
}
arg_types
[
j
/
10
]
|=
type
<<
(
3
*
(
j
%
10
));
}
if
(
typelist
[
i
]
->
flags
&
(
FLAG_REGISTER
|
FLAG_INTERRUPT
)
)
arg_types
[
0
]
|=
ARG_REGISTER
;
if
(
typelist
[
i
]
->
flags
&
FLAG_REGISTER
)
arg_types
[
0
]
|=
ARG_REGISTER
;
if
(
typelist
[
i
]
->
flags
&
FLAG_RET16
)
arg_types
[
0
]
|=
ARG_RET16
;
#ifdef __i386__
fprintf
(
outfile
,
" { 0x68, __wine_%s_CallFrom16_%s, 0x9a, __wine_call_from_16_%s,
\n
"
,
make_c_identifier
(
spec
->
file_name
),
profile
,
(
typelist
[
i
]
->
flags
&
(
FLAG_REGISTER
|
FLAG_INTERRUPT
)
)
?
"regs"
:
(
typelist
[
i
]
->
flags
&
FLAG_REGISTER
)
?
"regs"
:
(
typelist
[
i
]
->
flags
&
FLAG_RET16
)
?
"word"
:
"long"
);
if
(
argsize
)
fprintf
(
outfile
,
" 0x%04x, 0xca66, %d, { 0x%08x, 0x%08x } },
\n
"
,
...
...
tools/winebuild/winebuild.man.in
View file @
70835ebf
...
...
@@ -239,9 +239,6 @@ The entry point is only available on i386 platforms.
.B -register
The function uses CPU register to pass arguments.
.TP
.B -interrupt
The function is an interrupt handler routine.
.TP
.B -private
The function cannot be imported from other dlls, it can only be
accessed through GetProcAddress.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment