Searched refs:num_arguments (Results 1 - 19 of 19) sorted by relevance

/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h448 void IllegalOperation(int num_arguments);
479 void CallRuntime(const Runtime::Function* f, int num_arguments);
486 int num_arguments);
489 void CallRuntime(Runtime::FunctionId id, int num_arguments);
493 int num_arguments);
496 void CallExternalReference(ExternalReference ref, int num_arguments);
502 int num_arguments,
508 const ExternalReference& ext, int num_arguments, int result_size);
512 int num_arguments,
519 int num_arguments,
[all...]
H A Dmacro-assembler-ia32.cc1174 void MacroAssembler::IllegalOperation(int num_arguments) { argument
1175 if (num_arguments > 0) {
1176 add(Operand(esp), Immediate(num_arguments * kPointerSize));
1201 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { argument
1202 CallRuntime(Runtime::FunctionForId(id), num_arguments); local
1217 int num_arguments) {
1218 return TryCallRuntime(Runtime::FunctionForId(id), num_arguments);
1223 int num_arguments) {
1227 if (f->nargs >= 0 && f->nargs != num_arguments) {
1228 IllegalOperation(num_arguments);
1216 TryCallRuntime(Runtime::FunctionId id, int num_arguments) argument
1222 CallRuntime(const Runtime::Function* f, int num_arguments) argument
1243 TryCallRuntime(const Runtime::Function* f, int num_arguments) argument
1263 CallExternalReference(ExternalReference ref, int num_arguments) argument
1273 TailCallExternalReference(const ExternalReference& ext, int num_arguments, int result_size) argument
1285 TryTailCallExternalReference( const ExternalReference& ext, int num_arguments, int result_size) argument
1296 TailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
1300 num_arguments, local
1305 TryTailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
2007 PrepareCallCFunction(int num_arguments, Register scratch) argument
2023 CallCFunction(ExternalReference function, int num_arguments) argument
2031 CallCFunction(Register function, int num_arguments) argument
[all...]
H A Dregexp-macro-assembler-ia32.cc845 static const int num_arguments = 3; local
846 __ PrepareCallCFunction(num_arguments, ebx);
854 __ CallCFunction(grow_stack, num_arguments);
1026 static const int num_arguments = 3;
1027 __ PrepareCallCFunction(num_arguments, scratch);
1037 __ CallCFunction(check_stack_guard, num_arguments);
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc468 void MacroAssembler::IllegalOperation(int num_arguments) { argument
469 if (num_arguments > 0) {
470 addq(rsp, Immediate(num_arguments * kPointerSize));
495 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { argument
496 CallRuntime(Runtime::FunctionForId(id), num_arguments); local
511 int num_arguments) {
512 return TryCallRuntime(Runtime::FunctionForId(id), num_arguments);
517 int num_arguments) {
521 if (f->nargs >= 0 && f->nargs != num_arguments) {
522 IllegalOperation(num_arguments);
510 TryCallRuntime(Runtime::FunctionId id, int num_arguments) argument
516 CallRuntime(const Runtime::Function* f, int num_arguments) argument
537 TryCallRuntime(const Runtime::Function* f, int num_arguments) argument
557 CallExternalReference(const ExternalReference& ext, int num_arguments) argument
567 TailCallExternalReference(const ExternalReference& ext, int num_arguments, int result_size) argument
586 TryTailCallExternalReference( const ExternalReference& ext, int num_arguments, int result_size) argument
604 TailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
608 num_arguments, local
613 TryTailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
2834 ArgumentStackSlotsForCFunctionCall(int num_arguments) argument
2853 PrepareCallCFunction(int num_arguments) argument
2869 CallCFunction(ExternalReference function, int num_arguments) argument
2876 CallCFunction(Register function, int num_arguments) argument
[all...]
H A Dlithium-codegen-x64.h177 int num_arguments,
181 int num_arguments,
184 CallRuntime(function, num_arguments, instr);
180 CallRuntime(Runtime::FunctionId id, int num_arguments, LInstruction* instr) argument
H A Dmacro-assembler-x64.h913 void IllegalOperation(int num_arguments);
954 void CallRuntime(const Runtime::Function* f, int num_arguments);
963 int num_arguments);
966 void CallRuntime(Runtime::FunctionId id, int num_arguments);
970 int num_arguments);
974 int num_arguments);
980 int num_arguments,
984 const ExternalReference& ext, int num_arguments, int result_size);
988 int num_arguments,
992 int num_arguments,
[all...]
H A Dregexp-macro-assembler-x64.cc405 static const int num_arguments = 4;
406 __ PrepareCallCFunction(num_arguments);
436 __ CallCFunction(compare, num_arguments);
927 static const int num_arguments = 3;
928 __ PrepareCallCFunction(num_arguments);
942 __ CallCFunction(grow_stack, num_arguments);
1123 static const int num_arguments = 3;
1124 __ PrepareCallCFunction(num_arguments);
1144 __ CallCFunction(stack_check, num_arguments);
H A Dlithium-codegen-x64.cc471 int num_arguments,
478 __ CallRuntime(function, num_arguments);
470 CallRuntime(const Runtime::Function* function, int num_arguments, LInstruction* instr) argument
/external/v8/src/arm/
H A Dmacro-assembler-arm.h609 void IllegalOperation(int num_arguments);
717 void CallRuntime(const Runtime::Function* f, int num_arguments);
721 void CallRuntime(Runtime::FunctionId fid, int num_arguments);
725 int num_arguments);
731 int num_arguments,
738 const ExternalReference& ext, int num_arguments, int result_size);
742 int num_arguments,
753 void PrepareCallCFunction(int num_arguments, Register scratch);
760 void CallCFunction(ExternalReference function, int num_arguments);
761 void CallCFunction(Register function, Register scratch, int num_arguments);
[all...]
H A Dlithium-codegen-arm.h191 int num_arguments,
195 int num_arguments,
198 CallRuntime(function, num_arguments, instr);
194 CallRuntime(Runtime::FunctionId id, int num_arguments, LInstruction* instr) argument
H A Dmacro-assembler-arm.cc1812 void MacroAssembler::IllegalOperation(int num_arguments) {
1813 if (num_arguments > 0) {
1814 add(sp, sp, Operand(num_arguments * kPointerSize));
2176 int num_arguments) {
2182 if (f->nargs >= 0 && f->nargs != num_arguments) {
2183 IllegalOperation(num_arguments);
2191 mov(r0, Operand(num_arguments));
2198 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) {
2199 CallRuntime(Runtime::FunctionForId(fid), num_arguments);
2214 int num_arguments) {
[all...]
H A Dregexp-macro-assembler-arm.cc784 static const int num_arguments = 3; local
785 __ PrepareCallCFunction(num_arguments, r0);
791 __ CallCFunction(grow_stack, num_arguments);
998 static const int num_arguments = 3;
999 __ PrepareCallCFunction(num_arguments, scratch);
1007 CallCFunctionUsingStub(stack_guard_check, num_arguments);
1221 int num_arguments) {
1223 ASSERT(num_arguments <= 4);
H A Dregexp-macro-assembler-arm.h218 int num_arguments);
H A Dlithium-codegen-arm.cc511 int num_arguments,
518 __ CallRuntime(function, num_arguments);
510 CallRuntime(const Runtime::Function* function, int num_arguments, LInstruction* instr) argument
/external/v8/src/
H A Darray.js530 var num_arguments = %_ArgumentsLength();
533 SmartMove(this, 0, 0, len, num_arguments);
535 SimpleMove(this, 0, 0, len, num_arguments);
537 for (var i = 0; i < num_arguments; i++) {
541 this.length = len + num_arguments;
543 return len + num_arguments;
585 var num_arguments = %_ArgumentsLength();
603 if (num_arguments == 1) {
616 if (num_arguments > 2) {
617 num_additional_args = num_arguments
[all...]
/external/v8/src/mips/
H A Dmacro-assembler-mips.h687 void IllegalOperation(int num_arguments);
727 void CallRuntime(const Runtime::Function* f, int num_arguments);
731 void CallRuntime(Runtime::FunctionId fid, int num_arguments);
735 int num_arguments);
741 int num_arguments,
746 int num_arguments,
758 void PrepareCallCFunction(int num_arguments, Register scratch);
769 void CallCFunction(ExternalReference function, int num_arguments);
770 void CallCFunction(Register function, Register scratch, int num_arguments);
942 int num_arguments);
[all...]
H A Dmacro-assembler-mips.cc2496 void MacroAssembler::IllegalOperation(int num_arguments) {
2497 if (num_arguments > 0) {
2498 addiu(sp, sp, num_arguments * kPointerSize);
2568 int num_arguments) {
2574 if (f->nargs >= 0 && f->nargs != num_arguments) {
2575 IllegalOperation(num_arguments);
2583 li(a0, num_arguments);
2600 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) {
2601 CallRuntime(Runtime::FunctionForId(fid), num_arguments);
2606 int num_arguments) {
3169 PrepareCallCFunction(int num_arguments, Register scratch) argument
3199 CallCFunction(ExternalReference function, int num_arguments) argument
3205 CallCFunction(Register function, Register scratch, int num_arguments) argument
3215 CallCFunctionHelper(Register function, ExternalReference function_reference, Register scratch, int num_arguments) argument
[all...]
H A Dregexp-macro-assembler-mips.cc456 int num_arguments) {
454 CallCFunctionUsingStub( ExternalReference function, int num_arguments) argument
H A Dregexp-macro-assembler-mips.h219 int num_arguments);

Completed in 258 milliseconds