src/share/vm/runtime/frame.cpp

changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 6876
710a3c8b516e
equal deleted inserted replaced
0:f90c822e73f8 1:2d8a650513c2
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 24
25 /*
26 * This file has been modified by Loongson Technology in 2015. These
27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
28 * available on the same license terms set forth above.
29 */
30
25 #include "precompiled.hpp" 31 #include "precompiled.hpp"
26 #include "compiler/abstractCompiler.hpp" 32 #include "compiler/abstractCompiler.hpp"
27 #include "compiler/disassembler.hpp" 33 #include "compiler/disassembler.hpp"
28 #include "gc_interface/collectedHeap.inline.hpp" 34 #include "gc_interface/collectedHeap.inline.hpp"
29 #include "interpreter/interpreter.hpp" 35 #include "interpreter/interpreter.hpp"
59 # include "nativeInst_arm.hpp" 65 # include "nativeInst_arm.hpp"
60 #endif 66 #endif
61 #ifdef TARGET_ARCH_ppc 67 #ifdef TARGET_ARCH_ppc
62 # include "nativeInst_ppc.hpp" 68 # include "nativeInst_ppc.hpp"
63 #endif 69 #endif
70 #ifdef TARGET_ARCH_mips
71 # include "nativeInst_mips.hpp"
72 #endif
73
64 74
65 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC 75 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
66 76
67 RegisterMap::RegisterMap(JavaThread *thread, bool update_map) { 77 RegisterMap::RegisterMap(JavaThread *thread, bool update_map) {
68 _thread = thread; 78 _thread = thread;

mercurial