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