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

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

Issue 7112010: Plumbing changes to merge various element kind implementaions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: review feedback Created 9 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/stub-cache.cc ('k') | src/type-info.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 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 Handle<Map> LoadMonomorphicReceiverType(Property* expr); 222 Handle<Map> LoadMonomorphicReceiverType(Property* expr);
223 Handle<Map> StoreMonomorphicReceiverType(Expression* expr); 223 Handle<Map> StoreMonomorphicReceiverType(Expression* expr);
224 224
225 ZoneMapList* LoadReceiverTypes(Property* expr, Handle<String> name); 225 ZoneMapList* LoadReceiverTypes(Property* expr, Handle<String> name);
226 ZoneMapList* StoreReceiverTypes(Assignment* expr, Handle<String> name); 226 ZoneMapList* StoreReceiverTypes(Assignment* expr, Handle<String> name);
227 ZoneMapList* CallReceiverTypes(Call* expr, 227 ZoneMapList* CallReceiverTypes(Call* expr,
228 Handle<String> name, 228 Handle<String> name,
229 CallKind call_kind); 229 CallKind call_kind);
230 230
231 ExternalArrayType GetKeyedLoadExternalArrayType(Property* expr);
232 ExternalArrayType GetKeyedStoreExternalArrayType(Expression* expr);
233
234 CheckType GetCallCheckType(Call* expr); 231 CheckType GetCallCheckType(Call* expr);
235 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); 232 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check);
236 233
237 bool LoadIsBuiltin(Property* expr, Builtins::Name id); 234 bool LoadIsBuiltin(Property* expr, Builtins::Name id);
238 235
239 // Get type information for arithmetic operations and compares. 236 // Get type information for arithmetic operations and compares.
240 TypeInfo UnaryType(UnaryOperation* expr); 237 TypeInfo UnaryType(UnaryOperation* expr);
241 TypeInfo BinaryType(BinaryOperation* expr); 238 TypeInfo BinaryType(BinaryOperation* expr);
242 TypeInfo CompareType(CompareOperation* expr); 239 TypeInfo CompareType(CompareOperation* expr);
243 bool IsSymbolCompare(CompareOperation* expr); 240 bool IsSymbolCompare(CompareOperation* expr);
(...skipping 19 matching lines...) Expand all
263 260
264 Handle<Context> global_context_; 261 Handle<Context> global_context_;
265 Handle<NumberDictionary> dictionary_; 262 Handle<NumberDictionary> dictionary_;
266 263
267 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 264 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
268 }; 265 };
269 266
270 } } // namespace v8::internal 267 } } // namespace v8::internal
271 268
272 #endif // V8_TYPE_INFO_H_ 269 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « src/stub-cache.cc ('k') | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698