src/share/vm/compiler/disassembler.cpp

changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 433
bd82ffa08941
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 "classfile/javaClasses.hpp" 32 #include "classfile/javaClasses.hpp"
27 #include "code/codeCache.hpp" 33 #include "code/codeCache.hpp"
28 #include "compiler/disassembler.hpp" 34 #include "compiler/disassembler.hpp"
29 #include "gc_interface/collectedHeap.hpp" 35 #include "gc_interface/collectedHeap.hpp"
45 # include "depChecker_arm.hpp" 51 # include "depChecker_arm.hpp"
46 #endif 52 #endif
47 #ifdef TARGET_ARCH_ppc 53 #ifdef TARGET_ARCH_ppc
48 # include "depChecker_ppc.hpp" 54 # include "depChecker_ppc.hpp"
49 #endif 55 #endif
56 #ifdef TARGET_ARCH_mips
57 # include "depChecker_mips.hpp"
58 #endif
50 #ifdef SHARK 59 #ifdef SHARK
51 #include "shark/sharkEntry.hpp" 60 #include "shark/sharkEntry.hpp"
52 #endif 61 #endif
53 62
63 #ifdef MIPS64
64 // do nothing.
65 #else
54 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC 66 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
55 67
56 void* Disassembler::_library = NULL; 68 void* Disassembler::_library = NULL;
57 bool Disassembler::_tried_to_load_library = false; 69 bool Disassembler::_tried_to_load_library = false;
58 70
549 } 561 }
550 } 562 }
551 563
552 env.decode_instructions(p, end); 564 env.decode_instructions(p, end);
553 } 565 }
566
567 #endif //MIPS64 disassembler_mips.cpp implements. 2013/02/25

mercurial