comparison src/share/vm/c1/c1_Runtime1.hpp @ 2044:06f017f7daa7

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:18:08 +0100
parents 2d26b0046e0d f95d63e2154a
children d25d4ca69222
comparison
equal deleted inserted replaced
1942:00bc9eaf0e24 2044:06f017f7daa7
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 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 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_C1_C1_RUNTIME1_HPP
26 #define SHARE_VM_C1_C1_RUNTIME1_HPP
27
28 #include "c1/c1_FrameMap.hpp"
29 #include "code/stubs.hpp"
30 #include "interpreter/interpreter.hpp"
31 #include "memory/allocation.hpp"
32 #include "runtime/deoptimization.hpp"
24 33
25 class StubAssembler; 34 class StubAssembler;
26 35
27 // The Runtime1 holds all assembly stubs and VM 36 // The Runtime1 holds all assembly stubs and VM
28 // runtime routines needed by code code generated 37 // runtime routines needed by code code generated
183 static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length); 192 static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length);
184 static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length); 193 static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length);
185 194
186 static void print_statistics() PRODUCT_RETURN; 195 static void print_statistics() PRODUCT_RETURN;
187 }; 196 };
197
198 #endif // SHARE_VM_C1_C1_RUNTIME1_HPP