mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
parameters (which is by default linked in with libunix.a),
regular expressions can no longer prompt dos.library requesters
to appear. However, to be on the safe side, if you are expecting
to pass regular expressions on the command line, do not use
the wildcard expansion code such as by overriding the library
symbols with dummy functions such as are used in the file
"stdlib_wildcard_expand.c".
- Added a new variable '__open_locale' which can be used to
restrict all library functions to use the "C" language locale
rather than the current system locale settings. In addition
to that, two new functions __locale_exit() and __locale_init()
can be used to close and (re-)open the system locale at a
later time.
- Local ("static") functions are now identified by the STATIC
qualifier. This was done in preparation for changes that will
deal with global and local data and the issue of thread safety.
git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14839 87f5fb63-7c3d-0410-a384-fd976d0f7a62
195 lines
5.1 KiB
C
195 lines
5.1 KiB
C
/*
|
|
* $Id: debug_kputfmt.c,v 1.3 2005-02-25 10:14:21 obarthel Exp $
|
|
*
|
|
* :ts=4
|
|
*
|
|
* Portable ISO 'C' (1994) runtime library for the Amiga computer
|
|
* Copyright (c) 2002-2005 by Olaf Barthel <olsen@sourcery.han.de>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* - Neither the name of Olaf Barthel nor the names of contributors
|
|
* may be used to endorse or promote products derived from this
|
|
* software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "debug_headers.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
#if defined(__amigaos4__)
|
|
|
|
/****************************************************************************/
|
|
|
|
/* Count the number of parameters that need to be passed on the stack. If a
|
|
parameter table is provided, pick up the parameters and store them in
|
|
the table. The table layout follows the format string and can include
|
|
both 16 and 32 bit data. */
|
|
STATIC size_t
|
|
process_var_args(char *format_string,va_list argument_list,unsigned short * table)
|
|
{
|
|
size_t num_args = 0;
|
|
char len;
|
|
char c;
|
|
|
|
while((c = (*format_string++)) != '\0')
|
|
{
|
|
if(c != '%')
|
|
continue;
|
|
|
|
/* Process the flags; only '-' is allowed here. */
|
|
if((*format_string) == '-')
|
|
format_string++;
|
|
|
|
/* Process the field width; this must be a string of digits. */
|
|
c = (*format_string);
|
|
while('0' <= c && c <= '9')
|
|
{
|
|
format_string++;
|
|
|
|
c = (*format_string);
|
|
}
|
|
|
|
/* Process the size limit field, if any. */
|
|
if((*format_string) == '.')
|
|
{
|
|
format_string++;
|
|
|
|
c = (*format_string);
|
|
while('0' <= c && c <= '9')
|
|
{
|
|
format_string++;
|
|
|
|
c = (*format_string);
|
|
}
|
|
}
|
|
|
|
/* Take care of the parameter length, if any. */
|
|
len = (*format_string);
|
|
if(len == 'l')
|
|
format_string++;
|
|
|
|
c = (*format_string++);
|
|
if(c == '\0')
|
|
break;
|
|
|
|
/* Check if any of the following parameters might come from the
|
|
stack, and if so, convert them into the form expected by the
|
|
operating system. */
|
|
switch(c)
|
|
{
|
|
/* 32 bit pointers (BSTR or STRPTR) */
|
|
case 'b':
|
|
case 's':
|
|
|
|
if(table != NULL)
|
|
(*(unsigned long *)&table[num_args]) = (unsigned long)va_arg(argument_list,char *);
|
|
|
|
num_args += 2;
|
|
break;
|
|
|
|
/* Single character */
|
|
case 'c':
|
|
|
|
/* NOTE: va_arg() is quietly assumed not to be able to expand 'char' type
|
|
parameters. They appear to default to 'int' and should show up as such
|
|
on the stack (or wherever they ended up). We therefore assume that they
|
|
should be picked up as type 'int' rather than as type 'char'. */
|
|
|
|
/* Numeric constant, which is assumed to be of type int. */
|
|
case 'd':
|
|
case 'u':
|
|
case 'x':
|
|
|
|
if(table != NULL)
|
|
{
|
|
if(len == 'l')
|
|
(*(unsigned long *)&table[num_args]) = (unsigned long)va_arg(argument_list,int);
|
|
else
|
|
table[num_args] = (unsigned short)va_arg(argument_list,int);
|
|
}
|
|
|
|
if(len == 'l')
|
|
num_args += 2;
|
|
else
|
|
num_args++;
|
|
|
|
break;
|
|
|
|
/* Anything else is taken as is... */
|
|
default:
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
return(num_args);
|
|
}
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif /* __amigaos4__ */
|
|
|
|
/****************************************************************************/
|
|
|
|
STATIC VOID ASM
|
|
raw_put_char(REG(d0,UBYTE c))
|
|
{
|
|
kputc(c);
|
|
}
|
|
|
|
/****************************************************************************/
|
|
|
|
VOID
|
|
KPutFmt(const char * format_string,va_list argument_list)
|
|
{
|
|
assert( format_string != NULL );
|
|
|
|
if(format_string != NULL)
|
|
{
|
|
#if defined(__amigaos4__)
|
|
{
|
|
size_t num_args;
|
|
|
|
/* The following assumes that GCC extensions are available. */
|
|
|
|
num_args = process_var_args((char *)format_string,argument_list,NULL);
|
|
if(num_args > 0)
|
|
{
|
|
unsigned short table[num_args];
|
|
|
|
(void)process_var_args((char *)format_string,argument_list,table);
|
|
|
|
KDoFmt(format_string,(APTR)table,(APTR)raw_put_char,NULL);
|
|
}
|
|
else
|
|
{
|
|
KDoFmt(format_string,NULL,(APTR)raw_put_char,NULL);
|
|
}
|
|
}
|
|
#else
|
|
{
|
|
KDoFmt(format_string,(APTR)argument_list,(APTR)raw_put_char,NULL);
|
|
}
|
|
#endif /* __amigaos4__ */
|
|
}
|
|
}
|