blob: db36a85324d13722872d747f3479d55677bf3d2b [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/*
njnc9539842002-10-02 13:26:35 +00007 This file is part of Valgrind, an extensible x86 protected-mode
8 emulator for monitoring program execution on x86-Unixes.
njn25e49d8e72002-09-23 09:36:25 +00009
nethercotebb1c9912004-01-04 16:43:23 +000010 Copyright (C) 2000-2004 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)
44#define VGP_(str) VGAPPEND(vgProf_,str)
45#define VGOFF_(str) VGAPPEND(vgOff_,str)
nethercotec06e2132004-09-03 13:45:29 +000046#define VGA_(str) VGAPPEND(vgArch_,str)
njn25e49d8e72002-09-23 09:36:25 +000047
nethercotee53befe2004-08-04 10:07:47 +000048/* Tool-specific ones. Note that final name still starts with "vg". */
njn26f02512004-11-22 18:33:15 +000049#define TL_(str) VGAPPEND(vgTool_,str)
njn25e49d8e72002-09-23 09:36:25 +000050
fitzhardinge98abfc72003-12-16 02:05:15 +000051/* This is specifically for stringifying VG_(x) function names. We
52 need to do two macroexpansions to get the VG_ macro expanded before
53 stringifying */
54#define _STR(x) #x
55#define STR(x) _STR(x)
56
nethercote5a2664c2004-09-02 15:37:39 +000057#endif /* ndef __TOOL_ASM_H */
njn25e49d8e72002-09-23 09:36:25 +000058
59/*--------------------------------------------------------------------*/
nethercote5a2664c2004-09-02 15:37:39 +000060/*--- end ---*/
njn25e49d8e72002-09-23 09:36:25 +000061/*--------------------------------------------------------------------*/