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

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

Issue 1850643002: Adding %_NewObject intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: formatting Created 4 years, 8 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/crankshaft/hydrogen.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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 void EmitKeyedSuperCallWithLoadIC(Call* expr); 496 void EmitKeyedSuperCallWithLoadIC(Call* expr);
497 void EmitPossiblyEvalCall(Call* expr); 497 void EmitPossiblyEvalCall(Call* expr);
498 498
499 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ 499 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \
500 F(IsSmi) \ 500 F(IsSmi) \
501 F(IsArray) \ 501 F(IsArray) \
502 F(IsTypedArray) \ 502 F(IsTypedArray) \
503 F(IsRegExp) \ 503 F(IsRegExp) \
504 F(IsJSProxy) \ 504 F(IsJSProxy) \
505 F(Call) \ 505 F(Call) \
506 F(NewObject) \
506 F(ValueOf) \ 507 F(ValueOf) \
507 F(StringCharFromCode) \ 508 F(StringCharFromCode) \
508 F(StringCharAt) \ 509 F(StringCharAt) \
509 F(OneByteSeqStringSetChar) \ 510 F(OneByteSeqStringSetChar) \
510 F(TwoByteSeqStringSetChar) \ 511 F(TwoByteSeqStringSetChar) \
511 F(IsJSReceiver) \ 512 F(IsJSReceiver) \
512 F(MathPow) \ 513 F(MathPow) \
513 F(HasCachedArrayIndex) \ 514 F(HasCachedArrayIndex) \
514 F(GetCachedArrayIndex) \ 515 F(GetCachedArrayIndex) \
515 F(GetSuperConstructor) \ 516 F(GetSuperConstructor) \
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 Address start_; 1054 Address start_;
1054 Address instruction_start_; 1055 Address instruction_start_;
1055 uint32_t length_; 1056 uint32_t length_;
1056 }; 1057 };
1057 1058
1058 1059
1059 } // namespace internal 1060 } // namespace internal
1060 } // namespace v8 1061 } // namespace v8
1061 1062
1062 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1063 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698