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

Side by Side Diff: src/objects.h

Issue 9694032: Add type feedback info type to instance type list macro. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 | no next file » | 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 V(ACCESS_CHECK_INFO_TYPE) \ 286 V(ACCESS_CHECK_INFO_TYPE) \
287 V(INTERCEPTOR_INFO_TYPE) \ 287 V(INTERCEPTOR_INFO_TYPE) \
288 V(CALL_HANDLER_INFO_TYPE) \ 288 V(CALL_HANDLER_INFO_TYPE) \
289 V(FUNCTION_TEMPLATE_INFO_TYPE) \ 289 V(FUNCTION_TEMPLATE_INFO_TYPE) \
290 V(OBJECT_TEMPLATE_INFO_TYPE) \ 290 V(OBJECT_TEMPLATE_INFO_TYPE) \
291 V(SIGNATURE_INFO_TYPE) \ 291 V(SIGNATURE_INFO_TYPE) \
292 V(TYPE_SWITCH_INFO_TYPE) \ 292 V(TYPE_SWITCH_INFO_TYPE) \
293 V(SCRIPT_TYPE) \ 293 V(SCRIPT_TYPE) \
294 V(CODE_CACHE_TYPE) \ 294 V(CODE_CACHE_TYPE) \
295 V(POLYMORPHIC_CODE_CACHE_TYPE) \ 295 V(POLYMORPHIC_CODE_CACHE_TYPE) \
296 V(TYPE_FEEDBACK_INFO_TYPE) \
297 V(ALIASED_ARGUMENTS_ENTRY_TYPE) \
296 \ 298 \
297 V(FIXED_ARRAY_TYPE) \ 299 V(FIXED_ARRAY_TYPE) \
298 V(FIXED_DOUBLE_ARRAY_TYPE) \ 300 V(FIXED_DOUBLE_ARRAY_TYPE) \
299 V(SHARED_FUNCTION_INFO_TYPE) \ 301 V(SHARED_FUNCTION_INFO_TYPE) \
300 \ 302 \
301 V(JS_MESSAGE_OBJECT_TYPE) \ 303 V(JS_MESSAGE_OBJECT_TYPE) \
302 \ 304 \
303 V(JS_VALUE_TYPE) \ 305 V(JS_VALUE_TYPE) \
304 V(JS_DATE_TYPE) \ 306 V(JS_DATE_TYPE) \
305 V(JS_OBJECT_TYPE) \ 307 V(JS_OBJECT_TYPE) \
(...skipping 8267 matching lines...) Expand 10 before | Expand all | Expand 10 after
8573 } else { 8575 } else {
8574 value &= ~(1 << bit_position); 8576 value &= ~(1 << bit_position);
8575 } 8577 }
8576 return value; 8578 return value;
8577 } 8579 }
8578 }; 8580 };
8579 8581
8580 } } // namespace v8::internal 8582 } } // namespace v8::internal
8581 8583
8582 #endif // V8_OBJECTS_H_ 8584 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698