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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 HObjectAccess::ForBackingStoreOffset(casted_stub()->offset(), rep); | 587 HObjectAccess::ForBackingStoreOffset(casted_stub()->offset(), rep); |
588 return AddLoadNamedField(GetParameter(0), access); | 588 return AddLoadNamedField(GetParameter(0), access); |
589 } | 589 } |
590 | 590 |
591 | 591 |
592 Handle<Code> KeyedLoadFieldStub::GenerateCode(Isolate* isolate) { | 592 Handle<Code> KeyedLoadFieldStub::GenerateCode(Isolate* isolate) { |
593 return DoGenerateCode(isolate, this); | 593 return DoGenerateCode(isolate, this); |
594 } | 594 } |
595 | 595 |
596 | 596 |
597 template<> | |
598 HValue* CodeStubGraphBuilder<KeyedArrayCallStub>::BuildCodeStub() { | |
599 int argc = casted_stub()->argc() + 1; | |
600 info()->set_parameter_count(argc); | |
601 | |
602 HValue* receiver = Add<HParameter>(1); | |
603 | |
604 // Load the expected initial array map from the context. | |
605 JSArrayBuilder array_builder(this, casted_stub()->elements_kind()); | |
606 HValue* map = array_builder.EmitMapCode(); | |
607 | |
608 HValue* checked_receiver = Add<HCheckMapValue>(receiver, map); | |
609 | |
610 HValue* function = BuildUncheckedMonomorphicElementAccess( | |
611 checked_receiver, GetParameter(0), | |
612 NULL, true, casted_stub()->elements_kind(), | |
613 false, NEVER_RETURN_HOLE, STANDARD_STORE); | |
614 return Add<HCallFunction>(function, argc, TAIL_CALL); | |
615 } | |
616 | |
617 | |
618 Handle<Code> KeyedArrayCallStub::GenerateCode(Isolate* isolate) { | |
619 return DoGenerateCode(isolate, this); | |
620 } | |
621 | |
622 | |
623 template <> | 597 template <> |
624 HValue* CodeStubGraphBuilder<KeyedStoreFastElementStub>::BuildCodeStub() { | 598 HValue* CodeStubGraphBuilder<KeyedStoreFastElementStub>::BuildCodeStub() { |
625 BuildUncheckedMonomorphicElementAccess( | 599 BuildUncheckedMonomorphicElementAccess( |
626 GetParameter(0), GetParameter(1), GetParameter(2), | 600 GetParameter(0), GetParameter(1), GetParameter(2), |
627 casted_stub()->is_js_array(), casted_stub()->elements_kind(), | 601 casted_stub()->is_js_array(), casted_stub()->elements_kind(), |
628 true, NEVER_RETURN_HOLE, casted_stub()->store_mode()); | 602 true, NEVER_RETURN_HOLE, casted_stub()->store_mode()); |
629 | 603 |
630 return GetParameter(2); | 604 return GetParameter(2); |
631 } | 605 } |
632 | 606 |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 return js_function; | 1271 return js_function; |
1298 } | 1272 } |
1299 | 1273 |
1300 | 1274 |
1301 Handle<Code> FastNewClosureStub::GenerateCode(Isolate* isolate) { | 1275 Handle<Code> FastNewClosureStub::GenerateCode(Isolate* isolate) { |
1302 return DoGenerateCode(isolate, this); | 1276 return DoGenerateCode(isolate, this); |
1303 } | 1277 } |
1304 | 1278 |
1305 | 1279 |
1306 } } // namespace v8::internal | 1280 } } // namespace v8::internal |
OLD | NEW |