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

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

Issue 64333002: Revert "Add new HSeqStringGetChar instruction." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | « src/ia32/lithium-ia32.cc ('k') | src/x64/assembler-x64.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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 void leave(); 691 void leave();
692 692
693 // Moves 693 // Moves
694 void movb(Register dst, const Operand& src); 694 void movb(Register dst, const Operand& src);
695 void movb(Register dst, Immediate imm); 695 void movb(Register dst, Immediate imm);
696 void movb(const Operand& dst, Register src); 696 void movb(const Operand& dst, Register src);
697 void movb(const Operand& dst, Immediate imm); 697 void movb(const Operand& dst, Immediate imm);
698 698
699 // Move the low 16 bits of a 64-bit register value to a 16-bit 699 // Move the low 16 bits of a 64-bit register value to a 16-bit
700 // memory location. 700 // memory location.
701 void movw(Register dst, const Operand& src);
702 void movw(const Operand& dst, Register src); 701 void movw(const Operand& dst, Register src);
703 void movw(const Operand& dst, Immediate imm); 702 void movw(const Operand& dst, Immediate imm);
704 703
705 void movl(Register dst, Register src); 704 void movl(Register dst, Register src);
706 void movl(Register dst, const Operand& src); 705 void movl(Register dst, const Operand& src);
707 void movl(const Operand& dst, Register src); 706 void movl(const Operand& dst, Register src);
708 void movl(const Operand& dst, Immediate imm); 707 void movl(const Operand& dst, Immediate imm);
709 // Load a 32-bit immediate value, zero-extended to 64 bits. 708 // Load a 32-bit immediate value, zero-extended to 64 bits.
710 void movl(Register dst, Immediate imm32); 709 void movl(Register dst, Immediate imm32);
711 710
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 private: 1705 private:
1707 Assembler* assembler_; 1706 Assembler* assembler_;
1708 #ifdef DEBUG 1707 #ifdef DEBUG
1709 int space_before_; 1708 int space_before_;
1710 #endif 1709 #endif
1711 }; 1710 };
1712 1711
1713 } } // namespace v8::internal 1712 } } // namespace v8::internal
1714 1713
1715 #endif // V8_X64_ASSEMBLER_X64_H_ 1714 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698