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

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

Issue 11035053: Rollback trunk to bleeding_edge revision 12525 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 2 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 | « build/common.gypi ('k') | 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 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 Condition cond = al); 1046 Condition cond = al);
1047 1047
1048 void vstm(BlockAddrMode am, 1048 void vstm(BlockAddrMode am,
1049 Register base, 1049 Register base,
1050 SwVfpRegister first, 1050 SwVfpRegister first,
1051 SwVfpRegister last, 1051 SwVfpRegister last,
1052 Condition cond = al); 1052 Condition cond = al);
1053 1053
1054 void vmov(const DwVfpRegister dst, 1054 void vmov(const DwVfpRegister dst,
1055 double imm, 1055 double imm,
1056 const Register scratch = no_reg,
1057 const Condition cond = al); 1056 const Condition cond = al);
1058 void vmov(const SwVfpRegister dst, 1057 void vmov(const SwVfpRegister dst,
1059 const SwVfpRegister src, 1058 const SwVfpRegister src,
1060 const Condition cond = al); 1059 const Condition cond = al);
1061 void vmov(const DwVfpRegister dst, 1060 void vmov(const DwVfpRegister dst,
1062 const DwVfpRegister src, 1061 const DwVfpRegister src,
1063 const Condition cond = al); 1062 const Condition cond = al);
1064 void vmov(const DwVfpRegister dst, 1063 void vmov(const DwVfpRegister dst,
1065 const Register src1, 1064 const Register src1,
1066 const Register src2, 1065 const Register src2,
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 public: 1467 public:
1469 explicit EnsureSpace(Assembler* assembler) { 1468 explicit EnsureSpace(Assembler* assembler) {
1470 assembler->CheckBuffer(); 1469 assembler->CheckBuffer();
1471 } 1470 }
1472 }; 1471 };
1473 1472
1474 1473
1475 } } // namespace v8::internal 1474 } } // namespace v8::internal
1476 1475
1477 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1476 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698