| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 CallKind call_kind); | 342 CallKind call_kind); |
| 343 | 343 |
| 344 // Invoke the JavaScript function in the given register. Changes the | 344 // Invoke the JavaScript function in the given register. Changes the |
| 345 // current context to the context in the function before invoking. | 345 // current context to the context in the function before invoking. |
| 346 void InvokeFunction(Register function, | 346 void InvokeFunction(Register function, |
| 347 const ParameterCount& actual, | 347 const ParameterCount& actual, |
| 348 InvokeFlag flag, | 348 InvokeFlag flag, |
| 349 const CallWrapper& call_wrapper, | 349 const CallWrapper& call_wrapper, |
| 350 CallKind call_kind); | 350 CallKind call_kind); |
| 351 | 351 |
| 352 void InvokeFunction(Register function, |
| 353 const ParameterCount& expected, |
| 354 const ParameterCount& actual, |
| 355 InvokeFlag flag, |
| 356 const CallWrapper& call_wrapper, |
| 357 CallKind call_kind); |
| 358 |
| 352 void InvokeFunction(Handle<JSFunction> function, | 359 void InvokeFunction(Handle<JSFunction> function, |
| 353 const ParameterCount& expected, | 360 const ParameterCount& expected, |
| 354 const ParameterCount& actual, | 361 const ParameterCount& actual, |
| 355 InvokeFlag flag, | 362 InvokeFlag flag, |
| 356 const CallWrapper& call_wrapper, | 363 const CallWrapper& call_wrapper, |
| 357 CallKind call_kind); | 364 CallKind call_kind); |
| 358 | 365 |
| 359 // Invoke specified builtin JavaScript function. Adds an entry to | 366 // Invoke specified builtin JavaScript function. Adds an entry to |
| 360 // the unresolved list if the name does not resolve. | 367 // the unresolved list if the name does not resolve. |
| 361 void InvokeBuiltin(Builtins::JavaScript id, | 368 void InvokeBuiltin(Builtins::JavaScript id, |
| (...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 } \ | 1136 } \ |
| 1130 masm-> | 1137 masm-> |
| 1131 #else | 1138 #else |
| 1132 #define ACCESS_MASM(masm) masm-> | 1139 #define ACCESS_MASM(masm) masm-> |
| 1133 #endif | 1140 #endif |
| 1134 | 1141 |
| 1135 | 1142 |
| 1136 } } // namespace v8::internal | 1143 } } // namespace v8::internal |
| 1137 | 1144 |
| 1138 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1145 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| OLD | NEW |