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