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

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

Issue 1809993002: Provide optimized support for the %GetOrdinaryHasInstance intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@bare-4774-fix
Patch Set: REBASE and nit. Created 4 years, 9 months 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/ast.h" 10 #include "src/ast/ast.h"
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 F(RegExpExec) \ 523 F(RegExpExec) \
524 F(RegExpConstructResult) \ 524 F(RegExpConstructResult) \
525 F(ToInteger) \ 525 F(ToInteger) \
526 F(NumberToString) \ 526 F(NumberToString) \
527 F(ToString) \ 527 F(ToString) \
528 F(ToLength) \ 528 F(ToLength) \
529 F(ToNumber) \ 529 F(ToNumber) \
530 F(ToName) \ 530 F(ToName) \
531 F(ToObject) \ 531 F(ToObject) \
532 F(DebugIsActive) \ 532 F(DebugIsActive) \
533 F(GetOrdinaryHasInstance) \
533 F(CreateIterResultObject) 534 F(CreateIterResultObject)
534 535
535 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); 536 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call);
536 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) 537 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION)
537 #undef GENERATOR_DECLARATION 538 #undef GENERATOR_DECLARATION
538 539
539 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable); 540 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable);
540 541
541 // Platform-specific code for resuming generators. 542 // Platform-specific code for resuming generators.
542 void EmitGeneratorResume(Expression *generator, 543 void EmitGeneratorResume(Expression *generator,
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
1054 Address start_; 1055 Address start_;
1055 Address instruction_start_; 1056 Address instruction_start_;
1056 uint32_t length_; 1057 uint32_t length_;
1057 }; 1058 };
1058 1059
1059 1060
1060 } // namespace internal 1061 } // namespace internal
1061 } // namespace v8 1062 } // namespace v8
1062 1063
1063 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1064 #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