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

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

Issue 2126453002: [intrinsic] Drop the %_ValueOf intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix noi18n build (narf) 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
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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 void EmitPossiblyEvalCall(Call* expr); 503 void EmitPossiblyEvalCall(Call* expr);
504 504
505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ 505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \
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) \
514 F(StringCharFromCode) \ 513 F(StringCharFromCode) \
515 F(IsJSReceiver) \ 514 F(IsJSReceiver) \
516 F(HasCachedArrayIndex) \ 515 F(HasCachedArrayIndex) \
517 F(GetCachedArrayIndex) \ 516 F(GetCachedArrayIndex) \
518 F(GetSuperConstructor) \ 517 F(GetSuperConstructor) \
519 F(DebugBreakInOptimizedCode) \ 518 F(DebugBreakInOptimizedCode) \
520 F(ClassOf) \ 519 F(ClassOf) \
521 F(StringCharCodeAt) \ 520 F(StringCharCodeAt) \
522 F(SubString) \ 521 F(SubString) \
523 F(RegExpExec) \ 522 F(RegExpExec) \
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 Address start_; 1056 Address start_;
1058 Address instruction_start_; 1057 Address instruction_start_;
1059 uint32_t length_; 1058 uint32_t length_;
1060 }; 1059 };
1061 1060
1062 1061
1063 } // namespace internal 1062 } // namespace internal
1064 } // namespace v8 1063 } // namespace v8
1065 1064
1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1065 #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