comparison src/share/vm/graal/vmStructs_graal.hpp @ 13098:d61687130412

move GRAAL_ONLY stuff from vmStructs.cpp to separate vmStructs_graal.hpp file
author twisti
date Wed, 20 Nov 2013 16:55:54 -0800
parents
children c0b0974dd509
comparison
equal deleted inserted replaced
13097:14db5ffd5ed9 13098:d61687130412
1 /*
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_VM_GRAAL_VMSTRUCTS_GRAAL_HPP
26 #define SHARE_VM_GRAAL_VMSTRUCTS_GRAAL_HPP
27
28 #include "compiler/abstractCompiler.hpp"
29
30 #define VM_STRUCTS_GRAAL(nonstatic_field, static_field) \
31 \
32 static_field(java_lang_Class, _graal_mirror_offset, int) \
33 \
34 nonstatic_field(CompilerStatistics, _standard, CompilerStatistics::Data) \
35 nonstatic_field(CompilerStatistics, _osr, CompilerStatistics::Data) \
36 nonstatic_field(CompilerStatistics, _nmethods_size, int) \
37 nonstatic_field(CompilerStatistics, _nmethods_code_size, int) \
38 nonstatic_field(CompilerStatistics::Data, _bytes, int) \
39 nonstatic_field(CompilerStatistics::Data, _count, int) \
40 nonstatic_field(CompilerStatistics::Data, _time, elapsedTimer) \
41
42
43 #define VM_TYPES_GRAAL(declare_type, declare_toplevel_type) \
44 \
45 declare_toplevel_type(CompilerStatistics) \
46 declare_toplevel_type(CompilerStatistics::Data) \
47
48
49 #endif // SHARE_VM_GRAAL_VMSTRUCTS_GRAAL_HPP