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

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

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. Created 4 years, 5 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
« no previous file with comments | « src/external-reference-table.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 F(IsSmi) \ 506 F(IsSmi) \
507 F(IsArray) \ 507 F(IsArray) \
508 F(IsTypedArray) \ 508 F(IsTypedArray) \
509 F(IsRegExp) \ 509 F(IsRegExp) \
510 F(IsJSProxy) \ 510 F(IsJSProxy) \
511 F(Call) \ 511 F(Call) \
512 F(NewObject) \ 512 F(NewObject) \
513 F(ValueOf) \ 513 F(ValueOf) \
514 F(StringCharFromCode) \ 514 F(StringCharFromCode) \
515 F(IsJSReceiver) \ 515 F(IsJSReceiver) \
516 F(MathPow) \
517 F(HasCachedArrayIndex) \ 516 F(HasCachedArrayIndex) \
518 F(GetCachedArrayIndex) \ 517 F(GetCachedArrayIndex) \
519 F(GetSuperConstructor) \ 518 F(GetSuperConstructor) \
520 F(DebugBreakInOptimizedCode) \ 519 F(DebugBreakInOptimizedCode) \
521 F(ClassOf) \ 520 F(ClassOf) \
522 F(StringCharCodeAt) \ 521 F(StringCharCodeAt) \
523 F(SubString) \ 522 F(SubString) \
524 F(RegExpExec) \ 523 F(RegExpExec) \
525 F(RegExpConstructResult) \ 524 F(RegExpConstructResult) \
526 F(ToInteger) \ 525 F(ToInteger) \
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 Address start_; 1057 Address start_;
1059 Address instruction_start_; 1058 Address instruction_start_;
1060 uint32_t length_; 1059 uint32_t length_;
1061 }; 1060 };
1062 1061
1063 1062
1064 } // namespace internal 1063 } // namespace internal
1065 } // namespace v8 1064 } // namespace v8
1066 1065
1067 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/external-reference-table.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698