1 /* |
1 /* |
2 * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. |
3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc. |
3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc. |
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 * |
5 * |
6 * This code is free software; you can redistribute it and/or modify it |
6 * This code is free software; you can redistribute it and/or modify it |
7 * under the terms of the GNU General Public License version 2 only, as |
7 * under the terms of the GNU General Public License version 2 only, as |
21 * or visit www.oracle.com if you need additional information or have any |
21 * or visit www.oracle.com if you need additional information or have any |
22 * questions. |
22 * questions. |
23 * |
23 * |
24 */ |
24 */ |
25 |
25 |
26 // do not include precompiled header file |
26 // no precompiled headers |
27 #include "incls/_os_linux_zero.cpp.incl" |
27 #include "assembler_zero.inline.hpp" |
|
28 #include "classfile/classLoader.hpp" |
|
29 #include "classfile/systemDictionary.hpp" |
|
30 #include "classfile/vmSymbols.hpp" |
|
31 #include "code/icBuffer.hpp" |
|
32 #include "code/vtableStubs.hpp" |
|
33 #include "interpreter/interpreter.hpp" |
|
34 #include "jvm_linux.h" |
|
35 #include "memory/allocation.inline.hpp" |
|
36 #include "mutex_linux.inline.hpp" |
|
37 #include "nativeInst_zero.hpp" |
|
38 #include "os_share_linux.hpp" |
|
39 #include "prims/jniFastGetField.hpp" |
|
40 #include "prims/jvm.h" |
|
41 #include "prims/jvm_misc.hpp" |
|
42 #include "runtime/arguments.hpp" |
|
43 #include "runtime/extendedPC.hpp" |
|
44 #include "runtime/frame.inline.hpp" |
|
45 #include "runtime/hpi.hpp" |
|
46 #include "runtime/interfaceSupport.hpp" |
|
47 #include "runtime/java.hpp" |
|
48 #include "runtime/javaCalls.hpp" |
|
49 #include "runtime/mutexLocker.hpp" |
|
50 #include "runtime/osThread.hpp" |
|
51 #include "runtime/sharedRuntime.hpp" |
|
52 #include "runtime/stubRoutines.hpp" |
|
53 #include "runtime/timer.hpp" |
|
54 #include "thread_linux.inline.hpp" |
|
55 #include "utilities/events.hpp" |
|
56 #include "utilities/vmError.hpp" |
|
57 #ifdef COMPILER1 |
|
58 #include "c1/c1_Runtime1.hpp" |
|
59 #endif |
|
60 #ifdef COMPILER2 |
|
61 #include "opto/runtime.hpp" |
|
62 #endif |
28 |
63 |
29 address os::current_stack_pointer() { |
64 address os::current_stack_pointer() { |
30 address dummy = (address) &dummy; |
65 address dummy = (address) &dummy; |
31 return dummy; |
66 return dummy; |
32 } |
67 } |