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

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

Issue 12316096: ARM: Make DoStoreKeyedFixedDoubleArray faster; don't allow conditional Vmov (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « no previous file | src/arm/assembler-arm.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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 Condition cond = al); 1059 Condition cond = al);
1060 1060
1061 void vstm(BlockAddrMode am, 1061 void vstm(BlockAddrMode am,
1062 Register base, 1062 Register base,
1063 SwVfpRegister first, 1063 SwVfpRegister first,
1064 SwVfpRegister last, 1064 SwVfpRegister last,
1065 Condition cond = al); 1065 Condition cond = al);
1066 1066
1067 void vmov(const DwVfpRegister dst, 1067 void vmov(const DwVfpRegister dst,
1068 double imm, 1068 double imm,
1069 const Register scratch = no_reg, 1069 const Register scratch = no_reg);
1070 const Condition cond = al);
1071 void vmov(const SwVfpRegister dst, 1070 void vmov(const SwVfpRegister dst,
1072 const SwVfpRegister src, 1071 const SwVfpRegister src,
1073 const Condition cond = al); 1072 const Condition cond = al);
1074 void vmov(const DwVfpRegister dst, 1073 void vmov(const DwVfpRegister dst,
1075 const DwVfpRegister src, 1074 const DwVfpRegister src,
1076 const Condition cond = al); 1075 const Condition cond = al);
1077 void vmov(const DwVfpRegister dst, 1076 void vmov(const DwVfpRegister dst,
1078 const VmovIndex index, 1077 const VmovIndex index,
1079 const Register src, 1078 const Register src,
1080 const Condition cond = al); 1079 const Condition cond = al);
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 public: 1505 public:
1507 explicit EnsureSpace(Assembler* assembler) { 1506 explicit EnsureSpace(Assembler* assembler) {
1508 assembler->CheckBuffer(); 1507 assembler->CheckBuffer();
1509 } 1508 }
1510 }; 1509 };
1511 1510
1512 1511
1513 } } // namespace v8::internal 1512 } } // namespace v8::internal
1514 1513
1515 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1514 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698