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

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

Issue 1313903003: [runtime] Remove the redundant %_IsObject intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Michis comment. Created 5 years, 3 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.h" 10 #include "src/ast.h"
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 F(Arguments) \ 500 F(Arguments) \
501 F(ValueOf) \ 501 F(ValueOf) \
502 F(SetValueOf) \ 502 F(SetValueOf) \
503 F(IsDate) \ 503 F(IsDate) \
504 F(DateField) \ 504 F(DateField) \
505 F(StringCharFromCode) \ 505 F(StringCharFromCode) \
506 F(StringCharAt) \ 506 F(StringCharAt) \
507 F(OneByteSeqStringSetChar) \ 507 F(OneByteSeqStringSetChar) \
508 F(TwoByteSeqStringSetChar) \ 508 F(TwoByteSeqStringSetChar) \
509 F(ObjectEquals) \ 509 F(ObjectEquals) \
510 F(IsObject) \
511 F(IsFunction) \ 510 F(IsFunction) \
512 F(IsSpecObject) \ 511 F(IsSpecObject) \
513 F(IsSimdValue) \ 512 F(IsSimdValue) \
514 F(IsStringWrapperSafeForDefaultValueOf) \ 513 F(IsStringWrapperSafeForDefaultValueOf) \
515 F(MathPow) \ 514 F(MathPow) \
516 F(IsMinusZero) \ 515 F(IsMinusZero) \
517 F(HasCachedArrayIndex) \ 516 F(HasCachedArrayIndex) \
518 F(GetCachedArrayIndex) \ 517 F(GetCachedArrayIndex) \
519 F(FastOneByteArrayJoin) \ 518 F(FastOneByteArrayJoin) \
520 F(GeneratorNext) \ 519 F(GeneratorNext) \
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 1077
1079 Address start_; 1078 Address start_;
1080 Address instruction_start_; 1079 Address instruction_start_;
1081 uint32_t length_; 1080 uint32_t length_;
1082 }; 1081 };
1083 1082
1084 1083
1085 } } // namespace v8::internal 1084 } } // namespace v8::internal
1086 1085
1087 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1086 #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