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

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

Issue 6606006: [Isolates] Merge 6500:6700 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 9 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.cc ('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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 void pxor(XMMRegister dst, XMMRegister src); 937 void pxor(XMMRegister dst, XMMRegister src);
938 void por(XMMRegister dst, XMMRegister src); 938 void por(XMMRegister dst, XMMRegister src);
939 void ptest(XMMRegister dst, XMMRegister src); 939 void ptest(XMMRegister dst, XMMRegister src);
940 940
941 void psllq(XMMRegister reg, int8_t shift); 941 void psllq(XMMRegister reg, int8_t shift);
942 void psllq(XMMRegister dst, XMMRegister src); 942 void psllq(XMMRegister dst, XMMRegister src);
943 void psrlq(XMMRegister reg, int8_t shift); 943 void psrlq(XMMRegister reg, int8_t shift);
944 void psrlq(XMMRegister dst, XMMRegister src); 944 void psrlq(XMMRegister dst, XMMRegister src);
945 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle); 945 void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle);
946 void pextrd(const Operand& dst, XMMRegister src, int8_t offset); 946 void pextrd(const Operand& dst, XMMRegister src, int8_t offset);
947 void pinsrd(XMMRegister dst, const Operand& src, int8_t offset);
947 948
948 // Parallel XMM operations. 949 // Parallel XMM operations.
949 void movntdqa(XMMRegister src, const Operand& dst); 950 void movntdqa(XMMRegister src, const Operand& dst);
950 void movntdq(const Operand& dst, XMMRegister src); 951 void movntdq(const Operand& dst, XMMRegister src);
951 // Prefetch src position into cache level. 952 // Prefetch src position into cache level.
952 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a 953 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a
953 // non-temporal 954 // non-temporal
954 void prefetch(const Operand& src, int level); 955 void prefetch(const Operand& src, int level);
955 // TODO(lrn): Need SFENCE for movnt? 956 // TODO(lrn): Need SFENCE for movnt?
956 957
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 private: 1095 private:
1095 Assembler* assembler_; 1096 Assembler* assembler_;
1096 #ifdef DEBUG 1097 #ifdef DEBUG
1097 int space_before_; 1098 int space_before_;
1098 #endif 1099 #endif
1099 }; 1100 };
1100 1101
1101 } } // namespace v8::internal 1102 } } // namespace v8::internal
1102 1103
1103 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1104 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698