Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: src/code-stubs.cc

Issue 131663003: Make the strict-mode calling convention for contextual calls the default one. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix arm port Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/code-stubs.h ('k') | src/compiler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698