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

Side by Side Diff: src/full-codegen/full-codegen.h

Issue 1407373007: Remove CallFunctionStub, always call through the Call builtin (also from CallIC) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/ast.h" 10 #include "src/ast.h"
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 456
457 // Emit code to pop values from the stack associated with nested statements 457 // Emit code to pop values from the stack associated with nested statements
458 // like try/catch, try/finally, etc, running the finallies and unwinding the 458 // like try/catch, try/finally, etc, running the finallies and unwinding the
459 // handlers as needed. 459 // handlers as needed.
460 void EmitUnwindBeforeReturn(); 460 void EmitUnwindBeforeReturn();
461 461
462 // Platform-specific return sequence 462 // Platform-specific return sequence
463 void EmitReturnSequence(); 463 void EmitReturnSequence();
464 464
465 // Platform-specific code sequences for calls 465 // Platform-specific code sequences for calls
466 void EmitCall(Call* expr, CallICState::CallType = CallICState::FUNCTION); 466 void EmitCall(Call* expr);
467 void EmitSuperConstructorCall(Call* expr); 467 void EmitSuperConstructorCall(Call* expr);
468 void EmitCallWithLoadIC(Call* expr); 468 void EmitCallWithLoadIC(Call* expr);
469 void EmitSuperCallWithLoadIC(Call* expr); 469 void EmitSuperCallWithLoadIC(Call* expr);
470 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); 470 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key);
471 void EmitKeyedSuperCallWithLoadIC(Call* expr); 471 void EmitKeyedSuperCallWithLoadIC(Call* expr);
472 void EmitPossiblyEvalCall(Call* expr); 472 void EmitPossiblyEvalCall(Call* expr);
473 473
474 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ 474 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \
475 F(IsSmi) \ 475 F(IsSmi) \
476 F(IsArray) \ 476 F(IsArray) \
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 Address start_; 1047 Address start_;
1048 Address instruction_start_; 1048 Address instruction_start_;
1049 uint32_t length_; 1049 uint32_t length_;
1050 }; 1050 };
1051 1051
1052 1052
1053 } // namespace internal 1053 } // namespace internal
1054 } // namespace v8 1054 } // namespace v8
1055 1055
1056 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1056 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698