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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 298 |
299 // Call runtime given the number of arguments expected on (and | 299 // Call runtime given the number of arguments expected on (and |
300 // removed from) the stack. | 300 // removed from) the stack. |
301 void CallRuntime(Runtime::Function* f, int arg_count); | 301 void CallRuntime(Runtime::Function* f, int arg_count); |
302 void CallRuntime(Runtime::FunctionId id, int arg_count); | 302 void CallRuntime(Runtime::FunctionId id, int arg_count); |
303 | 303 |
304 // Invoke builtin given the number of arguments it expects on (and | 304 // Invoke builtin given the number of arguments it expects on (and |
305 // removes from) the stack. | 305 // removes from) the stack. |
306 void InvokeBuiltin(Builtins::JavaScript id, | 306 void InvokeBuiltin(Builtins::JavaScript id, |
307 InvokeJSFlags flag, | 307 InvokeJSFlags flag, |
308 Result* arg_count_register, | |
309 int arg_count); | 308 int arg_count); |
310 | 309 |
311 // Call into an IC stub given the number of arguments it removes | 310 // Call into an IC stub given the number of arguments it removes |
312 // from the stack. Register arguments are passed as results and | 311 // from the stack. Register arguments are passed as results and |
313 // consumed by the call. | 312 // consumed by the call. |
314 void CallCodeObject(Handle<Code> ic, | 313 void CallCodeObject(Handle<Code> ic, |
315 RelocInfo::Mode rmode, | 314 RelocInfo::Mode rmode, |
316 int dropped_args); | 315 int dropped_args); |
317 void CallCodeObject(Handle<Code> ic, | 316 void CallCodeObject(Handle<Code> ic, |
318 RelocInfo::Mode rmode, | 317 RelocInfo::Mode rmode, |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 | 515 |
517 // Classes that need raw access to the elements_ array. | 516 // Classes that need raw access to the elements_ array. |
518 friend class DeferredCode; | 517 friend class DeferredCode; |
519 friend class JumpTarget; | 518 friend class JumpTarget; |
520 }; | 519 }; |
521 | 520 |
522 | 521 |
523 } } // namespace v8::internal | 522 } } // namespace v8::internal |
524 | 523 |
525 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 524 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
OLD | NEW |