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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 // Floating point value in the 32-bit integer range that are not exact integer | 532 // Floating point value in the 32-bit integer range that are not exact integer |
533 // won't be converted. | 533 // won't be converted. |
534 void LoadNumberAsInt32(Register object, | 534 void LoadNumberAsInt32(Register object, |
535 Register dst, | 535 Register dst, |
536 Register heap_number_map, | 536 Register heap_number_map, |
537 Register scratch, | 537 Register scratch, |
538 DwVfpRegister double_scratch0, | 538 DwVfpRegister double_scratch0, |
539 LowDwVfpRegister double_scratch1, | 539 LowDwVfpRegister double_scratch1, |
540 Label* not_int32); | 540 Label* not_int32); |
541 | 541 |
| 542 // Generates function and stub prologue code. |
| 543 void Prologue(bool is_stub); |
542 | 544 |
543 // Enter exit frame. | 545 // Enter exit frame. |
544 // stack_space - extra stack space, used for alignment before call to C. | 546 // stack_space - extra stack space, used for alignment before call to C. |
545 void EnterExitFrame(bool save_doubles, int stack_space = 0); | 547 void EnterExitFrame(bool save_doubles, int stack_space = 0); |
546 | 548 |
547 // Leave the current exit frame. Expects the return value in r0. | 549 // Leave the current exit frame. Expects the return value in r0. |
548 // Expect the number of values, pushed prior to the exit frame, to | 550 // Expect the number of values, pushed prior to the exit frame, to |
549 // remove in a register (or no_reg, if there is nothing to remove). | 551 // remove in a register (or no_reg, if there is nothing to remove). |
550 void LeaveExitFrame(bool save_doubles, | 552 void LeaveExitFrame(bool save_doubles, |
551 Register argument_count, | 553 Register argument_count, |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1507 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1509 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1508 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1510 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1509 #else | 1511 #else |
1510 #define ACCESS_MASM(masm) masm-> | 1512 #define ACCESS_MASM(masm) masm-> |
1511 #endif | 1513 #endif |
1512 | 1514 |
1513 | 1515 |
1514 } } // namespace v8::internal | 1516 } } // namespace v8::internal |
1515 | 1517 |
1516 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1518 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |