annotate src/share/vm/utilities/macros.hpp @ 1768:6ee479178066

6979444: add command line option to print command line flags descriptions Summary: Implementation of a nonproduct boolean flag XX:PrintFlagsWithComments Reviewed-by: kamg, dholmes, dsamersoff
author ikrylov
date Tue, 31 Aug 2010 03:14:00 -0700
parents d2ede61b7a12
children 18c378513575
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Use this to mark code that needs to be cleaned up (for development only)
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #define NEEDS_CLEANUP
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Makes a string of the argument (which is not macro-expanded)
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #define STR(a) #a
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Makes a string of the macro expansion of a
a61af66fc99e Initial load
duke
parents:
diff changeset
32 #define XSTR(a) STR(a)
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // KERNEL variant
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #ifdef KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #define COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #define SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 #define JVMTI_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #define FPROF_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
41 #define VM_STRUCTS_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #define JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #define SERVICES_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #define KERNEL_RETURN {}
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #define KERNEL_RETURN_(code) { code }
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #else // KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #define KERNEL_RETURN /* next token must be ; */
a61af66fc99e Initial load
duke
parents:
diff changeset
51 #define KERNEL_RETURN_(code) /* next token must be ; */
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 #endif // KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // COMPILER1 variant
a61af66fc99e Initial load
duke
parents:
diff changeset
56 #ifdef COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
57 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #define TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #define COMPILER1_PRESENT(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #else // COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #define COMPILER1_PRESENT(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #endif // COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // COMPILER2 variant
a61af66fc99e Initial load
duke
parents:
diff changeset
66 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #define COMPILER2_PRESENT(code) code
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 337
diff changeset
68 #define NOT_COMPILER2(code)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #else // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #define COMPILER2_PRESENT(code)
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 337
diff changeset
71 #define NOT_COMPILER2(code) code
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // PRODUCT variant
a61af66fc99e Initial load
duke
parents:
diff changeset
76 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #define PRODUCT_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #define NOT_PRODUCT(code)
1768
6ee479178066 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 1692
diff changeset
79 #define NOT_PRODUCT_ARG(arg)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 #define PRODUCT_RETURN {}
a61af66fc99e Initial load
duke
parents:
diff changeset
81 #define PRODUCT_RETURN0 { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 #define PRODUCT_RETURN_(code) { code }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #else // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
84 #define PRODUCT_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
85 #define NOT_PRODUCT(code) code
1768
6ee479178066 6979444: add command line option to print command line flags descriptions
ikrylov
parents: 1692
diff changeset
86 #define NOT_PRODUCT_ARG(arg) arg,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 #define PRODUCT_RETURN /*next token must be ;*/
a61af66fc99e Initial load
duke
parents:
diff changeset
88 #define PRODUCT_RETURN0 /*next token must be ;*/
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #define PRODUCT_RETURN_(code) /*next token must be ;*/
a61af66fc99e Initial load
duke
parents:
diff changeset
90 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 #ifdef CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #define CHECK_UNHANDLED_OOPS_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
94 #define NOT_CHECK_UNHANDLED_OOPS(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
95 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #define CHECK_UNHANDLED_OOPS_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
97 #define NOT_CHECK_UNHANDLED_OOPS(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #endif // CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
101 #define CC_INTERP_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #define NOT_CC_INTERP(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
103 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
104 #define CC_INTERP_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #define NOT_CC_INTERP(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
106 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
109 #define DEBUG_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #define NOT_DEBUG(code)
809
6e2afda171db 6849716: BitMap - performance regression introduced with G1
jcoomes
parents: 453
diff changeset
111 #define NOT_DEBUG_RETURN /*next token must be ;*/
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Historical.
a61af66fc99e Initial load
duke
parents:
diff changeset
113 #define debug_only(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #else // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #define DEBUG_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 #define NOT_DEBUG(code) code
809
6e2afda171db 6849716: BitMap - performance regression introduced with G1
jcoomes
parents: 453
diff changeset
117 #define NOT_DEBUG_RETURN {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 #define debug_only(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #define LP64_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #define NOT_LP64(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #else // !_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #define LP64_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
126 #define NOT_LP64(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
127 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #ifdef LINUX
a61af66fc99e Initial load
duke
parents:
diff changeset
130 #define LINUX_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
131 #define NOT_LINUX(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
132 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
133 #define LINUX_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
134 #define NOT_LINUX(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
135 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #ifdef SOLARIS
a61af66fc99e Initial load
duke
parents:
diff changeset
138 #define SOLARIS_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
139 #define NOT_SOLARIS(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
140 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
141 #define SOLARIS_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #define NOT_SOLARIS(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
143 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 #ifdef _WINDOWS
a61af66fc99e Initial load
duke
parents:
diff changeset
146 #define WINDOWS_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
147 #define NOT_WINDOWS(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #define WINDOWS_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
150 #define NOT_WINDOWS(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
151 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
152
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
153 #if defined(IA32) || defined(AMD64)
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
154 #define X86
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
155 #define X86_ONLY(code) code
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
156 #define NOT_X86(code)
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
157 #else
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
158 #undef X86
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
159 #define X86_ONLY(code)
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
160 #define NOT_X86(code) code
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
161 #endif
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 0
diff changeset
162
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #ifdef IA32
a61af66fc99e Initial load
duke
parents:
diff changeset
164 #define IA32_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #define NOT_IA32(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
166 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #define IA32_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
168 #define NOT_IA32(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
169 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #ifdef IA64
a61af66fc99e Initial load
duke
parents:
diff changeset
172 #define IA64_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
173 #define NOT_IA64(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
174 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
175 #define IA64_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #define NOT_IA64(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #define AMD64_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
181 #define NOT_AMD64(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
182 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
183 #define AMD64_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #define NOT_AMD64(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
185 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
188 #define SPARC_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
189 #define NOT_SPARC(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
190 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
191 #define SPARC_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
192 #define NOT_SPARC(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
194
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
195 #ifdef PPC
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
196 #define PPC_ONLY(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
197 #define NOT_PPC(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
198 #else
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
199 #define PPC_ONLY(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
200 #define NOT_PPC(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
201 #endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
202
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
203 #ifdef E500V2
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
204 #define E500V2_ONLY(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
205 #define NOT_E500V2(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
206 #else
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
207 #define E500V2_ONLY(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
208 #define NOT_E500V2(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
209 #endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
210
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
211
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
212 #ifdef ARM
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
213 #define ARM_ONLY(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
214 #define NOT_ARM(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
215 #else
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
216 #define ARM_ONLY(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
217 #define NOT_ARM(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
218 #endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
219
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
220 #ifdef JAVASE_EMBEDDED
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
221 #define EMBEDDED_ONLY(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
222 #define NOT_EMBEDDED(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
223 #else
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
224 #define EMBEDDED_ONLY(code)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
225 #define NOT_EMBEDDED(code) code
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
226 #endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
227
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 #define define_pd_global(type, name, value) const type pd_##name = value;