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

Side by Side Diff: src/factory.h

Issue 254593002: Reland r20932: "*NumberDictionary::AtNumberPut() handlified." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: The fix Created 6 years, 8 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 | Annotate | Revision Log
« 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_FACTORY_H_ 5 #ifndef V8_FACTORY_H_
6 #define V8_FACTORY_H_ 6 #define V8_FACTORY_H_
7 7
8 #include "isolate.h" 8 #include "isolate.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 600
601 // Allocates a new JSMessageObject object. 601 // Allocates a new JSMessageObject object.
602 Handle<JSMessageObject> NewJSMessageObject( 602 Handle<JSMessageObject> NewJSMessageObject(
603 Handle<String> type, 603 Handle<String> type,
604 Handle<JSArray> arguments, 604 Handle<JSArray> arguments,
605 int start_position, 605 int start_position,
606 int end_position, 606 int end_position,
607 Handle<Object> script, 607 Handle<Object> script,
608 Handle<Object> stack_frames); 608 Handle<Object> stack_frames);
609 609
610 Handle<SeededNumberDictionary> DictionaryAtNumberPut(
611 Handle<SeededNumberDictionary>,
612 uint32_t key,
613 Handle<Object> value);
614
615 Handle<UnseededNumberDictionary> DictionaryAtNumberPut(
616 Handle<UnseededNumberDictionary>,
617 uint32_t key,
618 Handle<Object> value);
619
620 #ifdef ENABLE_DEBUGGER_SUPPORT 610 #ifdef ENABLE_DEBUGGER_SUPPORT
621 Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared); 611 Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared);
622 #endif 612 #endif
623 613
624 // Return a map using the map cache in the native context. 614 // Return a map using the map cache in the native context.
625 // The key the an ordered set of property names. 615 // The key the an ordered set of property names.
626 Handle<Map> ObjectLiteralMapFromCache(Handle<Context> context, 616 Handle<Map> ObjectLiteralMapFromCache(Handle<Context> context,
627 Handle<FixedArray> keys); 617 Handle<FixedArray> keys);
628 618
629 // Creates a new FixedArray that holds the data associated with the 619 // Creates a new FixedArray that holds the data associated with the
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 // the string representation of the number. Otherwise return undefined. 681 // the string representation of the number. Otherwise return undefined.
692 Handle<Object> GetNumberStringCache(Handle<Object> number); 682 Handle<Object> GetNumberStringCache(Handle<Object> number);
693 683
694 // Update the cache with a new number-string pair. 684 // Update the cache with a new number-string pair.
695 void SetNumberStringCache(Handle<Object> number, Handle<String> string); 685 void SetNumberStringCache(Handle<Object> number, Handle<String> string);
696 }; 686 };
697 687
698 } } // namespace v8::internal 688 } } // namespace v8::internal
699 689
700 #endif // V8_FACTORY_H_ 690 #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