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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 case READ_ELEMENT: stream->Add("ReadElement"); break; | 588 case READ_ELEMENT: stream->Add("ReadElement"); break; |
589 case NEW_NON_STRICT_FAST: stream->Add("NewNonStrictFast"); break; | 589 case NEW_NON_STRICT_FAST: stream->Add("NewNonStrictFast"); break; |
590 case NEW_NON_STRICT_SLOW: stream->Add("NewNonStrictSlow"); break; | 590 case NEW_NON_STRICT_SLOW: stream->Add("NewNonStrictSlow"); break; |
591 case NEW_STRICT: stream->Add("NewStrict"); break; | 591 case NEW_STRICT: stream->Add("NewStrict"); break; |
592 } | 592 } |
593 } | 593 } |
594 | 594 |
595 | 595 |
596 void CallFunctionStub::PrintName(StringStream* stream) { | 596 void CallFunctionStub::PrintName(StringStream* stream) { |
597 stream->Add("CallFunctionStub_Args%d", argc_); | 597 stream->Add("CallFunctionStub_Args%d", argc_); |
598 if (ReceiverMightBeImplicit()) stream->Add("_Implicit"); | |
599 if (RecordCallTarget()) stream->Add("_Recording"); | 598 if (RecordCallTarget()) stream->Add("_Recording"); |
600 } | 599 } |
601 | 600 |
602 | 601 |
603 void CallConstructStub::PrintName(StringStream* stream) { | 602 void CallConstructStub::PrintName(StringStream* stream) { |
604 stream->Add("CallConstructStub"); | 603 stream->Add("CallConstructStub"); |
605 if (RecordCallTarget()) stream->Add("_Recording"); | 604 if (RecordCallTarget()) stream->Add("_Recording"); |
606 } | 605 } |
607 | 606 |
608 | 607 |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 InstallDescriptor(isolate, &stub3); | 812 InstallDescriptor(isolate, &stub3); |
814 } | 813 } |
815 | 814 |
816 InternalArrayConstructorStub::InternalArrayConstructorStub( | 815 InternalArrayConstructorStub::InternalArrayConstructorStub( |
817 Isolate* isolate) { | 816 Isolate* isolate) { |
818 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 817 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
819 } | 818 } |
820 | 819 |
821 | 820 |
822 } } // namespace v8::internal | 821 } } // namespace v8::internal |
OLD | NEW |