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

Side by Side Diff: src/heap.h

Issue 12257005: Improve JSON stringifier's escape check. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: reduce impact on the scanner. Created 7 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
« no previous file with comments | « include/v8.h ('k') | src/heap.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 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 V(FixedArray, natives_source_cache, NativesSourceCache) \ 149 V(FixedArray, natives_source_cache, NativesSourceCache) \
150 V(Object, last_script_id, LastScriptId) \ 150 V(Object, last_script_id, LastScriptId) \
151 V(Script, empty_script, EmptyScript) \ 151 V(Script, empty_script, EmptyScript) \
152 V(Smi, real_stack_limit, RealStackLimit) \ 152 V(Smi, real_stack_limit, RealStackLimit) \
153 V(StringDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 153 V(StringDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
154 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ 154 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \
155 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \ 155 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \
156 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \ 156 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \
157 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ 157 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \
158 V(JSObject, observation_state, ObservationState) \ 158 V(JSObject, observation_state, ObservationState) \
159 V(Map, external_map, ExternalMap) 159 V(Map, external_map, ExternalMap) \
160 V(Map, printable_ascii_symbol_map, PrintableAsciiSymbolMap)
160 161
161 #define ROOT_LIST(V) \ 162 #define ROOT_LIST(V) \
162 STRONG_ROOT_LIST(V) \ 163 STRONG_ROOT_LIST(V) \
163 V(SymbolTable, symbol_table, SymbolTable) 164 V(SymbolTable, symbol_table, SymbolTable)
164 165
165 #define SYMBOL_LIST(V) \ 166 #define SYMBOL_LIST(V) \
166 V(Array_symbol, "Array") \ 167 V(Array_symbol, "Array") \
167 V(Object_symbol, "Object") \ 168 V(Object_symbol, "Object") \
168 V(Proto_symbol, "__proto__") \ 169 V(Proto_symbol, "__proto__") \
169 V(StringImpl_symbol, "StringImpl") \ 170 V(StringImpl_symbol, "StringImpl") \
(...skipping 2775 matching lines...) Expand 10 before | Expand all | Expand 10 after
2945 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2946 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2946 2947
2947 private: 2948 private:
2948 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2949 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2949 }; 2950 };
2950 #endif // DEBUG 2951 #endif // DEBUG
2951 2952
2952 } } // namespace v8::internal 2953 } } // namespace v8::internal
2953 2954
2954 #endif // V8_HEAP_H_ 2955 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698