update
This commit is contained in:
parent
0b8d7f44b4
commit
6ab1140623
1 changed files with 48 additions and 26 deletions
74
tcc-doc.texi
74
tcc-doc.texi
|
@ -403,6 +403,13 @@ is the same as writing
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
@section GNU C extensions
|
@section GNU C extensions
|
||||||
|
@cindex aligned attribute
|
||||||
|
@cindex packed attribute
|
||||||
|
@cindex section attribute
|
||||||
|
@cindex unused attribute
|
||||||
|
@cindex cdecl attribute
|
||||||
|
@cindex stdcall attribute
|
||||||
|
@cindex regparm attribute
|
||||||
|
|
||||||
TCC implements some GNU C extensions:
|
TCC implements some GNU C extensions:
|
||||||
|
|
||||||
|
@ -439,18 +446,27 @@ instead of
|
||||||
@item The keyword @code{__attribute__} is handled to specify variable or
|
@item The keyword @code{__attribute__} is handled to specify variable or
|
||||||
function attributes. The following attributes are supported:
|
function attributes. The following attributes are supported:
|
||||||
@itemize
|
@itemize
|
||||||
@item @code{aligned(n)}: align data to n bytes (must be a power of two).
|
|
||||||
|
|
||||||
@item @code{section(name)}: generate function or data in assembly
|
@item @code{aligned(n)}: align a variable or a structure field to n bytes
|
||||||
section name (name is a string containing the section name) instead
|
(must be a power of two).
|
||||||
of the default section.
|
|
||||||
|
@item @code{packed}: force alignment of a variable or a structure field to
|
||||||
|
1.
|
||||||
|
|
||||||
|
@item @code{section(name)}: generate function or data in assembly section
|
||||||
|
name (name is a string containing the section name) instead of the default
|
||||||
|
section.
|
||||||
|
|
||||||
@item @code{unused}: specify that the variable or the function is unused.
|
@item @code{unused}: specify that the variable or the function is unused.
|
||||||
|
|
||||||
@item @code{cdecl}: use standard C calling convention.
|
@item @code{cdecl}: use standard C calling convention (default).
|
||||||
|
|
||||||
@item @code{stdcall}: use Pascal-like calling convention.
|
@item @code{stdcall}: use Pascal-like calling convention.
|
||||||
|
|
||||||
|
@item @code{regparm(n)}: use fast i386 calling convention. @var{n} must be
|
||||||
|
between 1 and 3. The first @var{n} function parameters are respectively put in
|
||||||
|
registers @code{%eax}, @code{%edx} and @code{%ecx}.
|
||||||
|
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
Here are some examples:
|
Here are some examples:
|
||||||
|
@ -615,21 +631,27 @@ They can be defined several times in the same source. Use 'b'
|
||||||
@section Directives
|
@section Directives
|
||||||
@cindex assembler directives
|
@cindex assembler directives
|
||||||
@cindex directives, assembler
|
@cindex directives, assembler
|
||||||
@cindex .align
|
@cindex align directive
|
||||||
@cindex .skip
|
@cindex skip directive
|
||||||
@cindex .space
|
@cindex space directive
|
||||||
@cindex .byte
|
@cindex byte directive
|
||||||
@cindex .word
|
@cindex word directive
|
||||||
@cindex .short
|
@cindex short directive
|
||||||
@cindex .int
|
@cindex int directive
|
||||||
@cindex .long
|
@cindex long directive
|
||||||
@cindex .string
|
@cindex quad directive
|
||||||
@cindex .globl
|
@cindex globl directive
|
||||||
@cindex .global
|
@cindex global directive
|
||||||
@cindex .section
|
@cindex section directive
|
||||||
@cindex .text
|
@cindex text directive
|
||||||
@cindex .data
|
@cindex data directive
|
||||||
@cindex .bss
|
@cindex bss directive
|
||||||
|
@cindex fill directive
|
||||||
|
@cindex org directive
|
||||||
|
@cindex previous directive
|
||||||
|
@cindex string directive
|
||||||
|
@cindex asciz directive
|
||||||
|
@cindex ascii directive
|
||||||
|
|
||||||
All directives are preceeded by a '.'. The following directives are
|
All directives are preceeded by a '.'. The following directives are
|
||||||
supported:
|
supported:
|
||||||
|
@ -638,12 +660,12 @@ supported:
|
||||||
@item .align n[,value]
|
@item .align n[,value]
|
||||||
@item .skip n[,value]
|
@item .skip n[,value]
|
||||||
@item .space n[,value]
|
@item .space n[,value]
|
||||||
@item .byte value1[,value2...]
|
@item .byte value1[,...]
|
||||||
@item .word value1[,value2...]
|
@item .word value1[,...]
|
||||||
@item .short value1[,value2...]
|
@item .short value1[,...]
|
||||||
@item .int value1[,value2...]
|
@item .int value1[,...]
|
||||||
@item .long value1[,value2...]
|
@item .long value1[,...]
|
||||||
@item .string string
|
@item .quad immediate_value1[,...]
|
||||||
@item .globl symbol
|
@item .globl symbol
|
||||||
@item .global symbol
|
@item .global symbol
|
||||||
@item .section section
|
@item .section section
|
||||||
|
|
Loading…
Reference in a new issue