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

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

Issue 1167813003: [date] Refactor the %_DateField intrinsic to be optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. Created 5 years, 6 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/deoptimizer.h ('k') | src/hydrogen.h » ('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_H_ 5 #ifndef V8_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 F(IsArray) \ 522 F(IsArray) \
523 F(IsRegExp) \ 523 F(IsRegExp) \
524 F(IsJSProxy) \ 524 F(IsJSProxy) \
525 F(IsConstructCall) \ 525 F(IsConstructCall) \
526 F(CallFunction) \ 526 F(CallFunction) \
527 F(DefaultConstructorCallSuper) \ 527 F(DefaultConstructorCallSuper) \
528 F(ArgumentsLength) \ 528 F(ArgumentsLength) \
529 F(Arguments) \ 529 F(Arguments) \
530 F(ValueOf) \ 530 F(ValueOf) \
531 F(SetValueOf) \ 531 F(SetValueOf) \
532 F(ThrowIfNotADate) \
532 F(DateField) \ 533 F(DateField) \
533 F(StringCharFromCode) \ 534 F(StringCharFromCode) \
534 F(StringCharAt) \ 535 F(StringCharAt) \
535 F(OneByteSeqStringSetChar) \ 536 F(OneByteSeqStringSetChar) \
536 F(TwoByteSeqStringSetChar) \ 537 F(TwoByteSeqStringSetChar) \
537 F(ObjectEquals) \ 538 F(ObjectEquals) \
538 F(IsObject) \ 539 F(IsObject) \
539 F(IsFunction) \ 540 F(IsFunction) \
540 F(IsUndetectableObject) \ 541 F(IsUndetectableObject) \
541 F(IsSpecObject) \ 542 F(IsSpecObject) \
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 1087
1087 Address start_; 1088 Address start_;
1088 Address instruction_start_; 1089 Address instruction_start_;
1089 uint32_t length_; 1090 uint32_t length_;
1090 }; 1091 };
1091 1092
1092 1093
1093 } } // namespace v8::internal 1094 } } // namespace v8::internal
1094 1095
1095 #endif // V8_FULL_CODEGEN_H_ 1096 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.h ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698