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

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

Issue 2695613004: Add several SIMD opcodes to IA32 (Closed)
Patch Set: Adjust Pextrd and use pinsrd instead of Pinsrd Created 3 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
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 22 matching lines...) Expand all
33 // Copyright 2011 the V8 project authors. All rights reserved. 33 // Copyright 2011 the V8 project authors. All rights reserved.
34 34
35 // A light-weight IA32 Assembler. 35 // A light-weight IA32 Assembler.
36 36
37 #ifndef V8_IA32_ASSEMBLER_IA32_H_ 37 #ifndef V8_IA32_ASSEMBLER_IA32_H_
38 #define V8_IA32_ASSEMBLER_IA32_H_ 38 #define V8_IA32_ASSEMBLER_IA32_H_
39 39
40 #include <deque> 40 #include <deque>
41 41
42 #include "src/assembler.h" 42 #include "src/assembler.h"
43 #include "src/ia32/sse-instr.h"
43 #include "src/isolate.h" 44 #include "src/isolate.h"
44 #include "src/utils.h" 45 #include "src/utils.h"
45 46
46 namespace v8 { 47 namespace v8 {
47 namespace internal { 48 namespace internal {
48 49
49 #define GENERAL_REGISTERS(V) \ 50 #define GENERAL_REGISTERS(V) \
50 V(eax) \ 51 V(eax) \
51 V(ecx) \ 52 V(ecx) \
52 V(edx) \ 53 V(edx) \
(...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 void v##name##pd(XMMRegister dst, XMMRegister src1, const Operand& src2) { \ 1411 void v##name##pd(XMMRegister dst, XMMRegister src1, const Operand& src2) { \
1411 vpd(opcode, dst, src1, src2); \ 1412 vpd(opcode, dst, src1, src2); \
1412 } 1413 }
1413 1414
1414 PACKED_OP_LIST(AVX_PACKED_OP_DECLARE); 1415 PACKED_OP_LIST(AVX_PACKED_OP_DECLARE);
1415 void vps(byte op, XMMRegister dst, XMMRegister src1, XMMRegister src2); 1416 void vps(byte op, XMMRegister dst, XMMRegister src1, XMMRegister src2);
1416 void vps(byte op, XMMRegister dst, XMMRegister src1, const Operand& src2); 1417 void vps(byte op, XMMRegister dst, XMMRegister src1, const Operand& src2);
1417 void vpd(byte op, XMMRegister dst, XMMRegister src1, XMMRegister src2); 1418 void vpd(byte op, XMMRegister dst, XMMRegister src1, XMMRegister src2);
1418 void vpd(byte op, XMMRegister dst, XMMRegister src1, const Operand& src2); 1419 void vpd(byte op, XMMRegister dst, XMMRegister src1, const Operand& src2);
1419 1420
1421 // Other SSE and AVX instructions
1422 #define DECLARE_SSE2_INSTRUCTION(instruction, prefix, escape, opcode) \
1423 void instruction(XMMRegister dst, XMMRegister src) { \
1424 instruction(dst, Operand(src)); \
1425 } \
1426 void instruction(XMMRegister dst, const Operand& src) { \
1427 sse2_instr(dst, src, 0x##prefix, 0x##escape, 0x##opcode); \
1428 }
1429
1430 SSE2_INSTRUCTION_LIST(DECLARE_SSE2_INSTRUCTION)
1431 #undef DECLARE_SSE2_INSTRUCTION
1432
1433 #define DECLARE_SSE2_AVX_INSTRUCTION(instruction, prefix, escape, opcode) \
1434 void v##instruction(XMMRegister dst, XMMRegister src1, XMMRegister src2) { \
1435 v##instruction(dst, src1, Operand(src2)); \
1436 } \
1437 void v##instruction(XMMRegister dst, XMMRegister src1, \
1438 const Operand& src2) { \
1439 vinstr(0x##opcode, dst, src1, src2, k##prefix, k##escape, kW0); \
1440 }
1441
1442 SSE2_INSTRUCTION_LIST(DECLARE_SSE2_AVX_INSTRUCTION)
1443 #undef DECLARE_SSE2_AVX_INSTRUCTION
1444
1420 // Prefetch src position into cache level. 1445 // Prefetch src position into cache level.
1421 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a 1446 // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a
1422 // non-temporal 1447 // non-temporal
1423 void prefetch(const Operand& src, int level); 1448 void prefetch(const Operand& src, int level);
1424 // TODO(lrn): Need SFENCE for movnt? 1449 // TODO(lrn): Need SFENCE for movnt?
1425 1450
1426 // Check the code size generated from label to here. 1451 // Check the code size generated from label to here.
1427 int SizeOfCodeGeneratedSince(Label* label) { 1452 int SizeOfCodeGeneratedSince(Label* label) {
1428 return pc_offset() - label->pos(); 1453 return pc_offset() - label->pos();
1429 } 1454 }
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 // labels 1565 // labels
1541 void print(Label* L); 1566 void print(Label* L);
1542 void bind_to(Label* L, int pos); 1567 void bind_to(Label* L, int pos);
1543 1568
1544 // displacements 1569 // displacements
1545 inline Displacement disp_at(Label* L); 1570 inline Displacement disp_at(Label* L);
1546 inline void disp_at_put(Label* L, Displacement disp); 1571 inline void disp_at_put(Label* L, Displacement disp);
1547 inline void emit_disp(Label* L, Displacement::Type type); 1572 inline void emit_disp(Label* L, Displacement::Type type);
1548 inline void emit_near_disp(Label* L); 1573 inline void emit_near_disp(Label* L);
1549 1574
1575 void sse2_instr(XMMRegister dst, const Operand& src, byte prefix, byte escape,
1576 byte opcode);
1577 void vinstr(byte op, XMMRegister dst, XMMRegister src1, const Operand& src2,
1578 SIMDPrefix pp, LeadingOpcode m, VexW w);
1550 // Most BMI instructions are similiar. 1579 // Most BMI instructions are similiar.
1551 void bmi1(byte op, Register reg, Register vreg, const Operand& rm); 1580 void bmi1(byte op, Register reg, Register vreg, const Operand& rm);
1552 void bmi2(SIMDPrefix pp, byte op, Register reg, Register vreg, 1581 void bmi2(SIMDPrefix pp, byte op, Register reg, Register vreg,
1553 const Operand& rm); 1582 const Operand& rm);
1554 1583
1555 // record reloc info for current pc_ 1584 // record reloc info for current pc_
1556 void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0); 1585 void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0);
1557 1586
1558 friend class CodePatcher; 1587 friend class CodePatcher;
1559 friend class EnsureSpace; 1588 friend class EnsureSpace;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 Assembler* assembler_; 1621 Assembler* assembler_;
1593 #ifdef DEBUG 1622 #ifdef DEBUG
1594 int space_before_; 1623 int space_before_;
1595 #endif 1624 #endif
1596 }; 1625 };
1597 1626
1598 } // namespace internal 1627 } // namespace internal
1599 } // namespace v8 1628 } // namespace v8
1600 1629
1601 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1630 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698