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

Side by Side Diff: src/heap.h

Issue 12993003: Revert r14023 (Unify code for fast and slow path of JSON.stringify) from trunk. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 9 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/json-stringifier.h » ('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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 V(prototype_string, "prototype") \ 213 V(prototype_string, "prototype") \
214 V(string_string, "string") \ 214 V(string_string, "string") \
215 V(String_string, "String") \ 215 V(String_string, "String") \
216 V(Date_string, "Date") \ 216 V(Date_string, "Date") \
217 V(this_string, "this") \ 217 V(this_string, "this") \
218 V(to_string_string, "toString") \ 218 V(to_string_string, "toString") \
219 V(char_at_string, "CharAt") \ 219 V(char_at_string, "CharAt") \
220 V(undefined_string, "undefined") \ 220 V(undefined_string, "undefined") \
221 V(value_of_string, "valueOf") \ 221 V(value_of_string, "valueOf") \
222 V(stack_string, "stack") \ 222 V(stack_string, "stack") \
223 V(toJSON_string, "toJSON") \
224 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ 223 V(InitializeVarGlobal_string, "InitializeVarGlobal") \
225 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ 224 V(InitializeConstGlobal_string, "InitializeConstGlobal") \
226 V(KeyedLoadElementMonomorphic_string, \ 225 V(KeyedLoadElementMonomorphic_string, \
227 "KeyedLoadElementMonomorphic") \ 226 "KeyedLoadElementMonomorphic") \
228 V(KeyedStoreElementMonomorphic_string, \ 227 V(KeyedStoreElementMonomorphic_string, \
229 "KeyedStoreElementMonomorphic") \ 228 "KeyedStoreElementMonomorphic") \
230 V(stack_overflow_string, "kStackOverflowBoilerplate") \ 229 V(stack_overflow_string, "kStackOverflowBoilerplate") \
231 V(illegal_access_string, "illegal access") \ 230 V(illegal_access_string, "illegal access") \
232 V(out_of_memory_string, "out-of-memory") \ 231 V(out_of_memory_string, "out-of-memory") \
233 V(illegal_execution_state_string, "illegal execution state") \ 232 V(illegal_execution_state_string, "illegal execution state") \
(...skipping 2794 matching lines...) Expand 10 before | Expand all | Expand 10 after
3028 AssertNoAllocation no_alloc; // i.e. no gc allowed. 3027 AssertNoAllocation no_alloc; // i.e. no gc allowed.
3029 3028
3030 private: 3029 private:
3031 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3030 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3032 }; 3031 };
3033 #endif // DEBUG 3032 #endif // DEBUG
3034 3033
3035 } } // namespace v8::internal 3034 } } // namespace v8::internal
3036 3035
3037 #endif // V8_HEAP_H_ 3036 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/json-stringifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698