Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: src/assembler-ia32.h

Issue 16481: Copy of changelist from issue 16450. Converts compare operation... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/assembler-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 492
493 void movzx_b(Register dst, const Operand& src); 493 void movzx_b(Register dst, const Operand& src);
494 494
495 void movzx_w(Register dst, const Operand& src); 495 void movzx_w(Register dst, const Operand& src);
496 496
497 // Conditional moves 497 // Conditional moves
498 void cmov(Condition cc, Register dst, int32_t imm32); 498 void cmov(Condition cc, Register dst, int32_t imm32);
499 void cmov(Condition cc, Register dst, Handle<Object> handle); 499 void cmov(Condition cc, Register dst, Handle<Object> handle);
500 void cmov(Condition cc, Register dst, const Operand& src); 500 void cmov(Condition cc, Register dst, const Operand& src);
501 501
502 // Exchange two registers
503 void xchg(Register dst, Register src);
504
502 // Arithmetics 505 // Arithmetics
503 void adc(Register dst, int32_t imm32); 506 void adc(Register dst, int32_t imm32);
504 void adc(Register dst, const Operand& src); 507 void adc(Register dst, const Operand& src);
505 508
506 void add(Register dst, const Operand& src); 509 void add(Register dst, const Operand& src);
507 void add(const Operand& dst, const Immediate& x); 510 void add(const Operand& dst, const Immediate& x);
508 511
509 void and_(Register dst, int32_t imm32); 512 void and_(Register dst, int32_t imm32);
510 void and_(Register dst, const Operand& src); 513 void and_(Register dst, const Operand& src);
511 void and_(const Operand& src, Register dst); 514 void and_(const Operand& src, Register dst);
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 private: 842 private:
840 Assembler* assembler_; 843 Assembler* assembler_;
841 #ifdef DEBUG 844 #ifdef DEBUG
842 int space_before_; 845 int space_before_;
843 #endif 846 #endif
844 }; 847 };
845 848
846 } } // namespace v8::internal 849 } } // namespace v8::internal
847 850
848 #endif // V8_ASSEMBLER_IA32_H_ 851 #endif // V8_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698