| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 CallKind call_kind); | 364 CallKind call_kind); |
| 365 | 365 |
| 366 // Invoke the JavaScript function in the given register. Changes the | 366 // Invoke the JavaScript function in the given register. Changes the |
| 367 // current context to the context in the function before invoking. | 367 // current context to the context in the function before invoking. |
| 368 void InvokeFunction(Register function, | 368 void InvokeFunction(Register function, |
| 369 const ParameterCount& actual, | 369 const ParameterCount& actual, |
| 370 InvokeFlag flag, | 370 InvokeFlag flag, |
| 371 const CallWrapper& call_wrapper, | 371 const CallWrapper& call_wrapper, |
| 372 CallKind call_kind); | 372 CallKind call_kind); |
| 373 | 373 |
| 374 void InvokeFunction(Register function, | |
| 375 const ParameterCount& expected, | |
| 376 const ParameterCount& actual, | |
| 377 InvokeFlag flag, | |
| 378 const CallWrapper& call_wrapper, | |
| 379 CallKind call_kind); | |
| 380 | |
| 381 void InvokeFunction(Handle<JSFunction> function, | 374 void InvokeFunction(Handle<JSFunction> function, |
| 382 const ParameterCount& expected, | 375 const ParameterCount& expected, |
| 383 const ParameterCount& actual, | 376 const ParameterCount& actual, |
| 384 InvokeFlag flag, | 377 InvokeFlag flag, |
| 385 const CallWrapper& call_wrapper, | 378 const CallWrapper& call_wrapper, |
| 386 CallKind call_kind); | 379 CallKind call_kind); |
| 387 | 380 |
| 388 // Invoke specified builtin JavaScript function. Adds an entry to | 381 // Invoke specified builtin JavaScript function. Adds an entry to |
| 389 // the unresolved list if the name does not resolve. | 382 // the unresolved list if the name does not resolve. |
| 390 void InvokeBuiltin(Builtins::JavaScript id, | 383 void InvokeBuiltin(Builtins::JavaScript id, |
| (...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1619 masm->popfq(); \ | 1612 masm->popfq(); \ |
| 1620 } \ | 1613 } \ |
| 1621 masm-> | 1614 masm-> |
| 1622 #else | 1615 #else |
| 1623 #define ACCESS_MASM(masm) masm-> | 1616 #define ACCESS_MASM(masm) masm-> |
| 1624 #endif | 1617 #endif |
| 1625 | 1618 |
| 1626 } } // namespace v8::internal | 1619 } } // namespace v8::internal |
| 1627 | 1620 |
| 1628 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1621 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
| OLD | NEW |