| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 F(DateParseString, 2) \ | 188 F(DateParseString, 2) \ |
| 189 F(DateLocalTimezone, 1) \ | 189 F(DateLocalTimezone, 1) \ |
| 190 F(DateLocalTimeOffset, 0) \ | 190 F(DateLocalTimeOffset, 0) \ |
| 191 F(DateDaylightSavingsOffset, 1) \ | 191 F(DateDaylightSavingsOffset, 1) \ |
| 192 \ | 192 \ |
| 193 /* Numbers */ \ | 193 /* Numbers */ \ |
| 194 F(NumberIsFinite, 1) \ | 194 F(NumberIsFinite, 1) \ |
| 195 \ | 195 \ |
| 196 /* Globals */ \ | 196 /* Globals */ \ |
| 197 F(CompileString, 2) \ | 197 F(CompileString, 2) \ |
| 198 F(CompileScript, 4) \ | |
| 199 F(GlobalPrint, 1) \ | 198 F(GlobalPrint, 1) \ |
| 200 \ | 199 \ |
| 201 /* Eval */ \ | 200 /* Eval */ \ |
| 202 F(GlobalReceiver, 1) \ | 201 F(GlobalReceiver, 1) \ |
| 203 F(ResolvePossiblyDirectEval, 2) \ | 202 F(ResolvePossiblyDirectEval, 2) \ |
| 204 \ | 203 \ |
| 205 F(SetProperty, -1 /* 3 or 4 */) \ | 204 F(SetProperty, -1 /* 3 or 4 */) \ |
| 206 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ | 205 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ |
| 207 \ | 206 \ |
| 208 /* Arrays */ \ | 207 /* Arrays */ \ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 int position); | 375 int position); |
| 377 | 376 |
| 378 // Helper functions used stubs. | 377 // Helper functions used stubs. |
| 379 static void PerformGC(Object* result); | 378 static void PerformGC(Object* result); |
| 380 }; | 379 }; |
| 381 | 380 |
| 382 | 381 |
| 383 } } // namespace v8::internal | 382 } } // namespace v8::internal |
| 384 | 383 |
| 385 #endif // V8_RUNTIME_H_ | 384 #endif // V8_RUNTIME_H_ |
| OLD | NEW |