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

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

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix Vldm/Vstm; pass more tests Created 8 years 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 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 void VFPCompareAndLoadFlags(const DwVfpRegister src1, 495 void VFPCompareAndLoadFlags(const DwVfpRegister src1,
496 const double src2, 496 const double src2,
497 const Register fpscr_flags, 497 const Register fpscr_flags,
498 const Condition cond = al); 498 const Condition cond = al);
499 499
500 void Vmov(const DwVfpRegister dst, 500 void Vmov(const DwVfpRegister dst,
501 const double imm, 501 const double imm,
502 const Register scratch = no_reg, 502 const Register scratch = no_reg,
503 const Condition cond = al); 503 const Condition cond = al);
504 504
505 void Vldm(BlockAddrMode am,
506 Register base,
507 const DwVfpRegister first,
508 const DwVfpRegister last,
509 Condition cond = al);
510
511 void Vstm(BlockAddrMode am,
512 Register base,
513 const DwVfpRegister first,
514 const DwVfpRegister last,
515 Condition cond = al);
516
517
505 // Enter exit frame. 518 // Enter exit frame.
506 // stack_space - extra stack space, used for alignment before call to C. 519 // stack_space - extra stack space, used for alignment before call to C.
507 void EnterExitFrame(bool save_doubles, int stack_space = 0); 520 void EnterExitFrame(bool save_doubles, int stack_space = 0);
508 521
509 // Leave the current exit frame. Expects the return value in r0. 522 // Leave the current exit frame. Expects the return value in r0.
510 // Expect the number of values, pushed prior to the exit frame, to 523 // Expect the number of values, pushed prior to the exit frame, to
511 // remove in a register (or no_reg, if there is nothing to remove). 524 // remove in a register (or no_reg, if there is nothing to remove).
512 void LeaveExitFrame(bool save_doubles, Register argument_count); 525 void LeaveExitFrame(bool save_doubles, Register argument_count);
513 526
514 // Get the actual activation frame alignment for target environment. 527 // Get the actual activation frame alignment for target environment.
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1434 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1422 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1435 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1423 #else 1436 #else
1424 #define ACCESS_MASM(masm) masm-> 1437 #define ACCESS_MASM(masm) masm->
1425 #endif 1438 #endif
1426 1439
1427 1440
1428 } } // namespace v8::internal 1441 } } // namespace v8::internal
1429 1442
1430 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1443 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698