1 /* -*- mode: C; c-basic-offset: 3; -*- */
3 /*--------------------------------------------------------------------*/
4 /*--- Debug (not-for-user) logging; also vprintf. m_debuglog.c ---*/
5 /*--------------------------------------------------------------------*/
8 This file is part of Valgrind, a dynamic binary instrumentation
11 Copyright (C) 2000-2017 Julian Seward
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, see <http://www.gnu.org/licenses/>.
27 The GNU General Public License is contained in the file COPYING.
31 /* Performs low-level debug logging that can safely run immediately
32 after startup. To minimise the dependencies on any other parts of
33 the system, the only place the debug output may go is file
34 descriptor 2 (stderr).
36 /* This is the first-initialised module in the entire system!
37 Therefore it is CRITICAL that it does not depend on any other code
38 running first. Hence only the following very limited includes. We
39 cannot depend (directly or indirectly) on any dynamic memory
40 allocation facilities, nor on the m_libc facilities, since the
41 latter depend on this module. DO NOT MESS WITH THESE INCLUDES
42 UNLESS YOU ARE 100% CERTAIN YOU UNDERSTAND THE CONSEQUENCES.
45 /* This module is also notable because it is linked into both
48 /* IMPORTANT: on Darwin it is essential to use the _nocancel versions
49 of syscalls rather than the vanilla version, if a _nocancel version
50 is available. See docs/internals/Darwin-notes.txt for the reason
53 #include "pub_core_basics.h" /* basic types */
54 #include "pub_core_vkiscnums.h" /* for syscall numbers */
55 #include "pub_core_debuglog.h" /* our own iface */
56 #include "pub_core_clreq.h" /* for RUNNING_ON_VALGRIND */
57 #if defined(VGO_solaris)
58 #include "pub_core_vki.h" /* for EINTR and ERESTART */
63 void VG_(debugLog_setXml
)(Bool xml
)
68 /*------------------------------------------------------------*/
69 /*--- Stuff to make us completely independent. ---*/
70 /*------------------------------------------------------------*/
72 /* ----- Platform-specifics ----- */
74 #if defined(VGP_x86_linux)
76 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
82 "movl $"VG_STRINGIFY(__NR_write
)", %%eax\n" /* %eax = __NR_write */
83 "movl $2, %%ebx\n" /* %ebx = stderr */
84 "int $0x80\n" /* write(stderr, buf, n) */
86 : /*wr*/ "=a" (result
)
87 : /*rd*/ "c" (buf
), "d" (n
)
88 : /*trash*/ "edi", "memory", "cc"
91 return result
>= 0 ? result
: -1;
94 static UInt
local_sys_getpid ( void )
98 "movl $"VG_STRINGIFY(__NR_getpid
)", %%eax\n" /* %eax = __NR_getpid */
99 "int $0x80\n" /* getpid() */
100 "movl %%eax, %0\n" /* set __res = eax */
107 #elif defined(VGP_amd64_linux)
109 __attribute__((noinline
))
110 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
112 volatile Long block
[2];
113 block
[0] = (Long
)buf
;
116 "subq $256, %%rsp\n" /* don't trash the stack redzone */
117 "pushq %%r15\n" /* r15 is callee-save */
118 "movq %0, %%r15\n" /* r15 = &block */
119 "pushq %%r15\n" /* save &block */
120 "movq $"VG_STRINGIFY(__NR_write
)", %%rax\n" /* rax = __NR_write */
121 "movq $2, %%rdi\n" /* rdi = stderr */
122 "movq 0(%%r15), %%rsi\n" /* rsi = buf */
123 "movq 8(%%r15), %%rdx\n" /* rdx = n */
124 "syscall\n" /* write(stderr, buf, n) */
125 "popq %%r15\n" /* reestablish &block */
126 "movq %%rax, 0(%%r15)\n" /* block[0] = result */
127 "popq %%r15\n" /* restore r15 */
128 "addq $256, %%rsp\n" /* restore stack ptr */
131 : /*trash*/ "rax", "rdi", "rsi", "rdx", "memory", "cc", "rcx", "r11"
135 return (UInt
)block
[0];
138 static UInt
local_sys_getpid ( void )
142 "movq $"VG_STRINGIFY(__NR_getpid
)", %%rax\n" /* %rax = __NR_getpid */
143 "syscall\n" /* getpid() */
144 "movl %%eax, %0\n" /* set __res = %eax */
147 : "rax", "rcx", "r11"
152 #elif defined(VGP_ppc32_linux)
154 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
156 volatile Int block
[2];
161 "mr 5,%0\n\t" /* r5 = &block[0] */
162 "stw 5,0(1)\n\t" /* stash on stack */
163 "li 0,"VG_STRINGIFY(__NR_write
)"\n\t" /* set %r0 = __NR_write */
164 "li 3,2\n\t" /* set %r3 = stderr */
165 "lwz 4,0(5)\n\t" /* set %r4 = buf */
166 "lwz 5,4(5)\n\t" /* set %r5 = n */
167 "sc\n\t" /* write(stderr, buf, n) */
170 "stw 3,0(5)\n" /* block[0] = result */
173 : "cc","memory","cr0","ctr",
174 "r0","r2","r3","r4","r5","r6","r7","r8","r9","r10","r11","r12"
178 return (UInt
)block
[0];
181 static UInt
local_sys_getpid ( void )
183 register UInt __res
__asm__ ("r3");
189 : "cc","memory","cr0","ctr",
190 "r0","r2","r4","r5","r6","r7","r8","r9","r10","r11","r12"
195 #elif defined(VGP_ppc64be_linux) || defined(VGP_ppc64le_linux)
197 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
199 volatile Long block
[2];
200 block
[0] = (Long
)buf
;
204 "mr 5,%0\n\t" /* r5 = &block[0] */
205 "std 5,0(1)\n\t" /* stash on stack */
206 "li 0,"VG_STRINGIFY(__NR_write
)"\n\t" /* %r0 = __NR_write */
207 "li 3,2\n\t" /* set %r3 = stderr */
208 "ld 4,0(5)\n\t" /* set %r4 = buf */
209 "ld 5,8(5)\n\t" /* set %r5 = n */
210 "sc\n\t" /* write(stderr, buf, n) */
213 "std 3,0(5)\n" /* block[0] = result */
216 : "cc","memory","cr0","ctr",
217 "r0","r3","r4","r5","r6","r7","r8","r9","r10","r11","r12"
221 return (UInt
)(Int
)block
[0];
224 static UInt
local_sys_getpid ( void )
226 register ULong __res
__asm__ ("r3");
232 : "cc","memory","cr0","ctr",
233 "r0","r4","r5","r6","r7","r8","r9","r10","r11","r12"
238 #elif defined(VGP_arm_linux)
240 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
242 volatile Int block
[2];
246 "mov r0, #2\n\t" /* stderr */
247 "ldr r1, [%0]\n\t" /* buf */
248 "ldr r2, [%0, #4]\n\t" /* n */
250 "mov r7, #"VG_STRINGIFY(__NR_write
)"\n\t"
251 "svc 0x0\n" /* write() */
260 return (UInt
)block
[0];
263 static UInt
local_sys_getpid ( void )
268 "mov r7, #"VG_STRINGIFY(__NR_getpid
)"\n\t"
269 "svc 0x0\n\t" /* getpid() */
278 #elif defined(VGP_arm64_linux)
280 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
282 volatile ULong block
[2];
283 block
[0] = (ULong
)buf
;
286 "mov x0, #2\n\t" /* stderr */
287 "ldr x1, [%0]\n\t" /* buf */
288 "ldr x2, [%0, #8]\n\t" /* n */
289 "mov x8, #"VG_STRINGIFY(__NR_write
)"\n\t"
290 "svc 0x0\n" /* write() */
294 : "x0","x1","x2","x7"
298 return (UInt
)block
[0];
301 static UInt
local_sys_getpid ( void )
305 "mov x8, #"VG_STRINGIFY(__NR_getpid
)"\n"
306 "svc 0x0\n" /* getpid() */
314 #elif defined(VGP_x86_darwin)
316 /* We would use VG_DARWIN_SYSNO_TO_KERNEL instead of VG_DARWIN_SYSNO_INDEX
317 except that the former has a C ternary ?: operator which isn't valid in
318 asm code. Both macros give the same results for Unix-class syscalls (which
319 these all are, as identified by the use of 'int 0x80'). */
320 __attribute__((noinline
))
321 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
325 "movl %2, %%eax\n" /* push n */
327 "movl %1, %%eax\n" /* push buf */
329 "movl $2, %%eax\n" /* push stderr */
331 "movl $"VG_STRINGIFY(VG_DARWIN_SYSNO_INDEX(__NR_write_nocancel
))
333 "pushl %%eax\n" /* push fake return address */
334 "int $0x80\n" /* write(stderr, buf, n) */
335 "jnc 1f\n" /* jump if no error */
336 "movl $-1, %%eax\n" /* return -1 if error */
338 "movl %%eax, %0\n" /* __res = eax */
339 "addl $16, %%esp\n" /* pop x4 */
347 static UInt
local_sys_getpid ( void )
351 "movl $"VG_STRINGIFY(VG_DARWIN_SYSNO_INDEX(__NR_getpid
))", %%eax\n"
352 "int $0x80\n" /* getpid() */
353 "movl %%eax, %0\n" /* set __res = eax */
360 #elif defined(VGP_amd64_darwin)
362 __attribute__((noinline
))
363 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
367 "movq $2, %%rdi\n" /* push stderr */
368 "movq %1, %%rsi\n" /* push buf */
369 "movl %2, %%edx\n" /* push n */
370 "movl $"VG_STRINGIFY(VG_DARWIN_SYSNO_FOR_KERNEL(__NR_write_nocancel
))
372 "syscall\n" /* write(stderr, buf, n) */
373 "jnc 1f\n" /* jump if no error */
374 "movq $-1, %%rax\n" /* return -1 if error */
376 "movl %%eax, %0\n" /* __res = eax */
379 : "rdi", "rsi", "rdx", "rcx", "rax", "cc" );
383 static UInt
local_sys_getpid ( void )
387 "movl $"VG_STRINGIFY(VG_DARWIN_SYSNO_FOR_KERNEL(__NR_getpid
))", %%eax\n"
388 "syscall\n" /* getpid() */
389 "movl %%eax, %0\n" /* set __res = eax */
392 : "rax", "rcx", "cc" );
396 #elif defined(VGP_s390x_linux)
398 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
400 register Int r2
asm("2") = 2; /* file descriptor STDERR */
401 register const HChar
* r3
asm("3") = buf
;
402 register ULong r4
asm("4") = n
;
403 register ULong r2_res
asm("2");
406 __asm__
__volatile__ (
416 if (__res
>= (ULong
)(-125))
418 return (UInt
)(__res
);
421 static UInt
local_sys_getpid ( void )
423 register ULong r2
asm("2");
426 __asm__
__volatile__ (
433 if (__res
>= (ULong
)(-125))
435 return (UInt
)(__res
);
438 #elif defined(VGP_x86_freebsd)
439 static UInt
local_sys_write_stderr (const HChar
* buf
, Int n
)
444 "movl %2, %%eax\n" /* push n */
445 "movl %1, %%edx\n" /* push buf */
448 "movl $2, %%eax\n" /* push stderr */
450 "movl $"VG_STRINGIFY(__NR_write
)", %%eax\n"
451 "pushl %%eax\n" /* push write syscall id */
452 "int $0x80\n" /* write(stderr, buf, n) */
453 "jnc 1f\n" /* jump if no error */
454 "movl $-1, %%eax\n" /* return -1 if error */
456 "movl %%eax, %0\n" /* __res = eax */
457 "addl $16, %%esp\n" /* pop x4 */
458 : /*wr*/ "=mr" (result
)
459 : /*rd*/ "g" (buf
), "g" (n
)
460 : /*trash*/ "eax", "edx", "cc"
462 return result
>= 0 ? result
: -1;
465 static UInt
local_sys_getpid ( void )
469 "movl $20, %%eax\n" /* set %eax = __NR_getpid */
470 "int $0x80\n" /* getpid() */
471 "movl %%eax, %0\n" /* set __res = eax */
478 #elif defined(VGP_amd64_freebsd)
479 __attribute__((noinline
))
480 static UInt
local_sys_write_stderr (const HChar
* buf
, Int n
)
482 volatile Long block
[2];
483 block
[0] = (Long
)buf
;
486 "subq $256, %%rsp\n" /* don't trash the stack redzone */
487 "pushq %%r15\n" /* r15 is callee-save */
488 "movq %0, %%r15\n" /* r15 = &block */
489 "pushq %%r15\n" /* save &block */
490 "movq $"VG_STRINGIFY(__NR_write
)", %%rax\n" /* rax = __NR_write */
491 "movq $2, %%rdi\n" /* rdi = stderr */
492 "movq 0(%%r15), %%rsi\n" /* rsi = buf */
493 "movq 8(%%r15), %%rdx\n" /* rdx = n */
494 "syscall\n" /* write(stderr, buf, n) */
495 "popq %%r15\n" /* reestablish &block */
496 "movq %%rax, 0(%%r15)\n" /* block[0] = result */
497 "popq %%r15\n" /* restore r15 */
498 "addq $256, %%rsp\n" /* restore stack ptr */
501 : /*trash*/ "rax", "rdi", "rsi", "rdx", "memory", "cc", "rcx", "r8", "r9", "r11"
505 return (UInt
)block
[0];
508 static UInt
local_sys_getpid ( void )
512 "movq $20, %%rax\n" /* set %rax = __NR_getpid */
513 "syscall\n" /* getpid() */
514 "movl %%eax, %0\n" /* set __res = %eax */
517 : "rax", "rcx");//, "r11" );
521 #elif defined(VGP_arm64_freebsd)
523 static UInt
local_sys_write_stderr ( const HChar
* buf
, SizeT n
)
525 volatile ULong block
[2];
526 block
[0] = (ULong
)buf
;
529 "mov x0, #2\n" /* stderr */
530 "ldr x1, [%0]\n" /* buf */
531 "ldr x2, [%0, #8]\n" /* n */
532 "mov x8, #"VG_STRINGIFY(__NR_write
)"\n"
533 "svc 0x0\n" /* write() */
537 : "x0","x1","x2","x8","cc","memory"
541 return (UInt
)block
[0];
544 static UInt
local_sys_getpid ( void )
548 "mov x8, #"VG_STRINGIFY(__NR_getpid
)"\n"
549 "svc 0x0\n" /* getpid() */
550 "mov %0, x0\n" /* set res = x0 */
553 : "x8", "x0", "x1", "cc" );
557 #elif defined(VGP_mips32_linux) || defined(VGP_mips64_linux)
559 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
561 register RegWord v0
asm("2");
562 register RegWord a0
asm("4");
563 register RegWord a1
asm("5");
564 register RegWord a2
asm("6");
567 a1
= (RegWord
)(Addr
)buf
;
571 "addiu $4, $0, -1 \n\t"
572 #if ((defined(__mips_isa_rev) && __mips_isa_rev >= 6))
573 "selnez $4, $4, $7 \n\t"
574 "seleqz $2, $2, $7 \n\t"
577 "movn $2, $4, $7 \n\t"
579 : "+d" (v0
), "+d" (a0
), "+d" (a1
), "+d" (a2
)
581 : "$1", "$3", "$7", "$8", "$9", "$10", "$11", "$12", "$13", "$14", "$15",
587 static UInt
local_sys_getpid ( void )
589 register RegWord v0
asm("2");
595 : "$1", "$3", "$4", "$5", "$6", "$7", "$8", "$9", "$10", "$11", "$12",
596 "$13", "$14", "$15", "$24", "$25", "$31"
601 #elif defined(VGP_nanomips_linux)
603 __attribute__((noinline
))
604 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
606 register RegWord t4
asm("2");
607 register RegWord a0
asm("4");
608 register RegWord a1
asm("5");
609 register RegWord a2
asm("6");
612 a1
= (RegWord
)(Addr
)buf
;
616 : "+d" (t4
), "+d" (a0
), "+d" (a1
), "+d" (a2
)
618 : "$at", "$t5", "$a3", "$a4", "$a5", "$a6", "$a7", "$t0", "$t1", "$t2",
624 __attribute__((noinline
))
625 static UInt
local_sys_getpid ( void )
627 register RegWord t4
asm("2");
628 register RegWord a0
asm("4");
632 : "+d" (t4
), "=d" (a0
)
634 : "$at", "$t5", "$a1", "$a2", "$a3", "$a4", "$a5", "$a6", "$a7", "$t0",
635 "$t1", "$t2", "$t3", "$t8", "$t9"
640 #elif defined(VGP_x86_solaris)
641 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
647 /* The Solaris kernel does not restart syscalls automatically so it is
649 __asm__
__volatile__ (
650 "movl %[n], %%eax\n" /* push n */
652 "movl %[buf], %%eax\n" /* push buf */
654 "movl $2, %%eax\n" /* push stderr */
656 "movl $"VG_STRINGIFY(__NR_write
)", %%eax\n"
657 "pushl %%eax\n" /* push fake return address */
658 "int $0x91\n" /* write(stderr, buf, n) */
659 "movl $0, %%edx\n" /* assume no error */
660 "jnc 1f\n" /* jump if no error */
661 "movl $1, %%edx\n" /* set error flag */
663 "addl $16, %%esp\n" /* pop x4 */
664 : "=&a" (res
), "=d" (err
)
665 : [buf
] "g" (buf
), [n
] "g" (n
)
667 restart
= err
&& (res
== VKI_EINTR
|| res
== VKI_ERESTART
);
673 static UInt
local_sys_getpid ( void )
677 /* The getpid() syscall never returns EINTR or ERESTART so there is no need
678 for restarting it. */
679 __asm__
__volatile__ (
680 "movl $"VG_STRINGIFY(__NR_getpid
)", %%eax\n"
681 "int $0x91\n" /* getpid() */
689 #elif defined(VGP_amd64_solaris)
690 static UInt
local_sys_write_stderr ( const HChar
* buf
, Int n
)
696 /* The Solaris kernel does not restart syscalls automatically so it is
698 __asm__
__volatile__ (
699 "movq $2, %%rdi\n" /* push stderr */
700 "movq $"VG_STRINGIFY(__NR_write
)", %%rax\n"
701 "syscall\n" /* write(stderr, buf, n) */
702 "movq $0, %%rdx\n" /* assume no error */
703 "jnc 1f\n" /* jump if no error */
704 "movq $1, %%rdx\n" /* set error flag */
706 : "=a" (res
), "=d" (err
)
709 restart
= err
&& (res
== VKI_EINTR
|| res
== VKI_ERESTART
);
715 static UInt
local_sys_getpid ( void )
719 /* The getpid() syscall never returns EINTR or ERESTART so there is no need
720 for restarting it. */
721 __asm__
__volatile__ (
722 "movq $"VG_STRINGIFY(__NR_getpid
)", %%rax\n"
723 "syscall\n" /* getpid() */
732 # error Unknown platform
736 /* ----- generic ----- */
738 /* strlen, so we don't need m_libc */
739 static Int
local_strlen ( const HChar
* str
)
742 while (str
[i
] != 0) i
++;
746 static HChar
local_toupper ( HChar c
)
748 if (c
>= 'a' && c
<= 'z')
749 return c
+ ('A' - 'a');
754 /* Emit buf[0 .. n-1] to stderr. Unfortunately platform-specific.
756 static void emit ( const HChar
* buf
, Int n
)
759 (void)local_sys_write_stderr(buf
, n
);
763 /*------------------------------------------------------------*/
764 /*--- A simple, generic, vprintf implementation. ---*/
765 /*------------------------------------------------------------*/
767 /* -----------------------------------------------
768 Distantly derived from:
770 vprintf replacement for Checker.
771 Copyright 1993, 1994, 1995 Tristan Gingold
772 Written September 1993 Tristan Gingold
773 Tristan Gingold, 8 rue Parmentier, F-91120 PALAISEAU, FRANCE
775 (Checker itself was GPL'd.)
776 ----------------------------------------------- */
779 #define VG_MSG_SIGNED 1 /* The value is signed. */
780 #define VG_MSG_ZJUSTIFY 2 /* Must justify with '0'. */
781 #define VG_MSG_LJUSTIFY 4 /* Must justify on the left. */
782 #define VG_MSG_PAREN 8 /* Parenthesize if present (for %y) */
783 #define VG_MSG_COMMA 16 /* Add commas to numbers (for %d, %u) */
784 #define VG_MSG_ALTFORMAT 32 /* Convert the value to alternate format */
786 /* Copy a string into the buffer. */
788 UInt
myvprintf_str ( void(*send
)(HChar
,void*),
795 # define MAYBE_TOUPPER(ch) (capitalise ? local_toupper(ch) : (ch))
798 Int len
= local_strlen(str
);
802 for (i
= 0; i
< len
; i
++)
803 send(MAYBE_TOUPPER(str
[i
]), send_arg2
);
809 for (i
= 0; i
< width
; i
++)
810 send(MAYBE_TOUPPER(str
[i
]), send_arg2
);
815 if (! (flags
& VG_MSG_LJUSTIFY
)) {
817 for (i
= 0; i
< extra
; i
++)
818 send(' ', send_arg2
);
821 for (i
= 0; i
< len
; i
++)
822 send(MAYBE_TOUPPER(str
[i
]), send_arg2
);
823 if (flags
& VG_MSG_LJUSTIFY
) {
825 for (i
= 0; i
< extra
; i
++)
826 send(' ', send_arg2
);
829 # undef MAYBE_TOUPPER
834 /* Copy a string into the buffer, escaping bad XML chars. */
836 UInt
myvprintf_str_XML_simplistic ( void(*send
)(HChar
,void*),
842 Int len
= local_strlen(str
);
845 for (i
= 0; i
< len
; i
++) {
847 case '&': alt
= "&"; break;
848 case '<': alt
= "<"; break;
849 case '>': alt
= ">"; break;
855 send(*alt
, send_arg2
);
860 send(str
[i
], send_arg2
);
869 /* Write P into the buffer according to these args:
870 * If SIGN is true, p is a signed.
872 * If WITH_ZERO is true, '0' must be added.
873 * WIDTH is the width of the field.
876 UInt
myvprintf_int64 ( void(*send
)(HChar
,void*),
884 /* To print an ULong base 2 needs 64 characters. If commas are requested,
885 add 21. Plus 1 for a possible sign plus 1 for \0. Makes 87 -- so let's
886 say 90. The size of BUF needs to be max(90, WIDTH + 1) */
887 HChar buf
[width
+ 1 > 90 ? width
+ 1 : 90];
891 const HChar
* digits
= capitalised
? "0123456789ABCDEF" : "0123456789abcdef";
894 if (base
< 2 || base
> 16)
897 if ((flags
& VG_MSG_SIGNED
) && (Long
)p
< 0) {
906 if (flags
& VG_MSG_COMMA
&& 10 == base
&&
907 0 == (ind
-nc
) % 3 && 0 != ind
)
912 buf
[ind
++] = digits
[p
% base
];
920 if (width
> 0 && !(flags
& VG_MSG_LJUSTIFY
)) {
921 for(; ind
< width
; ind
++) {
922 buf
[ind
] = (flags
& VG_MSG_ZJUSTIFY
) ? '0': ' ';
926 /* Reverse copy to buffer. */
928 for (i
= ind
-1; i
>= 0; i
--) {
929 send(buf
[i
], send_arg2
);
931 if (width
> 0 && (flags
& VG_MSG_LJUSTIFY
)) {
932 for(; ind
< width
; ind
++) {
934 /* Never pad with zeroes on RHS -- changes the value! */
935 send(' ', send_arg2
);
942 /* A simple vprintf(). */
945 VG_(debugLog_vprintf
) (
946 void(*send
)(HChar
,void*),
955 Int width
, precision
;
957 Bool is_long
, is_sizet
, caps
;
959 /* We assume that vargs has already been initialised by the
960 caller, using va_start, and that the caller will similarly
961 clean up with va_end.
964 for (i
= 0; format
[i
] != 0; i
++) {
965 if (format
[i
] != '%') {
966 send(format
[i
], send_arg2
);
971 /* A '%' has been found. Ignore a trailing %. */
974 if (format
[i
] == '%') {
975 /* '%%' is replaced by '%'. */
976 send('%', send_arg2
);
982 width
= 0; /* length of the field. */
983 precision
= -1; /* unspecified precision */
987 flags
|= VG_MSG_PAREN
;
991 /* If ',' or '\'' follows '%', commas will be inserted. */
992 flags
|= VG_MSG_COMMA
;
995 /* If '-' follows '%', justify on the left. */
996 flags
|= VG_MSG_LJUSTIFY
;
999 /* If '0' follows '%', pads will be inserted. */
1000 flags
|= VG_MSG_ZJUSTIFY
;
1003 /* If '#' follows '%', alternative format will be used. */
1004 flags
|= VG_MSG_ALTFORMAT
;
1007 goto parse_fieldwidth
;
1012 /* Compute the field length. */
1013 if (format
[i
] == '*') {
1014 width
= va_arg(vargs
, Int
);
1017 while (format
[i
] >= '0' && format
[i
] <= '9') {
1019 width
+= format
[i
++] - '0';
1022 /* Parse precision, if any. Only meaningful for %f. For all other
1023 format specifiers the precision will be silently ignored. */
1024 if (format
[i
] == '.') {
1026 if (format
[i
] == '*') {
1027 precision
= va_arg(vargs
, Int
);
1031 while (format
[i
] >= '0' && format
[i
] <= '9') {
1033 precision
+= format
[i
++] - '0';
1039 if (format
[i
] == 'z') {
1043 while (format
[i
] == 'l') {
1049 // %d means print a 32-bit integer.
1050 // %ld means print a word-size integer.
1051 // %lld means print a 64-bit integer.
1052 if (0 == n_ls
) { is_long
= False
; }
1053 else if (1 == n_ls
) { is_long
= ( sizeof(void*) == sizeof(Long
) ); }
1054 else { is_long
= True
; }
1056 switch (format
[i
]) {
1058 if (flags
& VG_MSG_ALTFORMAT
) {
1060 send('0',send_arg2
);
1063 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 8, width
, False
,
1064 (ULong
)(va_arg (vargs
, SizeT
)));
1066 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 8, width
, False
,
1067 (ULong
)(va_arg (vargs
, ULong
)));
1069 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 8, width
, False
,
1070 (ULong
)(va_arg (vargs
, UInt
)));
1073 flags
|= VG_MSG_SIGNED
;
1075 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 10, width
, False
,
1076 (ULong
)(va_arg (vargs
, Long
)));
1078 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 10, width
, False
,
1079 (ULong
)(va_arg (vargs
, Int
)));
1083 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 10, width
, False
,
1084 (ULong
)(va_arg (vargs
, SizeT
)));
1086 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 10, width
, False
,
1087 (ULong
)(va_arg (vargs
, ULong
)));
1089 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 10, width
, False
,
1090 (ULong
)(va_arg (vargs
, UInt
)));
1093 if (format
[i
+1] == 'S') {
1095 /* %pS, like %s but escaping chars for XML safety */
1096 /* Note: simplistic; ignores field width and flags */
1097 const HChar
*str
= va_arg (vargs
, HChar
*);
1100 ret
+= myvprintf_str_XML_simplistic(send
, send_arg2
, str
);
1101 } else if (format
[i
+1] == 's') {
1103 /* %ps, synonym for %s with --xml=no / %pS with --xml=yes */
1104 const HChar
*str
= va_arg (vargs
, HChar
*);
1108 ret
+= myvprintf_str_XML_simplistic(send
, send_arg2
, str
);
1110 ret
+= myvprintf_str(send
, send_arg2
, flags
, width
, str
,
1115 send('0',send_arg2
);
1116 send('x',send_arg2
);
1117 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 16, width
, True
,
1118 (ULong
)((UWord
)va_arg (vargs
, void *)));
1123 caps
= toBool(format
[i
] == 'X');
1124 if (flags
& VG_MSG_ALTFORMAT
) {
1126 send('0',send_arg2
);
1127 send('x',send_arg2
);
1130 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 16, width
, False
,
1131 (ULong
)(va_arg (vargs
, SizeT
)));
1133 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 16, width
, caps
,
1134 (ULong
)(va_arg (vargs
, ULong
)));
1136 ret
+= myvprintf_int64(send
, send_arg2
, flags
, 16, width
, caps
,
1137 (ULong
)(va_arg (vargs
, UInt
)));
1141 send(va_arg (vargs
, int), send_arg2
);
1143 case 's': case 'S': { /* %s */
1144 const HChar
*str
= va_arg (vargs
, HChar
*);
1145 if (str
== NULL
) str
= "(null)";
1146 ret
+= myvprintf_str(send
, send_arg2
,
1147 flags
, width
, str
, format
[i
]=='S');
1151 /* Print a floating point number in the format x.y without
1152 any exponent. Capabilities are extremely limited, basically
1153 a joke, but good enough for our needs. */
1154 Double val
= va_arg (vargs
, Double
);
1155 Bool is_negative
= False
;
1162 /* If the integral part of the floating point number cannot be
1163 represented by an ULONG_MAX, print '*' characters */
1164 if (val
> (Double
)(~0ULL)) {
1165 if (width
== 0) width
= 6; // say
1166 for (cnt
= 0; cnt
< width
; ++cnt
)
1167 send('*', send_arg2
);
1171 /* The integral part of the floating point number is representable
1174 Double frac
= val
- ipval
;
1176 if (precision
== -1) precision
= 6; // say
1178 /* Silently limit the precision to 10 digits. */
1179 if (precision
> 10) precision
= 10;
1181 /* Determine fractional part, possibly round up */
1183 for (cnt
= 0; cnt
< precision
; ++cnt
)
1185 ULong frval
= frac
* factor
;
1186 if ((frac
* factor
- frval
) > 0.5) // round up
1188 /* Check rounding. */
1189 if (frval
== factor
)
1193 /* Find out how many characters are needed to print the number */
1195 /* The integral part... */
1196 UInt ipwidth
, num_digit
= 1; // at least one digit
1198 for (x
= 10; ; old_x
= x
, x
*= 10, ++num_digit
) {
1199 if (x
<= old_x
) break; // overflow occurred
1200 if (ipval
< x
) break;
1202 ipwidth
= num_digit
; // width of integral part.
1203 if (is_negative
) ++num_digit
;
1205 num_digit
+= 1 + precision
;
1209 // Fill in blanks on the left
1210 if (num_digit
< width
&& (flags
& VG_MSG_LJUSTIFY
) == 0) {
1211 for (cnt
= 0; cnt
< width
- num_digit
; ++cnt
)
1212 send(' ', send_arg2
);
1213 ret
+= width
- num_digit
;
1217 send('-', send_arg2
);
1221 ret
+= myvprintf_int64(send
, send_arg2
, 0, 10, ipwidth
, False
,
1223 // Decimal point and fractional part
1224 if (precision
!= 0) {
1225 send('.', send_arg2
);
1228 ret
+= myvprintf_int64(send
, send_arg2
, VG_MSG_ZJUSTIFY
, 10,
1229 precision
, False
, frval
);
1231 // Fill in blanks on the right
1232 if (num_digit
< width
&& (flags
& VG_MSG_LJUSTIFY
) != 0) {
1233 for (cnt
= 0; cnt
< width
- num_digit
; ++cnt
)
1234 send(' ', send_arg2
);
1235 ret
+= width
- num_digit
;
1240 // case 'y': { /* %y - print symbol */
1241 // Addr a = va_arg(vargs, Addr);
1244 // if (VG_(get_fnname_w_offset)(a, &name)) {
1245 // HChar buf[1 + VG_strlen(name) + 1 + 1];
1246 // if (flags & VG_MSG_PAREN) {
1247 // VG_(sprintf)(str, "(%s)", name):
1249 // VG_(sprintf)(str, "%s", name):
1251 // ret += myvprintf_str(send, flags, width, buf, 0);
1263 /*------------------------------------------------------------*/
1264 /*--- Debuglog stuff. ---*/
1265 /*------------------------------------------------------------*/
1267 /* Only print messages whose stated level is less than or equal to
1268 this. By default, it makes this entire subsystem silent. */
1270 static Int loglevel
= 0;
1272 /* Module startup. */
1274 void VG_(debugLog_startup
) ( Int level
, const HChar
* who
)
1276 if (level
< 0) level
= 0;
1277 if (level
> 10) level
= 10;
1279 VG_(debugLog
)(1, "debuglog",
1280 "DebugLog system started by %s, "
1281 "level %d logging requested\n",
1285 /* Get the logging threshold level, as set by the most recent call to
1286 VG_(debugLog_startup), or zero if there have been no such calls so
1289 Int
VG_(debugLog_getLevel
) ( void )
1304 static void add_to_buf ( HChar c
, void* p
)
1306 printf_buf
* buf
= (printf_buf
*)p
;
1308 if (buf
->n
>= 100-10 /*paranoia*/ ) {
1309 emit( buf
->buf
, local_strlen(buf
->buf
) );
1311 buf
->buf
[buf
->n
] = 0;
1313 buf
->buf
[buf
->n
++] = c
;
1314 buf
->buf
[buf
->n
] = 0;
1317 /* Send a logging message. Nothing is output unless 'level'
1318 is <= the current loglevel. */
1320 void VG_(debugLog
) ( Int level
, const HChar
* modulename
,
1321 const HChar
* format
, ... )
1324 Int indent
, depth
, i
;
1328 if (level
> loglevel
)
1331 indent
= 2*level
- 1;
1332 if (indent
< 1) indent
= 1;
1336 pid
= local_sys_getpid();
1338 // Print one '>' in front of the messages for each level of self-hosting
1340 depth
= RUNNING_ON_VALGRIND
;
1341 for (i
= 0; i
< depth
; i
++) {
1342 (void)myvprintf_str ( add_to_buf
, &buf
, 0, 1, ">", False
);
1345 (void)myvprintf_str ( add_to_buf
, &buf
, 0, 2, "--", False
);
1346 (void)myvprintf_int64 ( add_to_buf
, &buf
, 0, 10, 1, False
, (ULong
)pid
);
1347 (void)myvprintf_str ( add_to_buf
, &buf
, 0, 1, ":", False
);
1348 (void)myvprintf_int64 ( add_to_buf
, &buf
, 0, 10, 1, False
, (ULong
)level
);
1349 (void)myvprintf_str ( add_to_buf
, &buf
, 0, 1, ":", False
);
1350 (void)myvprintf_str ( add_to_buf
, &buf
, 0, 8, modulename
, False
);
1351 (void)myvprintf_str ( add_to_buf
, &buf
, 0, indent
, "", False
);
1353 va_start(vargs
,format
);
1355 (void) VG_(debugLog_vprintf
) ( add_to_buf
, &buf
, format
, vargs
);
1358 emit( buf
.buf
, local_strlen(buf
.buf
) );
1366 /*--------------------------------------------------------------------*/
1367 /*--- end m_debuglog.c ---*/
1368 /*--------------------------------------------------------------------*/