| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===// | 1 //===- subzero/src/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 (void)Inst; | 467 (void)Inst; |
| 468 UnimplementedError(Func->getContext()->getFlags()); | 468 UnimplementedError(Func->getContext()->getFlags()); |
| 469 } | 469 } |
| 470 | 470 |
| 471 void TargetMIPS32::lowerInsertElement(const InstInsertElement *Inst) { | 471 void TargetMIPS32::lowerInsertElement(const InstInsertElement *Inst) { |
| 472 (void)Inst; | 472 (void)Inst; |
| 473 UnimplementedError(Func->getContext()->getFlags()); | 473 UnimplementedError(Func->getContext()->getFlags()); |
| 474 } | 474 } |
| 475 | 475 |
| 476 void TargetMIPS32::lowerIntrinsicCall(const InstIntrinsicCall *Instr) { | 476 void TargetMIPS32::lowerIntrinsicCall(const InstIntrinsicCall *Instr) { |
| 477 switch (Intrinsics::IntrinsicID ID = Instr->getIntrinsicInfo().ID) { | 477 switch (Instr->getIntrinsicInfo().ID) { |
| 478 case Intrinsics::AtomicCmpxchg: { | 478 case Intrinsics::AtomicCmpxchg: { |
| 479 UnimplementedError(Func->getContext()->getFlags()); | 479 UnimplementedError(Func->getContext()->getFlags()); |
| 480 return; | 480 return; |
| 481 } | 481 } |
| 482 case Intrinsics::AtomicFence: | 482 case Intrinsics::AtomicFence: |
| 483 UnimplementedError(Func->getContext()->getFlags()); | 483 UnimplementedError(Func->getContext()->getFlags()); |
| 484 return; | 484 return; |
| 485 case Intrinsics::AtomicFenceAll: | 485 case Intrinsics::AtomicFenceAll: |
| 486 // NOTE: FenceAll should prevent and load/store from being moved | 486 // NOTE: FenceAll should prevent and load/store from being moved |
| 487 // across the fence (both atomic and non-atomic). The InstMIPS32Mfence | 487 // across the fence (both atomic and non-atomic). The InstMIPS32Mfence |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 void TargetDataMIPS32::lowerJumpTables() { | 718 void TargetDataMIPS32::lowerJumpTables() { |
| 719 if (Ctx->getFlags().getDisableTranslation()) | 719 if (Ctx->getFlags().getDisableTranslation()) |
| 720 return; | 720 return; |
| 721 UnimplementedError(Ctx->getFlags()); | 721 UnimplementedError(Ctx->getFlags()); |
| 722 } | 722 } |
| 723 | 723 |
| 724 TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx) | 724 TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx) |
| 725 : TargetHeaderLowering(Ctx) {} | 725 : TargetHeaderLowering(Ctx) {} |
| 726 | 726 |
| 727 } // end of namespace Ice | 727 } // end of namespace Ice |
| OLD | NEW |