| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 UNIMPLEMENTED_MIPS(); | 419 UNIMPLEMENTED_MIPS(); |
| 420 return Runtime::kAbort; | 420 return Runtime::kAbort; |
| 421 } | 421 } |
| 422 | 422 |
| 423 | 423 |
| 424 void StackCheckStub::Generate(MacroAssembler* masm) { | 424 void StackCheckStub::Generate(MacroAssembler* masm) { |
| 425 UNIMPLEMENTED_MIPS(); | 425 UNIMPLEMENTED_MIPS(); |
| 426 } | 426 } |
| 427 | 427 |
| 428 | 428 |
| 429 void GenericUnaryOpStub::Generate(MacroAssembler* masm) { | |
| 430 UNIMPLEMENTED_MIPS(); | |
| 431 } | |
| 432 | |
| 433 | |
| 434 bool CEntryStub::NeedsImmovableCode() { | 429 bool CEntryStub::NeedsImmovableCode() { |
| 435 return true; | 430 return true; |
| 436 } | 431 } |
| 437 | 432 |
| 438 | 433 |
| 439 void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) { | 434 void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) { |
| 440 UNIMPLEMENTED_MIPS(); | 435 UNIMPLEMENTED_MIPS(); |
| 441 } | 436 } |
| 442 | 437 |
| 443 | 438 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 UNIMPLEMENTED_MIPS(); | 738 UNIMPLEMENTED_MIPS(); |
| 744 } | 739 } |
| 745 | 740 |
| 746 | 741 |
| 747 #undef __ | 742 #undef __ |
| 748 | 743 |
| 749 } } // namespace v8::internal | 744 } } // namespace v8::internal |
| 750 | 745 |
| 751 #endif // V8_TARGET_ARCH_MIPS | 746 #endif // V8_TARGET_ARCH_MIPS |
| 752 | 747 |
| OLD | NEW |