summaryrefslogtreecommitdiffstats
path: root/sys/sys/iconv.h
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2005-07-02 23:52:37 +0000
committermarcel <marcel@FreeBSD.org>2005-07-02 23:52:37 +0000
commit9e64e57e54a92f1dcb01125eafa15a65af897cdc (patch)
tree8c592ac5708941dd17f386936bfc56f9692ddb3e /sys/sys/iconv.h
parentd7e928629d1fd82199b336e5a513e6308c7ec45b (diff)
downloadFreeBSD-src-9e64e57e54a92f1dcb01125eafa15a65af897cdc.zip
FreeBSD-src-9e64e57e54a92f1dcb01125eafa15a65af897cdc.tar.gz
Implement functions calls from within DDB on ia64. On ia64 a function
pointer doesn't point to the first instruction of that function, but rather to a descriptor. The descriptor has the address of the first instruction, as well as the value of the global pointer. The symbol table doesn't know anything about descriptors, so if you lookup the name of a function you get the address of the first instruction. The cast from the address, which is the result of the symbol lookup, to a function pointer as is done in db_fncall is therefore invalid. Abstract this detail behind the DB_CALL macro. By default DB_CALL is defined as db_fncall_generic, which yields the old behaviour. On ia64 the macro is defined as db_fncall_ia64, in which a descriptor is constructed to yield a valid function pointer. While here, introduce DB_MAXARGS. DB_MAXARGS replaces the existing (local) MAXARGS. The DB_MAXARGS macro can be defined by platforms to create a convenient maximum. By default this will be the legacy 10. On ia64 we define this macro to be 8, for 8 is the maximum number of arguments that can be passed in registers. This avoids having to implement spilling of arguments on the memory stack. Approved by: re (dwhite)
Diffstat (limited to 'sys/sys/iconv.h')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud