njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 1 | |
| 2 | /*--------------------------------------------------------------------*/ |
nethercote | 5a2664c | 2004-09-02 15:37:39 +0000 | [diff] [blame] | 3 | /*--- Tool-specific, asm-specific includes. tool_asm.h ---*/ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 4 | /*--------------------------------------------------------------------*/ |
| 5 | |
| 6 | /* |
njn | b9c427c | 2004-12-01 14:14:42 +0000 | [diff] [blame] | 7 | This file is part of Valgrind, a dynamic binary instrumentation |
| 8 | framework. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 9 | |
njn | 5361242 | 2005-03-12 16:22:54 +0000 | [diff] [blame] | 10 | Copyright (C) 2000-2005 Julian Seward |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 11 | 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 | |
nethercote | 5a2664c | 2004-09-02 15:37:39 +0000 | [diff] [blame] | 31 | #ifndef __TOOL_ASM_H |
| 32 | #define __TOOL_ASM_H |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 33 | |
| 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) |
nethercote | c06e213 | 2004-09-03 13:45:29 +0000 | [diff] [blame] | 44 | #define VGA_(str) VGAPPEND(vgArch_,str) |
njn | 6268bbc | 2005-03-26 02:57:36 +0000 | [diff] [blame] | 45 | #define VGO_(str) VGAPPEND(vgOS_,str) |
| 46 | #define VGP_(str) VGAPPEND(vgPlatform_,str) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 47 | |
nethercote | 5a2664c | 2004-09-02 15:37:39 +0000 | [diff] [blame] | 48 | #endif /* ndef __TOOL_ASM_H */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 49 | |
| 50 | /*--------------------------------------------------------------------*/ |
nethercote | 5a2664c | 2004-09-02 15:37:39 +0000 | [diff] [blame] | 51 | /*--- end ---*/ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 52 | /*--------------------------------------------------------------------*/ |