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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1529 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1536 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1530 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1537 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1531 #else | 1538 #else |
1532 #define ACCESS_MASM(masm) masm-> | 1539 #define ACCESS_MASM(masm) masm-> |
1533 #endif | 1540 #endif |
1534 | 1541 |
1535 | 1542 |
1536 } } // namespace v8::internal | 1543 } } // namespace v8::internal |
1537 | 1544 |
1538 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1545 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |