Searched defs:argument_count (Results 1 - 12 of 12) sorted by relevance

/external/v8/src/
H A Dsafepoint-table.h80 int argument_count() const { function in class:v8::internal::BASE_EMBEDDED
H A Dlithium.h448 int argument_count,
453 arguments_stack_height_(argument_count),
444 LEnvironment(Handle<JSFunction> closure, FrameType frame_type, int ast_id, int parameter_count, int argument_count, int value_count, LEnvironment* outer) argument
H A Dhydrogen-instructions.h1550 explicit HCall<V>(int argument_count) : argument_count_(argument_count) {
1557 virtual int argument_count() const { return argument_count_; } function in namespace:v8::internal
1568 HUnaryCall(HValue* value, int argument_count) argument
1569 : HCall<1>(argument_count) {
1585 HBinaryCall(HValue* first, HValue* second, int argument_count) argument
1586 : HCall<2>(argument_count) {
1604 HInvokeFunction(HValue* context, HValue* function, int argument_count) argument
1605 : HBinaryCall(context, function, argument_count) {
1621 HCallConstantFunction(Handle<JSFunction> function, int argument_count) argument
1646 HCallKeyed(HValue* context, HValue* key, int argument_count) argument
1663 HCallNamed(HValue* context, Handle<String> name, int argument_count) argument
1685 HCallFunction(HValue* context, HValue* function, int argument_count) argument
1702 HCallGlobal(HValue* context, Handle<String> name, int argument_count) argument
1724 HCallKnownGlobal(Handle<JSFunction> target, int argument_count) argument
1744 HCallNew(HValue* context, HValue* constructor, int argument_count) argument
1761 HCallRuntime(HValue* context, Handle<String> name, const Runtime::Function* c_function, int argument_count) argument
3398 HCallStub(HValue* context, CodeStub::Major major_key, int argument_count) argument
[all...]
H A Dhydrogen.h83 int argument_count() const { return argument_count_; } function in class:v8::internal::HBasicBlock
H A Dhydrogen.cc2621 int count = call->argument_count();
5082 int argument_count = expr->arguments()->length() + 1; // Includes receiver. local
5112 new(zone()) HCallConstantFunction(expr->target(), argument_count);
5131 HCallNamed* call = new(zone()) HCallNamed(context, name, argument_count);
5534 int argument_count = expr->arguments()->length() + 1; // Plus receiver. local
5538 if (argument_count == 2 && check_type == STRING_CHECK) {
5567 if (argument_count == 2 && check_type == RECEIVER_MAP_CHECK) {
5580 if (argument_count == 3 && check_type == RECEIVER_MAP_CHECK) {
5622 if (argument_count == 1 && check_type == RECEIVER_MAP_CHECK) {
5635 if (argument_count
5806 int argument_count = expr->arguments()->length() + 1; // Plus receiver. local
6018 int argument_count = expr->arguments()->length() + 1; // Plus constructor. local
6119 int argument_count = expr->arguments()->length(); local
[all...]
/external/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc375 static const int argument_count = 4; local
376 __ PrepareCallCFunction(argument_count, ecx);
403 __ CallCFunction(compare, argument_count);
H A Dcode-stubs-ia32.cc532 const int argument_count = 1; local
535 __ PrepareCallCFunction(argument_count, ecx);
540 argument_count);
7192 int argument_count = 3; local
7193 __ PrepareCallCFunction(argument_count, regs_.scratch0());
7210 argument_count);
7216 argument_count);
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc4594 Register argument_count,
4622 if (argument_count.is_valid()) {
4623 sll(t8, argument_count, kPointerSizeLog2);
4593 LeaveExitFrame(bool save_doubles, Register argument_count, bool do_return) argument
H A Dcode-stubs-mips.cc1986 const int argument_count = 1; local
1991 __ PrepareCallCFunction(argument_count, fp_argument_count, scratch);
1995 argument_count);
7520 int argument_count = 3; local
7521 __ PrepareCallCFunction(argument_count, regs_.scratch0());
7541 argument_count);
7547 argument_count);
/external/v8/src/arm/
H A Dcode-stubs-arm.cc1902 const int argument_count = 1; local
1907 __ PrepareCallCFunction(argument_count, fp_argument_count, scratch);
1911 argument_count);
7248 int argument_count = 3;
7249 __ PrepareCallCFunction(argument_count, regs_.scratch0());
7269 argument_count);
7275 argument_count);
H A Dsimulator-arm.cc3324 int32_t Simulator::Call(byte* entry, int argument_count, ...) { argument
3326 va_start(parameters, argument_count);
3330 ASSERT(argument_count >= 4);
3339 int entry_stack = (original_stack - (argument_count - 4) * sizeof(int32_t));
3345 for (int i = 4; i < argument_count; i++) {
/external/v8/src/x64/
H A Dcode-stubs-x64.cc502 const int argument_count = 1; local
503 __ PrepareCallCFunction(argument_count);
513 argument_count);
6176 int argument_count = 3; local
6179 __ PrepareCallCFunction(argument_count);
6184 argument_count);
6190 argument_count);

Completed in 163 milliseconds