| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 int end_position, | 430 int end_position, |
| 431 Handle<Object> script, | 431 Handle<Object> script, |
| 432 Handle<Object> stack_trace, | 432 Handle<Object> stack_trace, |
| 433 Handle<Object> stack_frames); | 433 Handle<Object> stack_frames); |
| 434 | 434 |
| 435 Handle<NumberDictionary> DictionaryAtNumberPut( | 435 Handle<NumberDictionary> DictionaryAtNumberPut( |
| 436 Handle<NumberDictionary>, | 436 Handle<NumberDictionary>, |
| 437 uint32_t key, | 437 uint32_t key, |
| 438 Handle<Object> value); | 438 Handle<Object> value); |
| 439 | 439 |
| 440 |
| 441 Handle<NotSeededNumberDictionary> NotSeededDictionaryAtNumberPut( |
| 442 Handle<NotSeededNumberDictionary>, |
| 443 uint32_t key, |
| 444 Handle<Object> value); |
| 445 |
| 440 #ifdef ENABLE_DEBUGGER_SUPPORT | 446 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 441 Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared); | 447 Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared); |
| 442 #endif | 448 #endif |
| 443 | 449 |
| 444 // Return a map using the map cache in the global context. | 450 // Return a map using the map cache in the global context. |
| 445 // The key the an ordered set of property names. | 451 // The key the an ordered set of property names. |
| 446 Handle<Map> ObjectLiteralMapFromCache(Handle<Context> context, | 452 Handle<Map> ObjectLiteralMapFromCache(Handle<Context> context, |
| 447 Handle<FixedArray> keys); | 453 Handle<FixedArray> keys); |
| 448 | 454 |
| 449 // Creates a new FixedArray that holds the data associated with the | 455 // Creates a new FixedArray that holds the data associated with the |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 // Update the map cache in the global context with (keys, map) | 496 // Update the map cache in the global context with (keys, map) |
| 491 Handle<MapCache> AddToMapCache(Handle<Context> context, | 497 Handle<MapCache> AddToMapCache(Handle<Context> context, |
| 492 Handle<FixedArray> keys, | 498 Handle<FixedArray> keys, |
| 493 Handle<Map> map); | 499 Handle<Map> map); |
| 494 }; | 500 }; |
| 495 | 501 |
| 496 | 502 |
| 497 } } // namespace v8::internal | 503 } } // namespace v8::internal |
| 498 | 504 |
| 499 #endif // V8_FACTORY_H_ | 505 #endif // V8_FACTORY_H_ |
| OLD | NEW |