OLD | NEW |
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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 | 268 |
269 static bool CanRetainOtherContext(Map* map, Context* native_context); | 269 static bool CanRetainOtherContext(Map* map, Context* native_context); |
270 static bool CanRetainOtherContext(JSFunction* function, | 270 static bool CanRetainOtherContext(JSFunction* function, |
271 Context* native_context); | 271 Context* native_context); |
272 | 272 |
273 CheckType GetCallCheckType(Call* expr); | 273 CheckType GetCallCheckType(Call* expr); |
274 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); | 274 Handle<JSObject> GetPrototypeForPrimitiveCheck(CheckType check); |
275 | 275 |
276 Handle<JSFunction> GetCallTarget(Call* expr); | 276 Handle<JSFunction> GetCallTarget(Call* expr); |
277 Handle<JSFunction> GetCallNewTarget(CallNew* expr); | 277 Handle<JSFunction> GetCallNewTarget(CallNew* expr); |
| 278 ElementsKind GetCallNewElementsKind(CallNew* expr); |
278 | 279 |
279 Handle<Map> GetObjectLiteralStoreMap(ObjectLiteral::Property* prop); | 280 Handle<Map> GetObjectLiteralStoreMap(ObjectLiteral::Property* prop); |
280 | 281 |
281 bool LoadIsBuiltin(Property* expr, Builtins::Name id); | 282 bool LoadIsBuiltin(Property* expr, Builtins::Name id); |
282 | 283 |
283 // TODO(1571) We can't use ToBooleanStub::Types as the return value because | 284 // TODO(1571) We can't use ToBooleanStub::Types as the return value because |
284 // of various cylces in our headers. Death to tons of implementations in | 285 // of various cylces in our headers. Death to tons of implementations in |
285 // headers!! :-P | 286 // headers!! :-P |
286 byte ToBooleanTypes(TypeFeedbackId ast_id); | 287 byte ToBooleanTypes(TypeFeedbackId ast_id); |
287 | 288 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 Isolate* isolate_; | 322 Isolate* isolate_; |
322 Handle<UnseededNumberDictionary> dictionary_; | 323 Handle<UnseededNumberDictionary> dictionary_; |
323 Zone* zone_; | 324 Zone* zone_; |
324 | 325 |
325 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); | 326 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); |
326 }; | 327 }; |
327 | 328 |
328 } } // namespace v8::internal | 329 } } // namespace v8::internal |
329 | 330 |
330 #endif // V8_TYPE_INFO_H_ | 331 #endif // V8_TYPE_INFO_H_ |
OLD | NEW |