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

Side by Side Diff: src/factory.h

Issue 9212006: [objects] NotSeededNumberDictionary Base URL: gh:v8/v8@master
Patch Set: Created 8 years, 11 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
« no previous file with comments | « src/code-stubs.cc ('k') | src/factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698