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

Side by Side Diff: src/arm/macro-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 | « src/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 const DwVfpRegister src2, 473 const DwVfpRegister src2,
474 const Register fpscr_flags, 474 const Register fpscr_flags,
475 const Condition cond = al); 475 const Condition cond = al);
476 void VFPCompareAndLoadFlags(const DwVfpRegister src1, 476 void VFPCompareAndLoadFlags(const DwVfpRegister src1,
477 const double src2, 477 const double src2,
478 const Register fpscr_flags, 478 const Register fpscr_flags,
479 const Condition cond = al); 479 const Condition cond = al);
480 480
481 void Vmov(const DwVfpRegister dst, 481 void Vmov(const DwVfpRegister dst,
482 const double imm, 482 const double imm,
483 const Register scratch = no_reg, 483 const Register scratch = no_reg);
484 const Condition cond = al);
485 484
486 // Enter exit frame. 485 // Enter exit frame.
487 // stack_space - extra stack space, used for alignment before call to C. 486 // stack_space - extra stack space, used for alignment before call to C.
488 void EnterExitFrame(bool save_doubles, int stack_space = 0); 487 void EnterExitFrame(bool save_doubles, int stack_space = 0);
489 488
490 // Leave the current exit frame. Expects the return value in r0. 489 // Leave the current exit frame. Expects the return value in r0.
491 // Expect the number of values, pushed prior to the exit frame, to 490 // Expect the number of values, pushed prior to the exit frame, to
492 // remove in a register (or no_reg, if there is nothing to remove). 491 // remove in a register (or no_reg, if there is nothing to remove).
493 void LeaveExitFrame(bool save_doubles, Register argument_count); 492 void LeaveExitFrame(bool save_doubles, Register argument_count);
494 493
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
1425 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1424 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1426 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1425 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1427 #else 1426 #else
1428 #define ACCESS_MASM(masm) masm-> 1427 #define ACCESS_MASM(masm) masm->
1429 #endif 1428 #endif
1430 1429
1431 1430
1432 } } // namespace v8::internal 1431 } } // namespace v8::internal
1433 1432
1434 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1433 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698