OLD | NEW |
---|---|
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1997 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 1997 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
1998 | 1998 |
1999 Label true_value, done; | 1999 Label true_value, done; |
2000 __ tst(r0, r0); | 2000 __ tst(r0, r0); |
2001 __ mov(r0, Operand(Factory::false_value()), LeaveCC, ne); | 2001 __ mov(r0, Operand(Factory::false_value()), LeaveCC, ne); |
2002 __ mov(r0, Operand(Factory::true_value()), LeaveCC, eq); | 2002 __ mov(r0, Operand(Factory::true_value()), LeaveCC, eq); |
2003 } | 2003 } |
2004 | 2004 |
2005 | 2005 |
2006 void LCodeGen::DoInstanceOfAndBranch(LInstanceOfAndBranch* instr) { | 2006 void LCodeGen::DoInstanceOfAndBranch(LInstanceOfAndBranch* instr) { |
2007 Abort("DoInstanceOfAndBranch unimplemented."); | 2007 int true_block = chunk_->LookupDestination(instr->true_block_id()); |
2008 int false_block = chunk_->LookupDestination(instr->false_block_id()); | |
2009 | |
2010 Register result = r0; | |
2011 | |
2012 InstanceofStub stub(InstanceofStub::kArgsInRegisters); | |
Søren Thygesen Gjesse
2011/01/26 07:38:51
Don't you need to change the creation of LInstance
Karl Klose
2011/01/26 20:39:18
Yes, I fixed it.
On 2011/01/26 07:38:51, Søren Gj
| |
2013 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | |
2014 __ tst(result, Operand(result)); | |
2015 EmitBranch(true_block, false_block, eq); | |
2008 } | 2016 } |
2009 | 2017 |
2010 | 2018 |
2011 void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) { | 2019 void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) { |
2012 class DeferredInstanceOfKnownGlobal: public LDeferredCode { | 2020 class DeferredInstanceOfKnownGlobal: public LDeferredCode { |
2013 public: | 2021 public: |
2014 DeferredInstanceOfKnownGlobal(LCodeGen* codegen, | 2022 DeferredInstanceOfKnownGlobal(LCodeGen* codegen, |
2015 LInstanceOfKnownGlobal* instr) | 2023 LInstanceOfKnownGlobal* instr) |
2016 : LDeferredCode(codegen), instr_(instr) { } | 2024 : LDeferredCode(codegen), instr_(instr) { } |
2017 virtual void Generate() { | 2025 virtual void Generate() { |
(...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3674 | 3682 |
3675 | 3683 |
3676 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { | 3684 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { |
3677 Abort("DoOsrEntry unimplemented."); | 3685 Abort("DoOsrEntry unimplemented."); |
3678 } | 3686 } |
3679 | 3687 |
3680 | 3688 |
3681 #undef __ | 3689 #undef __ |
3682 | 3690 |
3683 } } // namespace v8::internal | 3691 } } // namespace v8::internal |
OLD | NEW |