OLD | NEW |
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 F(DateCurrentTime, 0) \ | 183 F(DateCurrentTime, 0) \ |
184 F(DateParseString, 1) \ | 184 F(DateParseString, 1) \ |
185 F(DateLocalTimezone, 1) \ | 185 F(DateLocalTimezone, 1) \ |
186 F(DateLocalTimeOffset, 0) \ | 186 F(DateLocalTimeOffset, 0) \ |
187 F(DateDaylightSavingsOffset, 1) \ | 187 F(DateDaylightSavingsOffset, 1) \ |
188 \ | 188 \ |
189 /* Numbers */ \ | 189 /* Numbers */ \ |
190 F(NumberIsFinite, 1) \ | 190 F(NumberIsFinite, 1) \ |
191 \ | 191 \ |
192 /* Globals */ \ | 192 /* Globals */ \ |
193 F(CompileString, 3) \ | 193 F(CompileString, 2) \ |
194 F(CompileScript, 4) \ | 194 F(CompileScript, 4) \ |
195 F(GlobalPrint, 1) \ | 195 F(GlobalPrint, 1) \ |
196 \ | 196 \ |
197 /* Eval */ \ | 197 /* Eval */ \ |
198 F(EvalReceiver, 1) \ | |
199 F(GlobalReceiver, 1) \ | 198 F(GlobalReceiver, 1) \ |
| 199 F(ResolvePossiblyDirectEval, 2) \ |
200 \ | 200 \ |
201 F(SetProperty, -1 /* 3 or 4 */) \ | 201 F(SetProperty, -1 /* 3 or 4 */) \ |
202 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ | 202 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ |
203 \ | 203 \ |
204 /* Arrays */ \ | 204 /* Arrays */ \ |
205 F(RemoveArrayHoles, 1) \ | 205 F(RemoveArrayHoles, 1) \ |
206 F(GetArrayKeys, 2) \ | 206 F(GetArrayKeys, 2) \ |
207 F(MoveArrayContents, 2) \ | 207 F(MoveArrayContents, 2) \ |
208 F(EstimateNumberOfElements, 1) \ | 208 F(EstimateNumberOfElements, 1) \ |
209 \ | 209 \ |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
360 | 360 |
361 // Helper functions used stubs. | 361 // Helper functions used stubs. |
362 static void PerformGC(Object* result); | 362 static void PerformGC(Object* result); |
363 }; | 363 }; |
364 | 364 |
365 | 365 |
366 } } // namespace v8::internal | 366 } } // namespace v8::internal |
367 | 367 |
368 #endif // V8_RUNTIME_H_ | 368 #endif // V8_RUNTIME_H_ |
OLD | NEW |