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

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

Issue 11967009: Revert "Optimize the emitted instruction of random function for X64" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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/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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode); 725 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode);
726 726
727 void movsxbq(Register dst, const Operand& src); 727 void movsxbq(Register dst, const Operand& src);
728 void movsxwq(Register dst, const Operand& src); 728 void movsxwq(Register dst, const Operand& src);
729 void movsxlq(Register dst, Register src); 729 void movsxlq(Register dst, Register src);
730 void movsxlq(Register dst, const Operand& src); 730 void movsxlq(Register dst, const Operand& src);
731 void movzxbq(Register dst, const Operand& src); 731 void movzxbq(Register dst, const Operand& src);
732 void movzxbl(Register dst, const Operand& src); 732 void movzxbl(Register dst, const Operand& src);
733 void movzxwq(Register dst, const Operand& src); 733 void movzxwq(Register dst, const Operand& src);
734 void movzxwl(Register dst, const Operand& src); 734 void movzxwl(Register dst, const Operand& src);
735 void movzxwl(Register dst, Register src);
736 735
737 // Repeated moves. 736 // Repeated moves.
738 737
739 void repmovsb(); 738 void repmovsb();
740 void repmovsw(); 739 void repmovsw();
741 void repmovsl(); 740 void repmovsl();
742 void repmovsq(); 741 void repmovsq();
743 742
744 // Instruction to load from an immediate 64-bit pointer into RAX. 743 // Instruction to load from an immediate 64-bit pointer into RAX.
745 void load_rax(void* ptr, RelocInfo::Mode rmode); 744 void load_rax(void* ptr, RelocInfo::Mode rmode);
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 private: 1667 private:
1669 Assembler* assembler_; 1668 Assembler* assembler_;
1670 #ifdef DEBUG 1669 #ifdef DEBUG
1671 int space_before_; 1670 int space_before_;
1672 #endif 1671 #endif
1673 }; 1672 };
1674 1673
1675 } } // namespace v8::internal 1674 } } // namespace v8::internal
1676 1675
1677 #endif // V8_X64_ASSEMBLER_X64_H_ 1676 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698