OLD | NEW |
1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// |
2 // | 2 // |
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
6 // | 6 // |
7 // Modified by the Subzero authors. | 7 // Modified by the Subzero authors. |
8 // | 8 // |
9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
10 // | 10 // |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 void padWithNop(intptr_t Padding) override { | 60 void padWithNop(intptr_t Padding) override { |
61 (void)Padding; | 61 (void)Padding; |
62 llvm::report_fatal_error("Not yet implemented."); | 62 llvm::report_fatal_error("Not yet implemented."); |
63 } | 63 } |
64 | 64 |
65 Ice::Label *getCfgNodeLabel(SizeT NodeNumber) override { | 65 Ice::Label *getCfgNodeLabel(SizeT NodeNumber) override { |
66 (void)NodeNumber; | 66 (void)NodeNumber; |
67 llvm_unreachable("Not yet implemented."); | 67 llvm_unreachable("Not yet implemented."); |
68 } | 68 } |
69 | 69 |
70 void bindCfgNodeLabel(SizeT NodeNumber) override { | 70 void bindCfgNodeLabel(const CfgNode *) override { |
71 (void)NodeNumber; | |
72 llvm::report_fatal_error("Not yet implemented."); | 71 llvm::report_fatal_error("Not yet implemented."); |
73 } | 72 } |
74 | 73 |
75 bool fixupIsPCRel(FixupKind Kind) const override { | 74 bool fixupIsPCRel(FixupKind Kind) const override { |
76 (void)Kind; | 75 (void)Kind; |
77 llvm::report_fatal_error("Not yet implemented."); | 76 llvm::report_fatal_error("Not yet implemented."); |
78 } | 77 } |
79 | 78 |
80 static bool classof(const Assembler *Asm) { | 79 static bool classof(const Assembler *Asm) { |
81 return Asm->getKind() == Asm_MIPS32; | 80 return Asm->getKind() == Asm_MIPS32; |
82 } | 81 } |
83 }; | 82 }; |
84 | 83 |
85 } // end of namespace MIPS32 | 84 } // end of namespace MIPS32 |
86 } // end of namespace Ice | 85 } // end of namespace Ice |
87 | 86 |
88 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 87 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
OLD | NEW |