blob: 95f3fafc6d18b43add76072a256e9d345d756c57 [file] [log] [blame]
njn25e49d8e72002-09-23 09:36:25 +00001
2/*--------------------------------------------------------------------*/
nethercote5a2664c2004-09-02 15:37:39 +00003/*--- Tool-specific, asm-specific includes. tool_asm.h ---*/
njn25e49d8e72002-09-23 09:36:25 +00004/*--------------------------------------------------------------------*/
5
6/*
njnb9c427c2004-12-01 14:14:42 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
njn25e49d8e72002-09-23 09:36:25 +00009
njn53612422005-03-12 16:22:54 +000010 Copyright (C) 2000-2005 Julian Seward
njn25e49d8e72002-09-23 09:36:25 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
nethercote5a2664c2004-09-02 15:37:39 +000031#ifndef __TOOL_ASM_H
32#define __TOOL_ASM_H
njn25e49d8e72002-09-23 09:36:25 +000033
34
35/* All symbols externally visible from valgrind.so are prefixed
36 as specified here. The prefix can be changed, so as to avoid
37 namespace conflict problems.
38*/
39#define VGAPPEND(str1,str2) str1##str2
40
41/* These macros should add different prefixes so the same base
42 name can safely be used across different macros. */
43#define VG_(str) VGAPPEND(vgPlain_,str)
nethercotec06e2132004-09-03 13:45:29 +000044#define VGA_(str) VGAPPEND(vgArch_,str)
njn6268bbc2005-03-26 02:57:36 +000045#define VGO_(str) VGAPPEND(vgOS_,str)
46#define VGP_(str) VGAPPEND(vgPlatform_,str)
njn25e49d8e72002-09-23 09:36:25 +000047
njn6d828192005-05-16 21:30:24 +000048// Print a constant from asm code.
49// Nb: you'll need to define VG_(oynk)(Int) to use this.
50#if defined(VGA_x86)
51# define OYNK(nnn) pushal; pushl $nnn; call VG_(oynk) ; addl $4,%esp; popal
52#elif defined(VGA_amd64)
53# define OYNK(nnn) push %r8 ; push %r9 ; push %r10; push %r11; \
54 push %rax; push %rbx; push %rcx; push %rdx; \
55 push %rsi; push %rdi; \
56 movl $nnn, %edi; call VG_(oynk); \
57 pop %rdi; pop %rsi; pop %rdx; pop %rcx; \
58 pop %rbx; pop %rax; pop %r11; pop %r10; \
59 pop %r9 ; pop %r8
60#else
61# error Unknown architecture
62#endif
63
nethercote5a2664c2004-09-02 15:37:39 +000064#endif /* ndef __TOOL_ASM_H */
njn25e49d8e72002-09-23 09:36:25 +000065
66/*--------------------------------------------------------------------*/
nethercote5a2664c2004-09-02 15:37:39 +000067/*--- end ---*/
njn25e49d8e72002-09-23 09:36:25 +000068/*--------------------------------------------------------------------*/