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

Side by Side Diff: src/heap.h

Issue 12385014: Hydrogen stubs for array constructors (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: With all ports done 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
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 V(stack_overflow_string, "kStackOverflowBoilerplate") \ 233 V(stack_overflow_string, "kStackOverflowBoilerplate") \
234 V(illegal_access_string, "illegal access") \ 234 V(illegal_access_string, "illegal access") \
235 V(out_of_memory_string, "out-of-memory") \ 235 V(out_of_memory_string, "out-of-memory") \
236 V(illegal_execution_state_string, "illegal execution state") \ 236 V(illegal_execution_state_string, "illegal execution state") \
237 V(get_string, "get") \ 237 V(get_string, "get") \
238 V(set_string, "set") \ 238 V(set_string, "set") \
239 V(map_field_string, "%map") \ 239 V(map_field_string, "%map") \
240 V(elements_field_string, "%elements") \ 240 V(elements_field_string, "%elements") \
241 V(length_field_string, "%length") \ 241 V(length_field_string, "%length") \
242 V(function_class_string, "Function") \ 242 V(function_class_string, "Function") \
243 V(properties_field_symbol, "%properties") \
244 V(payload_field_symbol, "%payload") \
243 V(illegal_argument_string, "illegal argument") \ 245 V(illegal_argument_string, "illegal argument") \
244 V(MakeReferenceError_string, "MakeReferenceError") \ 246 V(MakeReferenceError_string, "MakeReferenceError") \
245 V(MakeSyntaxError_string, "MakeSyntaxError") \ 247 V(MakeSyntaxError_string, "MakeSyntaxError") \
246 V(MakeTypeError_string, "MakeTypeError") \ 248 V(MakeTypeError_string, "MakeTypeError") \
247 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \ 249 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \
248 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \ 250 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \
249 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \ 251 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \
250 V(invalid_lhs_in_prefix_op_string, "invalid_lhs_in_prefix_op") \ 252 V(invalid_lhs_in_prefix_op_string, "invalid_lhs_in_prefix_op") \
251 V(illegal_return_string, "illegal_return") \ 253 V(illegal_return_string, "illegal_return") \
252 V(illegal_break_string, "illegal_break") \ 254 V(illegal_break_string, "illegal_break") \
(...skipping 2797 matching lines...) Expand 10 before | Expand all | Expand 10 after
3050 AssertNoAllocation no_alloc; // i.e. no gc allowed. 3052 AssertNoAllocation no_alloc; // i.e. no gc allowed.
3051 3053
3052 private: 3054 private:
3053 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3055 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3054 }; 3056 };
3055 #endif // DEBUG 3057 #endif // DEBUG
3056 3058
3057 } } // namespace v8::internal 3059 } } // namespace v8::internal
3058 3060
3059 #endif // V8_HEAP_H_ 3061 #endif // V8_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698