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

Side by Side Diff: src/heap.h

Issue 9401008: Parsing of basic module declarations (no imports/exports yet). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Lasse's comments. Created 8 years, 10 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \ 123 V(Map, external_unsigned_short_array_map, ExternalUnsignedShortArrayMap) \
124 V(Map, external_int_array_map, ExternalIntArrayMap) \ 124 V(Map, external_int_array_map, ExternalIntArrayMap) \
125 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \ 125 V(Map, external_unsigned_int_array_map, ExternalUnsignedIntArrayMap) \
126 V(Map, external_float_array_map, ExternalFloatArrayMap) \ 126 V(Map, external_float_array_map, ExternalFloatArrayMap) \
127 V(Map, external_double_array_map, ExternalDoubleArrayMap) \ 127 V(Map, external_double_array_map, ExternalDoubleArrayMap) \
128 V(Map, non_strict_arguments_elements_map, NonStrictArgumentsElementsMap) \ 128 V(Map, non_strict_arguments_elements_map, NonStrictArgumentsElementsMap) \
129 V(Map, function_context_map, FunctionContextMap) \ 129 V(Map, function_context_map, FunctionContextMap) \
130 V(Map, catch_context_map, CatchContextMap) \ 130 V(Map, catch_context_map, CatchContextMap) \
131 V(Map, with_context_map, WithContextMap) \ 131 V(Map, with_context_map, WithContextMap) \
132 V(Map, block_context_map, BlockContextMap) \ 132 V(Map, block_context_map, BlockContextMap) \
133 V(Map, module_context_map, ModuleContextMap) \
133 V(Map, oddball_map, OddballMap) \ 134 V(Map, oddball_map, OddballMap) \
134 V(Map, message_object_map, JSMessageObjectMap) \ 135 V(Map, message_object_map, JSMessageObjectMap) \
135 V(Map, foreign_map, ForeignMap) \ 136 V(Map, foreign_map, ForeignMap) \
136 V(HeapNumber, nan_value, NanValue) \ 137 V(HeapNumber, nan_value, NanValue) \
137 V(HeapNumber, infinity_value, InfinityValue) \ 138 V(HeapNumber, infinity_value, InfinityValue) \
138 V(HeapNumber, minus_zero_value, MinusZeroValue) \ 139 V(HeapNumber, minus_zero_value, MinusZeroValue) \
139 V(Map, neander_map, NeanderMap) \ 140 V(Map, neander_map, NeanderMap) \
140 V(JSObject, message_listeners, MessageListeners) \ 141 V(JSObject, message_listeners, MessageListeners) \
141 V(Foreign, prototype_accessors, PrototypeAccessors) \ 142 V(Foreign, prototype_accessors, PrototypeAccessors) \
142 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 143 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
(...skipping 2503 matching lines...) Expand 10 before | Expand all | Expand 10 after
2646 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2647 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2647 2648
2648 private: 2649 private:
2649 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2650 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2650 }; 2651 };
2651 #endif // DEBUG || LIVE_OBJECT_LIST 2652 #endif // DEBUG || LIVE_OBJECT_LIST
2652 2653
2653 } } // namespace v8::internal 2654 } } // namespace v8::internal
2654 2655
2655 #endif // V8_HEAP_H_ 2656 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/heap.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698