| OLD | NEW |
| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 | 217 |
| 218 bool LoadIsMonomorphic(Property* expr); | 218 bool LoadIsMonomorphic(Property* expr); |
| 219 bool StoreIsMonomorphic(Expression* expr); | 219 bool StoreIsMonomorphic(Expression* expr); |
| 220 bool CallIsMonomorphic(Call* expr); | 220 bool CallIsMonomorphic(Call* expr); |
| 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, Handle<String> name); | 227 ZoneMapList* CallReceiverTypes(Call* expr, |
| 228 Handle<String> name, |
| 229 ReceiverType receiver_type); |
| 228 | 230 |
| 229 ExternalArrayType GetKeyedLoadExternalArrayType(Property* expr); | 231 ExternalArrayType GetKeyedLoadExternalArrayType(Property* expr); |
| 230 ExternalArrayType GetKeyedStoreExternalArrayType(Expression* expr); | 232 ExternalArrayType GetKeyedStoreExternalArrayType(Expression* expr); |
| 231 | 233 |
| 232 CheckType GetCallCheckType(Call* expr); | 234 CheckType GetCallCheckType(Call* expr); |
| 233 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); | 235 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); |
| 234 | 236 |
| 235 bool LoadIsBuiltin(Property* expr, Builtins::Name id); | 237 bool LoadIsBuiltin(Property* expr, Builtins::Name id); |
| 236 | 238 |
| 237 // Get type information for arithmetic operations and compares. | 239 // Get type information for arithmetic operations and compares. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 261 | 263 |
| 262 Handle<Context> global_context_; | 264 Handle<Context> global_context_; |
| 263 Handle<NumberDictionary> dictionary_; | 265 Handle<NumberDictionary> dictionary_; |
| 264 | 266 |
| 265 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); | 267 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); |
| 266 }; | 268 }; |
| 267 | 269 |
| 268 } } // namespace v8::internal | 270 } } // namespace v8::internal |
| 269 | 271 |
| 270 #endif // V8_TYPE_INFO_H_ | 272 #endif // V8_TYPE_INFO_H_ |
| OLD | NEW |