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

Side by Side Diff: src/objects-visiting.cc

Issue 17153011: DataView implementation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixes Created 7 years, 6 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-visiting.h ('k') | src/objects-visiting-inl.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 case FILLER_TYPE: 137 case FILLER_TYPE:
138 return kVisitDataObjectGeneric; 138 return kVisitDataObjectGeneric;
139 139
140 case JS_ARRAY_BUFFER_TYPE: 140 case JS_ARRAY_BUFFER_TYPE:
141 return kVisitJSArrayBuffer; 141 return kVisitJSArrayBuffer;
142 142
143 case JS_TYPED_ARRAY_TYPE: 143 case JS_TYPED_ARRAY_TYPE:
144 return kVisitJSTypedArray; 144 return kVisitJSTypedArray;
145 145
146 case JS_DATA_VIEW_TYPE:
147 return kVisitJSDataView;
148
146 case JS_OBJECT_TYPE: 149 case JS_OBJECT_TYPE:
147 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: 150 case JS_CONTEXT_EXTENSION_OBJECT_TYPE:
148 case JS_GENERATOR_OBJECT_TYPE: 151 case JS_GENERATOR_OBJECT_TYPE:
149 case JS_MODULE_TYPE: 152 case JS_MODULE_TYPE:
150 case JS_VALUE_TYPE: 153 case JS_VALUE_TYPE:
151 case JS_DATE_TYPE: 154 case JS_DATE_TYPE:
152 case JS_ARRAY_TYPE: 155 case JS_ARRAY_TYPE:
153 case JS_GLOBAL_PROXY_TYPE: 156 case JS_GLOBAL_PROXY_TYPE:
154 case JS_GLOBAL_OBJECT_TYPE: 157 case JS_GLOBAL_OBJECT_TYPE:
155 case JS_BUILTINS_OBJECT_TYPE: 158 case JS_BUILTINS_OBJECT_TYPE:
(...skipping 27 matching lines...) Expand all
183 kVisitStructGeneric, 186 kVisitStructGeneric,
184 instance_size); 187 instance_size);
185 188
186 default: 189 default:
187 UNREACHABLE(); 190 UNREACHABLE();
188 return kVisitorIdCount; 191 return kVisitorIdCount;
189 } 192 }
190 } 193 }
191 194
192 } } // namespace v8::internal 195 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-visiting.h ('k') | src/objects-visiting-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698