comparison src/share/vm/compiler/disassembler.cpp @ 1681:126ea7725993

6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
author bobv
date Tue, 03 Aug 2010 08:13:38 -0400
parents c18cbe5936b8
children d2ede61b7a12
comparison
equal deleted inserted replaced
1680:a64438a2b7e8 1681:126ea7725993
369 } 369 }
370 370
371 address decode_env::decode_instructions(address start, address end) { 371 address decode_env::decode_instructions(address start, address end) {
372 _start = start; _end = end; 372 _start = start; _end = end;
373 373
374 assert((((intptr_t)start | (intptr_t)end) % Disassembler::pd_instruction_alignment() == 0), "misaligned insn addr"); 374 assert(((((intptr_t)start | (intptr_t)end) % Disassembler::pd_instruction_alignment()) == 0), "misaligned insn addr");
375 375
376 const int show_bytes = false; // for disassembler debugging 376 const int show_bytes = false; // for disassembler debugging
377 377
378 //_version = Disassembler::pd_cpu_version(); 378 //_version = Disassembler::pd_cpu_version();
379 379