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

Side by Side Diff: src/objects-inl.h

Issue 23182003: Push SetAccessor to Template (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase, grokdump Created 7 years, 3 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/objects-debug.cc ('k') | src/objects-printer.cc » ('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 4448 matching lines...) Expand 10 before | Expand all | Expand 10 after
4459 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) 4459 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset)
4460 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) 4460 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset)
4461 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) 4461 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset)
4462 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) 4462 ACCESSORS(InterceptorInfo, data, Object, kDataOffset)
4463 4463
4464 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) 4464 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset)
4465 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) 4465 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset)
4466 4466
4467 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) 4467 ACCESSORS(TemplateInfo, tag, Object, kTagOffset)
4468 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) 4468 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset)
4469 ACCESSORS(TemplateInfo, property_accessors, Object, kPropertyAccessorsOffset)
4469 4470
4470 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) 4471 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset)
4471 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) 4472 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset)
4472 ACCESSORS(FunctionTemplateInfo, property_accessors, Object,
4473 kPropertyAccessorsOffset)
4474 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, 4473 ACCESSORS(FunctionTemplateInfo, prototype_template, Object,
4475 kPrototypeTemplateOffset) 4474 kPrototypeTemplateOffset)
4476 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset) 4475 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset)
4477 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object, 4476 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object,
4478 kNamedPropertyHandlerOffset) 4477 kNamedPropertyHandlerOffset)
4479 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object, 4478 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object,
4480 kIndexedPropertyHandlerOffset) 4479 kIndexedPropertyHandlerOffset)
4481 ACCESSORS(FunctionTemplateInfo, instance_template, Object, 4480 ACCESSORS(FunctionTemplateInfo, instance_template, Object,
4482 kInstanceTemplateOffset) 4481 kInstanceTemplateOffset)
4483 ACCESSORS(FunctionTemplateInfo, class_name, Object, kClassNameOffset) 4482 ACCESSORS(FunctionTemplateInfo, class_name, Object, kClassNameOffset)
(...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after
6285 #undef WRITE_UINT32_FIELD 6284 #undef WRITE_UINT32_FIELD
6286 #undef READ_SHORT_FIELD 6285 #undef READ_SHORT_FIELD
6287 #undef WRITE_SHORT_FIELD 6286 #undef WRITE_SHORT_FIELD
6288 #undef READ_BYTE_FIELD 6287 #undef READ_BYTE_FIELD
6289 #undef WRITE_BYTE_FIELD 6288 #undef WRITE_BYTE_FIELD
6290 6289
6291 6290
6292 } } // namespace v8::internal 6291 } } // namespace v8::internal
6293 6292
6294 #endif // V8_OBJECTS_INL_H_ 6293 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698