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

Side by Side Diff: src/runtime.h

Issue 43075: * Reapply revisions 1383, 1384, 1391, 1398, 1401, 1402,... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 F(Math_log, 1) \ 130 F(Math_log, 1) \
131 F(Math_pow, 2) \ 131 F(Math_pow, 2) \
132 F(Math_random, 0) \ 132 F(Math_random, 0) \
133 F(Math_round, 1) \ 133 F(Math_round, 1) \
134 F(Math_sin, 1) \ 134 F(Math_sin, 1) \
135 F(Math_sqrt, 1) \ 135 F(Math_sqrt, 1) \
136 F(Math_tan, 1) \ 136 F(Math_tan, 1) \
137 \ 137 \
138 /* Regular expressions */ \ 138 /* Regular expressions */ \
139 F(RegExpCompile, 3) \ 139 F(RegExpCompile, 3) \
140 F(RegExpExec, 3) \ 140 F(RegExpExec, 4) \
141 F(RegExpExecGlobal, 2) \ 141 F(RegExpExecGlobal, 3) \
142 \ 142 \
143 /* Strings */ \ 143 /* Strings */ \
144 F(StringCharCodeAt, 2) \ 144 F(StringCharCodeAt, 2) \
145 F(StringIndexOf, 3) \ 145 F(StringIndexOf, 3) \
146 F(StringLastIndexOf, 3) \ 146 F(StringLastIndexOf, 3) \
147 F(StringLocaleCompare, 2) \ 147 F(StringLocaleCompare, 2) \
148 F(StringSlice, 3) \ 148 F(StringSlice, 3) \
149 \ 149 \
150 /* Numbers */ \ 150 /* Numbers */ \
151 F(NumberToRadixString, 2) \ 151 F(NumberToRadixString, 2) \
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); 366 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
367 367
368 // Helper functions used stubs. 368 // Helper functions used stubs.
369 static void PerformGC(Object* result); 369 static void PerformGC(Object* result);
370 }; 370 };
371 371
372 372
373 } } // namespace v8::internal 373 } } // namespace v8::internal
374 374
375 #endif // V8_RUNTIME_H_ 375 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698