OLD | NEW |
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 Loading... |
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 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1442 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1430 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1443 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1431 #else | 1444 #else |
1432 #define ACCESS_MASM(masm) masm-> | 1445 #define ACCESS_MASM(masm) masm-> |
1433 #endif | 1446 #endif |
1434 | 1447 |
1435 | 1448 |
1436 } } // namespace v8::internal | 1449 } } // namespace v8::internal |
1437 | 1450 |
1438 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1451 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |