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

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

Issue 153923005: A64: Synchronize with r17525. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/hydrogen-instructions.h ('k') | src/ia32/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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 728
729 // Moves 729 // Moves
730 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } 730 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); }
731 void mov_b(Register dst, const Operand& src); 731 void mov_b(Register dst, const Operand& src);
732 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } 732 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
733 void mov_b(const Operand& dst, int8_t imm8); 733 void mov_b(const Operand& dst, int8_t imm8);
734 void mov_b(const Operand& dst, Register src); 734 void mov_b(const Operand& dst, Register src);
735 735
736 void mov_w(Register dst, const Operand& src); 736 void mov_w(Register dst, const Operand& src);
737 void mov_w(const Operand& dst, Register src); 737 void mov_w(const Operand& dst, Register src);
738 void mov_w(const Operand& dst, int16_t imm16);
738 739
739 void mov(Register dst, int32_t imm32); 740 void mov(Register dst, int32_t imm32);
740 void mov(Register dst, const Immediate& x); 741 void mov(Register dst, const Immediate& x);
741 void mov(Register dst, Handle<Object> handle); 742 void mov(Register dst, Handle<Object> handle);
742 void mov(Register dst, const Operand& src); 743 void mov(Register dst, const Operand& src);
743 void mov(Register dst, Register src); 744 void mov(Register dst, Register src);
744 void mov(const Operand& dst, const Immediate& x); 745 void mov(const Operand& dst, const Immediate& x);
745 void mov(const Operand& dst, Handle<Object> handle); 746 void mov(const Operand& dst, Handle<Object> handle);
746 void mov(const Operand& dst, Register src); 747 void mov(const Operand& dst, Register src);
747 748
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 void frndint(); 1014 void frndint();
1014 1015
1015 void sahf(); 1016 void sahf();
1016 void setcc(Condition cc, Register reg); 1017 void setcc(Condition cc, Register reg);
1017 1018
1018 void cpuid(); 1019 void cpuid();
1019 1020
1020 // SSE instructions 1021 // SSE instructions
1021 void andps(XMMRegister dst, XMMRegister src); 1022 void andps(XMMRegister dst, XMMRegister src);
1022 void xorps(XMMRegister dst, XMMRegister src); 1023 void xorps(XMMRegister dst, XMMRegister src);
1024 void orps(XMMRegister dst, XMMRegister src);
1023 1025
1024 // SSE2 instructions 1026 // SSE2 instructions
1025 void cvttss2si(Register dst, const Operand& src); 1027 void cvttss2si(Register dst, const Operand& src);
1026 void cvttsd2si(Register dst, const Operand& src); 1028 void cvttsd2si(Register dst, const Operand& src);
1027 void cvtsd2si(Register dst, XMMRegister src); 1029 void cvtsd2si(Register dst, XMMRegister src);
1028 1030
1029 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } 1031 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); }
1030 void cvtsi2sd(XMMRegister dst, const Operand& src); 1032 void cvtsi2sd(XMMRegister dst, const Operand& src);
1031 void cvtss2sd(XMMRegister dst, XMMRegister src); 1033 void cvtss2sd(XMMRegister dst, XMMRegister src);
1032 void cvtsd2ss(XMMRegister dst, XMMRegister src); 1034 void cvtsd2ss(XMMRegister dst, XMMRegister src);
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 private: 1258 private:
1257 Assembler* assembler_; 1259 Assembler* assembler_;
1258 #ifdef DEBUG 1260 #ifdef DEBUG
1259 int space_before_; 1261 int space_before_;
1260 #endif 1262 #endif
1261 }; 1263 };
1262 1264
1263 } } // namespace v8::internal 1265 } } // namespace v8::internal
1264 1266
1265 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1267 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698