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

Side by Side Diff: src/builtins.h

Issue 2018983002: [builtins] Also migrate String.prototype.toLowerCase/toUpperCase to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@StringTrim
Patch Set: REBASE Created 4 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/bootstrapper.cc ('k') | src/builtins.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 V(ReflectGetOwnPropertyDescriptor, kNone) \ 165 V(ReflectGetOwnPropertyDescriptor, kNone) \
166 V(ReflectGetPrototypeOf, kNone) \ 166 V(ReflectGetPrototypeOf, kNone) \
167 V(ReflectHas, kNone) \ 167 V(ReflectHas, kNone) \
168 V(ReflectIsExtensible, kNone) \ 168 V(ReflectIsExtensible, kNone) \
169 V(ReflectOwnKeys, kNone) \ 169 V(ReflectOwnKeys, kNone) \
170 V(ReflectPreventExtensions, kNone) \ 170 V(ReflectPreventExtensions, kNone) \
171 V(ReflectSet, kNone) \ 171 V(ReflectSet, kNone) \
172 V(ReflectSetPrototypeOf, kNone) \ 172 V(ReflectSetPrototypeOf, kNone) \
173 \ 173 \
174 V(StringFromCharCode, kNone) \ 174 V(StringFromCharCode, kNone) \
175 V(StringPrototypeToLowerCase, kNone) \
176 V(StringPrototypeToUpperCase, kNone) \
175 V(StringPrototypeTrim, kNone) \ 177 V(StringPrototypeTrim, kNone) \
176 V(StringPrototypeTrimLeft, kNone) \ 178 V(StringPrototypeTrimLeft, kNone) \
177 V(StringPrototypeTrimRight, kNone) \ 179 V(StringPrototypeTrimRight, kNone) \
178 \ 180 \
179 V(SymbolConstructor, kNone) \ 181 V(SymbolConstructor, kNone) \
180 V(SymbolConstructor_ConstructStub, kTarget) \ 182 V(SymbolConstructor_ConstructStub, kTarget) \
181 \ 183 \
182 V(HandleApiCall, kTargetAndNewTarget) \ 184 V(HandleApiCall, kTargetAndNewTarget) \
183 V(HandleApiCallAsFunction, kNone) \ 185 V(HandleApiCallAsFunction, kNone) \
184 V(HandleApiCallAsConstructor, kNone) \ 186 V(HandleApiCallAsConstructor, kNone) \
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 friend class BuiltinFunctionTable; 703 friend class BuiltinFunctionTable;
702 friend class Isolate; 704 friend class Isolate;
703 705
704 DISALLOW_COPY_AND_ASSIGN(Builtins); 706 DISALLOW_COPY_AND_ASSIGN(Builtins);
705 }; 707 };
706 708
707 } // namespace internal 709 } // namespace internal
708 } // namespace v8 710 } // namespace v8
709 711
710 #endif // V8_BUILTINS_H_ 712 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698