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

Side by Side Diff: src/factory.h

Issue 246743003: Dictionary::New() handlified. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | « no previous file | 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 30 matching lines...) Expand all
41 Handle<FixedDoubleArray> NewFixedDoubleArrayWithHoles( 41 Handle<FixedDoubleArray> NewFixedDoubleArrayWithHoles(
42 int size, 42 int size,
43 PretenureFlag pretenure = NOT_TENURED); 43 PretenureFlag pretenure = NOT_TENURED);
44 44
45 Handle<ConstantPoolArray> NewConstantPoolArray( 45 Handle<ConstantPoolArray> NewConstantPoolArray(
46 int number_of_int64_entries, 46 int number_of_int64_entries,
47 int number_of_code_ptr_entries, 47 int number_of_code_ptr_entries,
48 int number_of_heap_ptr_entries, 48 int number_of_heap_ptr_entries,
49 int number_of_int32_entries); 49 int number_of_int32_entries);
50 50
51 Handle<SeededNumberDictionary> NewSeededNumberDictionary(
52 int at_least_space_for);
53
54 Handle<UnseededNumberDictionary> NewUnseededNumberDictionary(
55 int at_least_space_for);
56
57 Handle<NameDictionary> NewNameDictionary(int at_least_space_for);
58
59 Handle<ObjectHashTable> NewObjectHashTable( 51 Handle<ObjectHashTable> NewObjectHashTable(
60 int at_least_space_for, 52 int at_least_space_for,
61 MinimumCapacity capacity_option = USE_DEFAULT_MINIMUM_CAPACITY); 53 MinimumCapacity capacity_option = USE_DEFAULT_MINIMUM_CAPACITY);
62 54
63 Handle<OrderedHashSet> NewOrderedHashSet(); 55 Handle<OrderedHashSet> NewOrderedHashSet();
64 Handle<OrderedHashMap> NewOrderedHashMap(); 56 Handle<OrderedHashMap> NewOrderedHashMap();
65 57
66 Handle<WeakHashTable> NewWeakHashTable(int at_least_space_for); 58 Handle<WeakHashTable> NewWeakHashTable(int at_least_space_for);
67 59
68 Handle<DeoptimizationInputData> NewDeoptimizationInputData( 60 Handle<DeoptimizationInputData> NewDeoptimizationInputData(
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 // the string representation of the number. Otherwise return undefined. 671 // the string representation of the number. Otherwise return undefined.
680 Handle<Object> GetNumberStringCache(Handle<Object> number); 672 Handle<Object> GetNumberStringCache(Handle<Object> number);
681 673
682 // Update the cache with a new number-string pair. 674 // Update the cache with a new number-string pair.
683 void SetNumberStringCache(Handle<Object> number, Handle<String> string); 675 void SetNumberStringCache(Handle<Object> number, Handle<String> string);
684 }; 676 };
685 677
686 } } // namespace v8::internal 678 } } // namespace v8::internal
687 679
688 #endif // V8_FACTORY_H_ 680 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « no previous file | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698