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

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

Issue 1994733003: Rewrite decodeURL as builtin function, remove now unused runtime functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use Utf8::Encode() and ValueOf() Created 4 years, 7 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \ 513 F(ValueOf) \
514 F(StringCharFromCode) \ 514 F(StringCharFromCode) \
515 F(StringCharAt) \ 515 F(StringCharAt) \
516 F(OneByteSeqStringSetChar) \
517 F(TwoByteSeqStringSetChar) \
518 F(IsJSReceiver) \ 516 F(IsJSReceiver) \
519 F(MathPow) \ 517 F(MathPow) \
520 F(HasCachedArrayIndex) \ 518 F(HasCachedArrayIndex) \
521 F(GetCachedArrayIndex) \ 519 F(GetCachedArrayIndex) \
522 F(GetSuperConstructor) \ 520 F(GetSuperConstructor) \
523 F(DebugBreakInOptimizedCode) \ 521 F(DebugBreakInOptimizedCode) \
524 F(ClassOf) \ 522 F(ClassOf) \
525 F(StringCharCodeAt) \ 523 F(StringCharCodeAt) \
526 F(SubString) \ 524 F(SubString) \
527 F(RegExpExec) \ 525 F(RegExpExec) \
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 Address start_; 1056 Address start_;
1059 Address instruction_start_; 1057 Address instruction_start_;
1060 uint32_t length_; 1058 uint32_t length_;
1061 }; 1059 };
1062 1060
1063 1061
1064 } // namespace internal 1062 } // namespace internal
1065 } // namespace v8 1063 } // namespace v8
1066 1064
1067 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 1065 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698