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

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

Issue 10700188: Introduce an OptimizingCompiler class, responsible for maintaining the state needed to run Cranksha… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review. Created 8 years, 5 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/hydrogen.h ('k') | 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 class CompareOperation; 225 class CompareOperation;
226 class CompilationInfo; 226 class CompilationInfo;
227 class CountOperation; 227 class CountOperation;
228 class Expression; 228 class Expression;
229 class Property; 229 class Property;
230 class SmallMapList; 230 class SmallMapList;
231 class UnaryOperation; 231 class UnaryOperation;
232 class ForInStatement; 232 class ForInStatement;
233 233
234 234
235 class TypeFeedbackOracle BASE_EMBEDDED { 235 class TypeFeedbackOracle: public ZoneObject {
236 public: 236 public:
237 TypeFeedbackOracle(Handle<Code> code, 237 TypeFeedbackOracle(Handle<Code> code,
238 Handle<Context> global_context, 238 Handle<Context> global_context,
239 Isolate* isolate, 239 Isolate* isolate,
240 Zone* zone); 240 Zone* zone);
241 241
242 bool LoadIsMonomorphicNormal(Property* expr); 242 bool LoadIsMonomorphicNormal(Property* expr);
243 bool LoadIsUninitialized(Property* expr); 243 bool LoadIsUninitialized(Property* expr);
244 bool LoadIsMegamorphicWithTypeInfo(Property* expr); 244 bool LoadIsMegamorphicWithTypeInfo(Property* expr);
245 bool StoreIsMonomorphicNormal(Expression* expr); 245 bool StoreIsMonomorphicNormal(Expression* expr);
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 Isolate* isolate_; 321 Isolate* isolate_;
322 Handle<UnseededNumberDictionary> dictionary_; 322 Handle<UnseededNumberDictionary> dictionary_;
323 Zone* zone_; 323 Zone* zone_;
324 324
325 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 325 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
326 }; 326 };
327 327
328 } } // namespace v8::internal 328 } } // namespace v8::internal
329 329
330 #endif // V8_TYPE_INFO_H_ 330 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « src/hydrogen.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698