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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 // Call stub given the number of arguments it expects on (and | 268 // Call stub given the number of arguments it expects on (and |
269 // removes from) the stack. | 269 // removes from) the stack. |
270 inline void CallStub(CodeStub* stub, int arg_count); | 270 inline void CallStub(CodeStub* stub, int arg_count); |
271 | 271 |
272 // Call JS function from top of the stack with arguments | 272 // Call JS function from top of the stack with arguments |
273 // taken from the stack. | 273 // taken from the stack. |
274 void CallJSFunction(int arg_count); | 274 void CallJSFunction(int arg_count); |
275 | 275 |
276 // Call runtime given the number of arguments expected on (and | 276 // Call runtime given the number of arguments expected on (and |
277 // removed from) the stack. | 277 // removed from) the stack. |
278 void CallRuntime(Runtime::Function* f, int arg_count); | 278 void CallRuntime(const Runtime::Function* f, int arg_count); |
279 void CallRuntime(Runtime::FunctionId id, int arg_count); | 279 void CallRuntime(Runtime::FunctionId id, int arg_count); |
280 | 280 |
281 #ifdef ENABLE_DEBUGGER_SUPPORT | 281 #ifdef ENABLE_DEBUGGER_SUPPORT |
282 void DebugBreak(); | 282 void DebugBreak(); |
283 #endif | 283 #endif |
284 | 284 |
285 // Invoke builtin given the number of arguments it expects on (and | 285 // Invoke builtin given the number of arguments it expects on (and |
286 // removes from) the stack. | 286 // removes from) the stack. |
287 void InvokeBuiltin(Builtins::JavaScript id, | 287 void InvokeBuiltin(Builtins::JavaScript id, |
288 InvokeJSFlags flag, | 288 InvokeJSFlags flag, |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 } | 504 } |
505 } | 505 } |
506 | 506 |
507 friend class JumpTarget; | 507 friend class JumpTarget; |
508 }; | 508 }; |
509 | 509 |
510 | 510 |
511 } } // namespace v8::internal | 511 } } // namespace v8::internal |
512 | 512 |
513 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 513 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
OLD | NEW |