Changeset 39738 in webkit for trunk/JavaScriptCore/assembler/X86Assembler.h
- Timestamp:
- Jan 9, 2009, 12:11:00 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/X86Assembler.h
r39540 r39738 182 182 183 183 GROUP3_OP_TEST = 0, 184 GROUP3_OP_NOT = 2, 184 185 GROUP3_OP_IDIV = 7, 185 186 … … 364 365 #endif 365 366 367 void notl_r(RegisterID dst) 368 { 369 m_formatter.oneByteOp(OP_GROUP3_Ev, GROUP3_OP_NOT, dst); 370 } 371 366 372 void orl_rr(RegisterID src, RegisterID dst) 367 373 { … … 716 722 void testq_i32r(int imm, RegisterID dst) 717 723 { 718 m_formatter.oneByteOp64(OP_GROUP 1_EvIz, GROUP3_OP_TEST, dst);724 m_formatter.oneByteOp64(OP_GROUP3_EvIz, GROUP3_OP_TEST, dst); 719 725 m_formatter.immediate32(imm); 720 726 }
Note:
See TracChangeset
for help on using the changeset viewer.