Home | History | Annotate | Download | only in src

Lines Matching refs:Arguments

36 // Arguments provides access to runtime call parameters.
38 // It uses the fact that the instance fields of Arguments
44 // Object* Runtime_function(Arguments args) {
48 class Arguments BASE_EMBEDDED {
50 Arguments(int length, Object** arguments)
51 : length_(length), arguments_(arguments) { }
75 // Get the total number of arguments including the receiver.
78 Object** arguments() { return arguments_; }
197 // Custom arguments replicate a small segment of stack that can be
198 // accessed through an Arguments object the same way the actual stack
352 static Type __RT_impl_##Name(Arguments args, Isolate* isolate); \
354 Arguments args(args_length, args_object); \
357 static Type __RT_impl_##Name(Arguments args, Isolate* isolate)
360 args.length(), args.arguments(), isolate