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

Side by Side Diff: src/type-info.h

Issue 9288011: Include what you use for allocation, api, assembler, and ast. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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/mips/assembler-mips-inl.h ('k') | src/v8globals.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 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
11 // with the distribution. 11 // with the distribution.
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 216
217 217
218 // Forward declarations. 218 // Forward declarations.
219 class Assignment; 219 class Assignment;
220 class BinaryOperation; 220 class BinaryOperation;
221 class Call; 221 class Call;
222 class CaseClause; 222 class CaseClause;
223 class CompareOperation; 223 class CompareOperation;
224 class CompilationInfo; 224 class CompilationInfo;
225 class CountOperation; 225 class CountOperation;
226 class Expression;
226 class Property; 227 class Property;
227 class SmallMapList; 228 class SmallMapList;
228 class UnaryOperation; 229 class UnaryOperation;
229 230
230 231
231 class TypeFeedbackOracle BASE_EMBEDDED { 232 class TypeFeedbackOracle BASE_EMBEDDED {
232 public: 233 public:
233 TypeFeedbackOracle(Handle<Code> code, 234 TypeFeedbackOracle(Handle<Code> code,
234 Handle<Context> global_context, 235 Handle<Context> global_context,
235 Isolate* isolate); 236 Isolate* isolate);
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 Handle<Context> global_context_; 305 Handle<Context> global_context_;
305 Isolate* isolate_; 306 Isolate* isolate_;
306 Handle<UnseededNumberDictionary> dictionary_; 307 Handle<UnseededNumberDictionary> dictionary_;
307 308
308 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 309 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
309 }; 310 };
310 311
311 } } // namespace v8::internal 312 } } // namespace v8::internal
312 313
313 #endif // V8_TYPE_INFO_H_ 314 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « src/mips/assembler-mips-inl.h ('k') | src/v8globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698