Changeset 154158 in webkit for trunk/Source/JavaScriptCore/assembler/X86Assembler.h
- Timestamp:
- Aug 15, 2013, 7:35:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/X86Assembler.h
r153197 r154158 501 501 #endif 502 502 503 void dec_r(RegisterID dst) 504 { 505 m_formatter.oneByteOp(OP_GROUP5_Ev, GROUP1_OP_OR, dst); 506 } 507 508 void decq_r(RegisterID dst) 509 { 510 m_formatter.oneByteOp64(OP_GROUP5_Ev, GROUP1_OP_OR, dst); 511 } 512 513 void inc_r(RegisterID dst) 514 { 515 m_formatter.oneByteOp(OP_GROUP5_Ev, GROUP1_OP_ADD, dst); 516 } 517 518 void incq_r(RegisterID dst) 519 { 520 m_formatter.oneByteOp64(OP_GROUP5_Ev, GROUP1_OP_ADD, dst); 521 } 522 503 523 void negl_r(RegisterID dst) 504 524 {
Note:
See TracChangeset
for help on using the changeset viewer.