comparison src/cpu/x86/vm/macroAssembler_x86.cpp @ 7204:f0c2369fda5a

8003250: SPARC: move MacroAssembler into separate file Reviewed-by: jrose, kvn
author twisti
date Thu, 06 Dec 2012 09:57:41 -0800
parents cd3d6a6b95d9
children 2c7f594145dc
comparison
equal deleted inserted replaced
7201:c5d414e98fd4 7204:f0c2369fda5a
51 #define STOP(error) block_comment(error); stop(error) 51 #define STOP(error) block_comment(error); stop(error)
52 #endif 52 #endif
53 53
54 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":") 54 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
55 55
56
57 #ifdef ASSERT
58 bool AbstractAssembler::pd_check_instruction_mark() { return true; }
59 #endif
56 60
57 static Assembler::Condition reverse[] = { 61 static Assembler::Condition reverse[] = {
58 Assembler::noOverflow /* overflow = 0x0 */ , 62 Assembler::noOverflow /* overflow = 0x0 */ ,
59 Assembler::overflow /* noOverflow = 0x1 */ , 63 Assembler::overflow /* noOverflow = 0x1 */ ,
60 Assembler::aboveEqual /* carrySet = 0x2, below = 0x2 */ , 64 Assembler::aboveEqual /* carrySet = 0x2, below = 0x2 */ ,