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

Side by Side Diff: src/runtime/runtime.h

Issue 1041723002: Added %_NewConsString intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/factory.cc ('k') | src/runtime/runtime-strings.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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 F(StringIndexOf, 3, 1) \ 165 F(StringIndexOf, 3, 1) \
166 F(StringLastIndexOf, 3, 1) \ 166 F(StringLastIndexOf, 3, 1) \
167 F(StringLocaleCompare, 2, 1) \ 167 F(StringLocaleCompare, 2, 1) \
168 F(StringReplaceGlobalRegExpWithString, 4, 1) \ 168 F(StringReplaceGlobalRegExpWithString, 4, 1) \
169 F(StringReplaceOneCharWithString, 3, 1) \ 169 F(StringReplaceOneCharWithString, 3, 1) \
170 F(StringMatch, 3, 1) \ 170 F(StringMatch, 3, 1) \
171 F(StringTrim, 3, 1) \ 171 F(StringTrim, 3, 1) \
172 F(StringToArray, 2, 1) \ 172 F(StringToArray, 2, 1) \
173 F(NewStringWrapper, 1, 1) \ 173 F(NewStringWrapper, 1, 1) \
174 F(NewString, 2, 1) \ 174 F(NewString, 2, 1) \
175 F(NewConsString, 4, 1) \
175 F(TruncateString, 2, 1) \ 176 F(TruncateString, 2, 1) \
176 \ 177 \
177 /* Numbers */ \ 178 /* Numbers */ \
178 F(NumberToRadixString, 2, 1) \ 179 F(NumberToRadixString, 2, 1) \
179 F(NumberToFixed, 2, 1) \ 180 F(NumberToFixed, 2, 1) \
180 F(NumberToExponential, 2, 1) \ 181 F(NumberToExponential, 2, 1) \
181 F(NumberToPrecision, 2, 1) \ 182 F(NumberToPrecision, 2, 1) \
182 F(IsValidSmi, 1, 1) \ 183 F(IsValidSmi, 1, 1) \
183 \ 184 \
184 /* Classes support */ \ 185 /* Classes support */ \
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 905
905 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 906 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
906 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 907 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
907 STATIC_ASSERT(LANGUAGE_END == 3); 908 STATIC_ASSERT(LANGUAGE_END == 3);
908 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 909 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
909 910
910 } // namespace internal 911 } // namespace internal
911 } // namespace v8 912 } // namespace v8
912 913
913 #endif // V8_RUNTIME_RUNTIME_H_ 914 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/runtime/runtime-strings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698