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

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

Issue 8404030: Version 3.7.1 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 1 month 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/api.cc ('k') | src/arm/assembler-arm-inl.h » ('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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 const DwVfpRegister d8 = { 8 }; 297 const DwVfpRegister d8 = { 8 };
298 const DwVfpRegister d9 = { 9 }; 298 const DwVfpRegister d9 = { 9 };
299 const DwVfpRegister d10 = { 10 }; 299 const DwVfpRegister d10 = { 10 };
300 const DwVfpRegister d11 = { 11 }; 300 const DwVfpRegister d11 = { 11 };
301 const DwVfpRegister d12 = { 12 }; 301 const DwVfpRegister d12 = { 12 };
302 const DwVfpRegister d13 = { 13 }; 302 const DwVfpRegister d13 = { 13 };
303 const DwVfpRegister d14 = { 14 }; 303 const DwVfpRegister d14 = { 14 };
304 const DwVfpRegister d15 = { 15 }; 304 const DwVfpRegister d15 = { 15 };
305 305
306 // Aliases for double registers. 306 // Aliases for double registers.
307 const DwVfpRegister kFirstCalleeSavedDoubleReg = d8; 307 static const DwVfpRegister& kFirstCalleeSavedDoubleReg = d8;
308 const DwVfpRegister kLastCalleeSavedDoubleReg = d15; 308 static const DwVfpRegister& kLastCalleeSavedDoubleReg = d15;
309 const DwVfpRegister kDoubleRegZero = d14; 309 static const DwVfpRegister& kDoubleRegZero = d14;
310 310
311 311
312 // Coprocessor register 312 // Coprocessor register
313 struct CRegister { 313 struct CRegister {
314 bool is_valid() const { return 0 <= code_ && code_ < 16; } 314 bool is_valid() const { return 0 <= code_ && code_ < 16; }
315 bool is(CRegister creg) const { return code_ == creg.code_; } 315 bool is(CRegister creg) const { return code_ == creg.code_; }
316 int code() const { 316 int code() const {
317 ASSERT(is_valid()); 317 ASSERT(is_valid());
318 return code_; 318 return code_;
319 } 319 }
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 public: 1413 public:
1414 explicit EnsureSpace(Assembler* assembler) { 1414 explicit EnsureSpace(Assembler* assembler) {
1415 assembler->CheckBuffer(); 1415 assembler->CheckBuffer();
1416 } 1416 }
1417 }; 1417 };
1418 1418
1419 1419
1420 } } // namespace v8::internal 1420 } } // namespace v8::internal
1421 1421
1422 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1422 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/arm/assembler-arm-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698