9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
24 */
25
26 #ifndef CPU_X86_STUBDECLARATIONS_HPP
27 #define CPU_X86_STUBDECLARATIONS_HPP
28
29 #define STUBGEN_INITIAL_BLOBS_ARCH_DO(do_stub, \
30 do_arch_blob, \
31 do_arch_entry, \
32 do_arch_entry_init) \
33 do_arch_blob(initial, 20000 WINDOWS_ONLY(+1000)) \
34 do_stub(initial, verify_mxcsr) \
35 do_arch_entry(x86, initial, verify_mxcsr, verify_mxcsr_entry, \
36 verify_mxcsr_entry) \
37 do_stub(initial, get_previous_sp) \
38 do_arch_entry(x86, initial, get_previous_sp, \
39 get_previous_sp_entry, \
40 get_previous_sp_entry) \
41 do_stub(initial, f2i_fixup) \
42 do_arch_entry(x86, initial, f2i_fixup, f2i_fixup, f2i_fixup) \
43 do_stub(initial, f2l_fixup) \
44 do_arch_entry(x86, initial, f2l_fixup, f2l_fixup, f2l_fixup) \
45 do_stub(initial, d2i_fixup) \
46 do_arch_entry(x86, initial, d2i_fixup, d2i_fixup, d2i_fixup) \
47 do_stub(initial, d2l_fixup) \
48 do_arch_entry(x86, initial, d2l_fixup, d2l_fixup, d2l_fixup) \
|
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
24 */
25
26 #ifndef CPU_X86_STUBDECLARATIONS_HPP
27 #define CPU_X86_STUBDECLARATIONS_HPP
28
29 #define STUBGEN_PREUNIVERSE_BLOBS_ARCH_DO(do_stub, \
30 do_arch_blob, \
31 do_arch_entry, \
32 do_arch_entry_init) \
33 do_arch_blob(preuniverse, 500) \
34
35
36 #define STUBGEN_INITIAL_BLOBS_ARCH_DO(do_stub, \
37 do_arch_blob, \
38 do_arch_entry, \
39 do_arch_entry_init) \
40 do_arch_blob(initial, 20000 WINDOWS_ONLY(+1000)) \
41 do_stub(initial, verify_mxcsr) \
42 do_arch_entry(x86, initial, verify_mxcsr, verify_mxcsr_entry, \
43 verify_mxcsr_entry) \
44 do_stub(initial, get_previous_sp) \
45 do_arch_entry(x86, initial, get_previous_sp, \
46 get_previous_sp_entry, \
47 get_previous_sp_entry) \
48 do_stub(initial, f2i_fixup) \
49 do_arch_entry(x86, initial, f2i_fixup, f2i_fixup, f2i_fixup) \
50 do_stub(initial, f2l_fixup) \
51 do_arch_entry(x86, initial, f2l_fixup, f2l_fixup, f2l_fixup) \
52 do_stub(initial, d2i_fixup) \
53 do_arch_entry(x86, initial, d2i_fixup, d2i_fixup, d2i_fixup) \
54 do_stub(initial, d2l_fixup) \
55 do_arch_entry(x86, initial, d2l_fixup, d2l_fixup, d2l_fixup) \
|