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/ia32/assembler-ia32.h

Issue 53573004: Introduce orps for IA32/X64 (Closed) Base URL: git://github.com/v8/v8.git@upstream
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
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')
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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 void frndint(); 1013 void frndint();
1014 1014
1015 void sahf(); 1015 void sahf();
1016 void setcc(Condition cc, Register reg); 1016 void setcc(Condition cc, Register reg);
1017 1017
1018 void cpuid(); 1018 void cpuid();
1019 1019
1020 // SSE instructions 1020 // SSE instructions
1021 void andps(XMMRegister dst, XMMRegister src); 1021 void andps(XMMRegister dst, XMMRegister src);
1022 void xorps(XMMRegister dst, XMMRegister src); 1022 void xorps(XMMRegister dst, XMMRegister src);
1023 void orps(XMMRegister dst, XMMRegister src);
1023 1024
1024 // SSE2 instructions 1025 // SSE2 instructions
1025 void cvttss2si(Register dst, const Operand& src); 1026 void cvttss2si(Register dst, const Operand& src);
1026 void cvttsd2si(Register dst, const Operand& src); 1027 void cvttsd2si(Register dst, const Operand& src);
1027 void cvtsd2si(Register dst, XMMRegister src); 1028 void cvtsd2si(Register dst, XMMRegister src);
1028 1029
1029 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); } 1030 void cvtsi2sd(XMMRegister dst, Register src) { cvtsi2sd(dst, Operand(src)); }
1030 void cvtsi2sd(XMMRegister dst, const Operand& src); 1031 void cvtsi2sd(XMMRegister dst, const Operand& src);
1031 void cvtss2sd(XMMRegister dst, XMMRegister src); 1032 void cvtss2sd(XMMRegister dst, XMMRegister src);
1032 void cvtsd2ss(XMMRegister dst, XMMRegister src); 1033 void cvtsd2ss(XMMRegister dst, XMMRegister src);
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 private: 1257 private:
1257 Assembler* assembler_; 1258 Assembler* assembler_;
1258 #ifdef DEBUG 1259 #ifdef DEBUG
1259 int space_before_; 1260 int space_before_;
1260 #endif 1261 #endif
1261 }; 1262 };
1262 1263
1263 } } // namespace v8::internal 1264 } } // namespace v8::internal
1264 1265
1265 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1266 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | src/ia32/lithium-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698