| 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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 CallKind call_kind); | 606 CallKind call_kind); |
| 607 | 607 |
| 608 // Invoke the JavaScript function in the given register. Changes the | 608 // Invoke the JavaScript function in the given register. Changes the |
| 609 // current context to the context in the function before invoking. | 609 // current context to the context in the function before invoking. |
| 610 void InvokeFunction(Register function, | 610 void InvokeFunction(Register function, |
| 611 const ParameterCount& actual, | 611 const ParameterCount& actual, |
| 612 InvokeFlag flag, | 612 InvokeFlag flag, |
| 613 const CallWrapper& call_wrapper, | 613 const CallWrapper& call_wrapper, |
| 614 CallKind call_kind); | 614 CallKind call_kind); |
| 615 | 615 |
| 616 void InvokeFunction(Register function, | |
| 617 const ParameterCount& expected, | |
| 618 const ParameterCount& actual, | |
| 619 InvokeFlag flag, | |
| 620 const CallWrapper& call_wrapper, | |
| 621 CallKind call_kind); | |
| 622 | |
| 623 void InvokeFunction(Handle<JSFunction> function, | 616 void InvokeFunction(Handle<JSFunction> function, |
| 624 const ParameterCount& expected, | 617 const ParameterCount& expected, |
| 625 const ParameterCount& actual, | 618 const ParameterCount& actual, |
| 626 InvokeFlag flag, | 619 InvokeFlag flag, |
| 627 const CallWrapper& call_wrapper, | 620 const CallWrapper& call_wrapper, |
| 628 CallKind call_kind); | 621 CallKind call_kind); |
| 629 | 622 |
| 630 void IsObjectJSObjectType(Register heap_object, | 623 void IsObjectJSObjectType(Register heap_object, |
| 631 Register map, | 624 Register map, |
| 632 Register scratch, | 625 Register scratch, |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1546 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1539 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1540 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1548 #else | 1541 #else |
| 1549 #define ACCESS_MASM(masm) masm-> | 1542 #define ACCESS_MASM(masm) masm-> |
| 1550 #endif | 1543 #endif |
| 1551 | 1544 |
| 1552 | 1545 |
| 1553 } } // namespace v8::internal | 1546 } } // namespace v8::internal |
| 1554 | 1547 |
| 1555 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1548 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |