blob: 8b9f52884ab69ec650dee71494cfb7cd79be6750 [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
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
nethercote5a2664c2004-09-02 15:37:39 +000051#endif /* ndef __TOOL_ASM_H */
njn25e49d8e72002-09-23 09:36:25 +000052
53/*--------------------------------------------------------------------*/
nethercote5a2664c2004-09-02 15:37:39 +000054/*--- end ---*/
njn25e49d8e72002-09-23 09:36:25 +000055/*--------------------------------------------------------------------*/