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

Side by Side Diff: src/heap.h

Issue 6670115: Improve property access with keys that can always be converted into a symbol string. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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/ic.cc » ('j') | src/ic.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 V(code_symbol, ".code") \ 148 V(code_symbol, ".code") \
149 V(result_symbol, ".result") \ 149 V(result_symbol, ".result") \
150 V(catch_var_symbol, ".catch-var") \ 150 V(catch_var_symbol, ".catch-var") \
151 V(empty_symbol, "") \ 151 V(empty_symbol, "") \
152 V(eval_symbol, "eval") \ 152 V(eval_symbol, "eval") \
153 V(function_symbol, "function") \ 153 V(function_symbol, "function") \
154 V(length_symbol, "length") \ 154 V(length_symbol, "length") \
155 V(name_symbol, "name") \ 155 V(name_symbol, "name") \
156 V(number_symbol, "number") \ 156 V(number_symbol, "number") \
157 V(Number_symbol, "Number") \ 157 V(Number_symbol, "Number") \
158 V(nan_symbol, "NaN") \
158 V(RegExp_symbol, "RegExp") \ 159 V(RegExp_symbol, "RegExp") \
159 V(source_symbol, "source") \ 160 V(source_symbol, "source") \
160 V(global_symbol, "global") \ 161 V(global_symbol, "global") \
161 V(ignore_case_symbol, "ignoreCase") \ 162 V(ignore_case_symbol, "ignoreCase") \
162 V(multiline_symbol, "multiline") \ 163 V(multiline_symbol, "multiline") \
163 V(input_symbol, "input") \ 164 V(input_symbol, "input") \
164 V(index_symbol, "index") \ 165 V(index_symbol, "index") \
165 V(last_index_symbol, "lastIndex") \ 166 V(last_index_symbol, "lastIndex") \
166 V(object_symbol, "object") \ 167 V(object_symbol, "object") \
167 V(prototype_symbol, "prototype") \ 168 V(prototype_symbol, "prototype") \
(...skipping 2086 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2255 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2255 }; 2256 };
2256 #endif // DEBUG || LIVE_OBJECT_LIST 2257 #endif // DEBUG || LIVE_OBJECT_LIST
2257 2258
2258 2259
2259 } } // namespace v8::internal 2260 } } // namespace v8::internal
2260 2261
2261 #undef HEAP 2262 #undef HEAP
2262 2263
2263 #endif // V8_HEAP_H_ 2264 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/ic.cc » ('j') | src/ic.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698