Changeset 290907 in webkit for trunk/Source/JavaScriptCore/assembler/ARMv7Assembler.h
- Timestamp:
- Mar 7, 2022, 1:55:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/ARMv7Assembler.h
r287516 r290907 584 584 OP_VMOV_CtoD = 0xEC00, 585 585 OP_VMOV_DtoC = 0xEC10, 586 OP_VSTMIA = 0xEC80, 587 OP_VLDMIA = 0xEC90, 586 588 OP_FSTS = 0xED00, 587 589 OP_VSTR = 0xED00, … … 689 691 OP_VCVTSD_T1b = 0x0A40, 690 692 OP_VCVTDS_T1b = 0x0A40, 693 OP_VSTMIAb = 0x0B00, 694 OP_VLDMIAb = 0x0B00, 691 695 OP_NOP_T2b = 0x8000, 692 696 OP_DMB_SY_T1b = 0x8F5F, … … 1926 1930 } 1927 1931 #endif 1932 1933 void vldmia(RegisterID rn, FPDoubleRegisterID rs, uint32_t count) 1934 { 1935 ASSERT(count < 16); 1936 m_formatter.vfpMemOp(OP_VLDMIA, OP_VLDMIAb, true, rn, rs, count << 3); 1937 } 1938 1939 void vstmia(RegisterID rn, FPDoubleRegisterID rs, uint32_t count) 1940 { 1941 ASSERT(count < 16); 1942 m_formatter.vfpMemOp(OP_VSTMIA, OP_VSTMIAb, true, rn, rs, count << 3); 1943 } 1928 1944 1929 1945 void vand(FPDoubleRegisterID rd, FPDoubleRegisterID rn, FPDoubleRegisterID rm)
Note:
See TracChangeset
for help on using the changeset viewer.