| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 494 |
| 495 | 495 |
| 496 Type* CompareNilICStub::GetInputType(Zone* zone, Handle<Map> map) { | 496 Type* CompareNilICStub::GetInputType(Zone* zone, Handle<Map> map) { |
| 497 Type* output_type = GetType(zone, map); | 497 Type* output_type = GetType(zone, map); |
| 498 Type* nil_type = | 498 Type* nil_type = |
| 499 nil_value_ == kNullValue ? Type::Null(zone) : Type::Undefined(zone); | 499 nil_value_ == kNullValue ? Type::Null(zone) : Type::Undefined(zone); |
| 500 return Type::Union(output_type, nil_type, zone); | 500 return Type::Union(output_type, nil_type, zone); |
| 501 } | 501 } |
| 502 | 502 |
| 503 | 503 |
| 504 void CallICStub::PrintState(StringStream* stream) { | |
| 505 state_.Print(stream); | |
| 506 } | |
| 507 | |
| 508 | |
| 509 void InstanceofStub::PrintName(StringStream* stream) { | 504 void InstanceofStub::PrintName(StringStream* stream) { |
| 510 const char* args = ""; | 505 const char* args = ""; |
| 511 if (HasArgsInRegisters()) { | 506 if (HasArgsInRegisters()) { |
| 512 args = "_REGS"; | 507 args = "_REGS"; |
| 513 } | 508 } |
| 514 | 509 |
| 515 const char* inline_check = ""; | 510 const char* inline_check = ""; |
| 516 if (HasCallSiteInlineCheck()) { | 511 if (HasCallSiteInlineCheck()) { |
| 517 inline_check = "_INLINE"; | 512 inline_check = "_INLINE"; |
| 518 } | 513 } |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 case READ_ELEMENT: stream->Add("ReadElement"); break; | 576 case READ_ELEMENT: stream->Add("ReadElement"); break; |
| 582 case NEW_SLOPPY_FAST: stream->Add("NewSloppyFast"); break; | 577 case NEW_SLOPPY_FAST: stream->Add("NewSloppyFast"); break; |
| 583 case NEW_SLOPPY_SLOW: stream->Add("NewSloppySlow"); break; | 578 case NEW_SLOPPY_SLOW: stream->Add("NewSloppySlow"); break; |
| 584 case NEW_STRICT: stream->Add("NewStrict"); break; | 579 case NEW_STRICT: stream->Add("NewStrict"); break; |
| 585 } | 580 } |
| 586 } | 581 } |
| 587 | 582 |
| 588 | 583 |
| 589 void CallFunctionStub::PrintName(StringStream* stream) { | 584 void CallFunctionStub::PrintName(StringStream* stream) { |
| 590 stream->Add("CallFunctionStub_Args%d", argc_); | 585 stream->Add("CallFunctionStub_Args%d", argc_); |
| 586 if (RecordCallTarget()) stream->Add("_Recording"); |
| 591 } | 587 } |
| 592 | 588 |
| 593 | 589 |
| 594 void CallConstructStub::PrintName(StringStream* stream) { | 590 void CallConstructStub::PrintName(StringStream* stream) { |
| 595 stream->Add("CallConstructStub"); | 591 stream->Add("CallConstructStub"); |
| 596 if (RecordCallTarget()) stream->Add("_Recording"); | 592 if (RecordCallTarget()) stream->Add("_Recording"); |
| 597 } | 593 } |
| 598 | 594 |
| 599 | 595 |
| 600 void ArrayConstructorStub::PrintName(StringStream* stream) { | 596 void ArrayConstructorStub::PrintName(StringStream* stream) { |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 InstallDescriptor(isolate, &stub3); | 815 InstallDescriptor(isolate, &stub3); |
| 820 } | 816 } |
| 821 | 817 |
| 822 InternalArrayConstructorStub::InternalArrayConstructorStub( | 818 InternalArrayConstructorStub::InternalArrayConstructorStub( |
| 823 Isolate* isolate) { | 819 Isolate* isolate) { |
| 824 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 820 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
| 825 } | 821 } |
| 826 | 822 |
| 827 | 823 |
| 828 } } // namespace v8::internal | 824 } } // namespace v8::internal |
| OLD | NEW |