| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 // function register will be untouched; the other register may be | 541 // function register will be untouched; the other register may be |
| 542 // clobbered. | 542 // clobbered. |
| 543 void TryGetFunctionPrototype(Register function, | 543 void TryGetFunctionPrototype(Register function, |
| 544 Register result, | 544 Register result, |
| 545 Label* miss); | 545 Label* miss); |
| 546 | 546 |
| 547 // Generates code for reporting that an illegal operation has | 547 // Generates code for reporting that an illegal operation has |
| 548 // occurred. | 548 // occurred. |
| 549 void IllegalOperation(int num_arguments); | 549 void IllegalOperation(int num_arguments); |
| 550 | 550 |
| 551 // Find the function context up the context chain. |
| 552 void LoadContext(Register dst, int context_chain_length); |
| 553 |
| 551 // --------------------------------------------------------------------------- | 554 // --------------------------------------------------------------------------- |
| 552 // Runtime calls | 555 // Runtime calls |
| 553 | 556 |
| 554 // Call a code stub. | 557 // Call a code stub. |
| 555 void CallStub(CodeStub* stub); | 558 void CallStub(CodeStub* stub); |
| 556 | 559 |
| 557 // Return from a code stub after popping its arguments. | 560 // Return from a code stub after popping its arguments. |
| 558 void StubReturn(int argc); | 561 void StubReturn(int argc); |
| 559 | 562 |
| 560 // Call a runtime routine. | 563 // Call a runtime routine. |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 } \ | 716 } \ |
| 714 masm-> | 717 masm-> |
| 715 #else | 718 #else |
| 716 #define ACCESS_MASM(masm) masm-> | 719 #define ACCESS_MASM(masm) masm-> |
| 717 #endif | 720 #endif |
| 718 | 721 |
| 719 | 722 |
| 720 } } // namespace v8::internal | 723 } } // namespace v8::internal |
| 721 | 724 |
| 722 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 725 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
| OLD | NEW |