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

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

Issue 7148018: ARM: Improve register allocation and constraints.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 6 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 // Compare double values and then load the fpscr flags to a register. 307 // Compare double values and then load the fpscr flags to a register.
308 void VFPCompareAndLoadFlags(const DwVfpRegister src1, 308 void VFPCompareAndLoadFlags(const DwVfpRegister src1,
309 const DwVfpRegister src2, 309 const DwVfpRegister src2,
310 const Register fpscr_flags, 310 const Register fpscr_flags,
311 const Condition cond = al); 311 const Condition cond = al);
312 void VFPCompareAndLoadFlags(const DwVfpRegister src1, 312 void VFPCompareAndLoadFlags(const DwVfpRegister src1,
313 const double src2, 313 const double src2,
314 const Register fpscr_flags, 314 const Register fpscr_flags,
315 const Condition cond = al); 315 const Condition cond = al);
316 316
317 void Vmov(const DwVfpRegister dst,
318 const double imm,
319 const Condition cond = al);
320
317 321
318 // --------------------------------------------------------------------------- 322 // ---------------------------------------------------------------------------
319 // Activation frames 323 // Activation frames
320 324
321 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); } 325 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); }
322 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); } 326 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); }
323 327
324 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); } 328 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); }
325 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); } 329 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); }
326 330
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1131 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1128 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1132 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1129 #else 1133 #else
1130 #define ACCESS_MASM(masm) masm-> 1134 #define ACCESS_MASM(masm) masm->
1131 #endif 1135 #endif
1132 1136
1133 1137
1134 } } // namespace v8::internal 1138 } } // namespace v8::internal
1135 1139
1136 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1140 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698