Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: src/arm/virtual-frame-arm.h

Issue 466031: Remove passing of argc in r0 when calling builtins on ARM as it is not used (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/arm/virtual-frame-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/arm/virtual-frame-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698