| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 F(SetCode, 2) \ | 178 F(SetCode, 2) \ |
| 179 \ | 179 \ |
| 180 F(CreateApiFunction, 1) \ | 180 F(CreateApiFunction, 1) \ |
| 181 F(IsTemplate, 1) \ | 181 F(IsTemplate, 1) \ |
| 182 F(GetTemplateField, 2) \ | 182 F(GetTemplateField, 2) \ |
| 183 F(DisableAccessChecks, 1) \ | 183 F(DisableAccessChecks, 1) \ |
| 184 F(EnableAccessChecks, 1) \ | 184 F(EnableAccessChecks, 1) \ |
| 185 \ | 185 \ |
| 186 /* Dates */ \ | 186 /* Dates */ \ |
| 187 F(DateCurrentTime, 0) \ | 187 F(DateCurrentTime, 0) \ |
| 188 F(DateParseString, 1) \ | 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) \ | 198 F(CompileScript, 4) \ |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 370 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 371 | 371 |
| 372 // Helper functions used stubs. | 372 // Helper functions used stubs. |
| 373 static void PerformGC(Object* result); | 373 static void PerformGC(Object* result); |
| 374 }; | 374 }; |
| 375 | 375 |
| 376 | 376 |
| 377 } } // namespace v8::internal | 377 } } // namespace v8::internal |
| 378 | 378 |
| 379 #endif // V8_RUNTIME_H_ | 379 #endif // V8_RUNTIME_H_ |
| OLD | NEW |