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

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

Issue 1698343002: [builtins] Move the Boolean constructor to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Also remove it from ia32 of course. Created 4 years, 10 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 void EmitPossiblyEvalCall(Call* expr); 519 void EmitPossiblyEvalCall(Call* expr);
520 520
521 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ 521 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \
522 F(IsSmi) \ 522 F(IsSmi) \
523 F(IsArray) \ 523 F(IsArray) \
524 F(IsTypedArray) \ 524 F(IsTypedArray) \
525 F(IsRegExp) \ 525 F(IsRegExp) \
526 F(IsJSProxy) \ 526 F(IsJSProxy) \
527 F(Call) \ 527 F(Call) \
528 F(ValueOf) \ 528 F(ValueOf) \
529 F(SetValueOf) \
530 F(IsDate) \ 529 F(IsDate) \
531 F(StringCharFromCode) \ 530 F(StringCharFromCode) \
532 F(StringCharAt) \ 531 F(StringCharAt) \
533 F(OneByteSeqStringSetChar) \ 532 F(OneByteSeqStringSetChar) \
534 F(TwoByteSeqStringSetChar) \ 533 F(TwoByteSeqStringSetChar) \
535 F(IsJSReceiver) \ 534 F(IsJSReceiver) \
536 F(IsSimdValue) \ 535 F(IsSimdValue) \
537 F(MathPow) \ 536 F(MathPow) \
538 F(HasCachedArrayIndex) \ 537 F(HasCachedArrayIndex) \
539 F(GetCachedArrayIndex) \ 538 F(GetCachedArrayIndex) \
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1089 Address start_; 1088 Address start_;
1090 Address instruction_start_; 1089 Address instruction_start_;
1091 uint32_t length_; 1090 uint32_t length_;
1092 }; 1091 };
1093 1092
1094 1093
1095 } // namespace internal 1094 } // namespace internal
1096 } // namespace v8 1095 } // namespace v8
1097 1096
1098 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1097 #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