| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 if (!map.is_null() && CanRetainOtherContext(*map, *native_context_)) { | 221 if (!map.is_null() && CanRetainOtherContext(*map, *native_context_)) { |
| 222 map = Handle<Map>::null(); | 222 map = Handle<Map>::null(); |
| 223 } | 223 } |
| 224 } | 224 } |
| 225 | 225 |
| 226 if (code->is_compare_ic_stub()) { | 226 if (code->is_compare_ic_stub()) { |
| 227 int stub_minor_key = code->stub_info(); | 227 int stub_minor_key = code->stub_info(); |
| 228 CompareIC::StubInfoToType( | 228 CompareIC::StubInfoToType( |
| 229 stub_minor_key, left_type, right_type, combined_type, map, zone()); | 229 stub_minor_key, left_type, right_type, combined_type, map, zone()); |
| 230 } else if (code->is_compare_nil_ic_stub()) { | 230 } else if (code->is_compare_nil_ic_stub()) { |
| 231 CompareNilICStub stub(code->extra_ic_state()); | 231 CompareNilICStub stub(isolate(), code->extra_ic_state()); |
| 232 *combined_type = stub.GetType(zone(), map); | 232 *combined_type = stub.GetType(zone(), map); |
| 233 *left_type = *right_type = stub.GetInputType(zone(), map); | 233 *left_type = *right_type = stub.GetInputType(zone(), map); |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 | 236 |
| 237 | 237 |
| 238 void TypeFeedbackOracle::BinaryType(TypeFeedbackId id, | 238 void TypeFeedbackOracle::BinaryType(TypeFeedbackId id, |
| 239 Type** left, | 239 Type** left, |
| 240 Type** right, | 240 Type** right, |
| 241 Type** result, | 241 Type** result, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ASSERT_EQ(Code::BINARY_OP_IC, code->kind()); | 279 ASSERT_EQ(Code::BINARY_OP_IC, code->kind()); |
| 280 BinaryOpIC::State state(code->extra_ic_state()); | 280 BinaryOpIC::State state(code->extra_ic_state()); |
| 281 return state.GetLeftType(zone()); | 281 return state.GetLeftType(zone()); |
| 282 } | 282 } |
| 283 | 283 |
| 284 | 284 |
| 285 void TypeFeedbackOracle::PropertyReceiverTypes( | 285 void TypeFeedbackOracle::PropertyReceiverTypes( |
| 286 TypeFeedbackId id, Handle<String> name, | 286 TypeFeedbackId id, Handle<String> name, |
| 287 SmallMapList* receiver_types, bool* is_prototype) { | 287 SmallMapList* receiver_types, bool* is_prototype) { |
| 288 receiver_types->Clear(); | 288 receiver_types->Clear(); |
| 289 FunctionPrototypeStub proto_stub(Code::LOAD_IC); | 289 FunctionPrototypeStub proto_stub(isolate(), Code::LOAD_IC); |
| 290 *is_prototype = LoadIsStub(id, &proto_stub); | 290 *is_prototype = LoadIsStub(id, &proto_stub); |
| 291 if (!*is_prototype) { | 291 if (!*is_prototype) { |
| 292 Code::Flags flags = Code::ComputeHandlerFlags(Code::LOAD_IC); | 292 Code::Flags flags = Code::ComputeHandlerFlags(Code::LOAD_IC); |
| 293 CollectReceiverTypes(id, name, flags, receiver_types); | 293 CollectReceiverTypes(id, name, flags, receiver_types); |
| 294 } | 294 } |
| 295 } | 295 } |
| 296 | 296 |
| 297 | 297 |
| 298 void TypeFeedbackOracle::KeyedPropertyReceiverTypes( | 298 void TypeFeedbackOracle::KeyedPropertyReceiverTypes( |
| 299 TypeFeedbackId id, SmallMapList* receiver_types, bool* is_string) { | 299 TypeFeedbackId id, SmallMapList* receiver_types, bool* is_string) { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 UnseededNumberDictionary::kNotFound); | 494 UnseededNumberDictionary::kNotFound); |
| 495 // Dictionary has been allocated with sufficient size for all elements. | 495 // Dictionary has been allocated with sufficient size for all elements. |
| 496 DisallowHeapAllocation no_need_to_resize_dictionary; | 496 DisallowHeapAllocation no_need_to_resize_dictionary; |
| 497 HandleScope scope(isolate()); | 497 HandleScope scope(isolate()); |
| 498 isolate()->factory()->DictionaryAtNumberPut( | 498 isolate()->factory()->DictionaryAtNumberPut( |
| 499 dictionary_, IdToKey(ast_id), handle(target, isolate())); | 499 dictionary_, IdToKey(ast_id), handle(target, isolate())); |
| 500 } | 500 } |
| 501 | 501 |
| 502 | 502 |
| 503 } } // namespace v8::internal | 503 } } // namespace v8::internal |
| OLD | NEW |