OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 bool StoreIsMonomorphic(Assignment* expr); | 242 bool StoreIsMonomorphic(Assignment* expr); |
243 bool CallIsMonomorphic(Call* expr); | 243 bool CallIsMonomorphic(Call* expr); |
244 | 244 |
245 Handle<Map> LoadMonomorphicReceiverType(Property* expr); | 245 Handle<Map> LoadMonomorphicReceiverType(Property* expr); |
246 Handle<Map> StoreMonomorphicReceiverType(Assignment* expr); | 246 Handle<Map> StoreMonomorphicReceiverType(Assignment* expr); |
247 | 247 |
248 ZoneMapList* LoadReceiverTypes(Property* expr, Handle<String> name); | 248 ZoneMapList* LoadReceiverTypes(Property* expr, Handle<String> name); |
249 ZoneMapList* StoreReceiverTypes(Assignment* expr, Handle<String> name); | 249 ZoneMapList* StoreReceiverTypes(Assignment* expr, Handle<String> name); |
250 ZoneMapList* CallReceiverTypes(Call* expr, Handle<String> name); | 250 ZoneMapList* CallReceiverTypes(Call* expr, Handle<String> name); |
251 | 251 |
| 252 ExternalArrayType GetKeyedLoadExternalArrayType(Property* expr); |
| 253 ExternalArrayType GetKeyedStoreExternalArrayType(Assignment* expr); |
| 254 |
252 CheckType GetCallCheckType(Call* expr); | 255 CheckType GetCallCheckType(Call* expr); |
253 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); | 256 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); |
254 | 257 |
255 bool LoadIsBuiltin(Property* expr, Builtins::Name id); | 258 bool LoadIsBuiltin(Property* expr, Builtins::Name id); |
256 | 259 |
257 // Get type information for arithmetic operations and compares. | 260 // Get type information for arithmetic operations and compares. |
258 TypeInfo BinaryType(BinaryOperation* expr); | 261 TypeInfo BinaryType(BinaryOperation* expr); |
259 TypeInfo CompareType(CompareOperation* expr); | 262 TypeInfo CompareType(CompareOperation* expr); |
260 TypeInfo SwitchType(CaseClause* clause); | 263 TypeInfo SwitchType(CaseClause* clause); |
261 | 264 |
(...skipping 12 matching lines...) Expand all Loading... |
274 | 277 |
275 Handle<Context> global_context_; | 278 Handle<Context> global_context_; |
276 Handle<JSObject> map_; | 279 Handle<JSObject> map_; |
277 | 280 |
278 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); | 281 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); |
279 }; | 282 }; |
280 | 283 |
281 } } // namespace v8::internal | 284 } } // namespace v8::internal |
282 | 285 |
283 #endif // V8_TYPE_INFO_H_ | 286 #endif // V8_TYPE_INFO_H_ |
OLD | NEW |