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

Side by Side Diff: src/heap.h

Issue 12880017: Build fast literals in hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/handles.cc ('k') | src/hydrogen.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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 V(nan_string, "NaN") \ 202 V(nan_string, "NaN") \
203 V(RegExp_string, "RegExp") \ 203 V(RegExp_string, "RegExp") \
204 V(source_string, "source") \ 204 V(source_string, "source") \
205 V(global_string, "global") \ 205 V(global_string, "global") \
206 V(ignore_case_string, "ignoreCase") \ 206 V(ignore_case_string, "ignoreCase") \
207 V(multiline_string, "multiline") \ 207 V(multiline_string, "multiline") \
208 V(input_string, "input") \ 208 V(input_string, "input") \
209 V(index_string, "index") \ 209 V(index_string, "index") \
210 V(last_index_string, "lastIndex") \ 210 V(last_index_string, "lastIndex") \
211 V(object_string, "object") \ 211 V(object_string, "object") \
212 V(payload_string, "payload") \
212 V(prototype_string, "prototype") \ 213 V(prototype_string, "prototype") \
213 V(string_string, "string") \ 214 V(string_string, "string") \
214 V(String_string, "String") \ 215 V(String_string, "String") \
216 V(unknown_field_string, "unknownField") \
215 V(symbol_string, "symbol") \ 217 V(symbol_string, "symbol") \
216 V(Symbol_string, "Symbol") \ 218 V(Symbol_string, "Symbol") \
217 V(Date_string, "Date") \ 219 V(Date_string, "Date") \
218 V(this_string, "this") \ 220 V(this_string, "this") \
219 V(to_string_string, "toString") \ 221 V(to_string_string, "toString") \
220 V(char_at_string, "CharAt") \ 222 V(char_at_string, "CharAt") \
221 V(undefined_string, "undefined") \ 223 V(undefined_string, "undefined") \
222 V(value_of_string, "valueOf") \ 224 V(value_of_string, "valueOf") \
223 V(stack_string, "stack") \ 225 V(stack_string, "stack") \
224 V(toJSON_string, "toJSON") \ 226 V(toJSON_string, "toJSON") \
(...skipping 2803 matching lines...) Expand 10 before | Expand all | Expand 10 after
3028 AssertNoAllocation no_alloc; // i.e. no gc allowed. 3030 AssertNoAllocation no_alloc; // i.e. no gc allowed.
3029 3031
3030 private: 3032 private:
3031 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3033 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3032 }; 3034 };
3033 #endif // DEBUG 3035 #endif // DEBUG
3034 3036
3035 } } // namespace v8::internal 3037 } } // namespace v8::internal
3036 3038
3037 #endif // V8_HEAP_H_ 3039 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/handles.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698