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

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

Issue 23584004: Remove OptimizedCodeEntry *sigh*. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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-printer.cc ('k') | src/objects-visiting.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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 V(StructGeneric) \ 85 V(StructGeneric) \
86 V(ConsString) \ 86 V(ConsString) \
87 V(SlicedString) \ 87 V(SlicedString) \
88 V(Symbol) \ 88 V(Symbol) \
89 V(Oddball) \ 89 V(Oddball) \
90 V(Code) \ 90 V(Code) \
91 V(Map) \ 91 V(Map) \
92 V(Cell) \ 92 V(Cell) \
93 V(PropertyCell) \ 93 V(PropertyCell) \
94 V(SharedFunctionInfo) \ 94 V(SharedFunctionInfo) \
95 V(OptimizedCodeEntry) \
96 V(JSFunction) \ 95 V(JSFunction) \
97 V(JSWeakMap) \ 96 V(JSWeakMap) \
98 V(JSWeakSet) \ 97 V(JSWeakSet) \
99 V(JSArrayBuffer) \ 98 V(JSArrayBuffer) \
100 V(JSTypedArray) \ 99 V(JSTypedArray) \
101 V(JSDataView) \ 100 V(JSDataView) \
102 V(JSRegExp) 101 V(JSRegExp)
103 102
104 // For data objects, JS objects and structs along with generic visitor which 103 // For data objects, JS objects and structs along with generic visitor which
105 // can visit object of any size we provide visitors specialized by 104 // can visit object of any size we provide visitors specialized by
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 468
470 469
471 template<typename StaticVisitor> 470 template<typename StaticVisitor>
472 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback> 471 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback>
473 StaticMarkingVisitor<StaticVisitor>::table_; 472 StaticMarkingVisitor<StaticVisitor>::table_;
474 473
475 474
476 } } // namespace v8::internal 475 } } // namespace v8::internal
477 476
478 #endif // V8_OBJECTS_VISITING_H_ 477 #endif // V8_OBJECTS_VISITING_H_
OLDNEW
« no previous file with comments | « src/objects-printer.cc ('k') | src/objects-visiting.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698