| OLD | NEW |
| 1 //===- subzero/src/assembler_arm32.h - Assembler for ARM32 ------*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- 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 // |
| 11 // The Subzero Code Generator | 11 // The Subzero Code Generator |
| 12 // | 12 // |
| 13 // This file is distributed under the University of Illinois Open Source | 13 // This file is distributed under the University of Illinois Open Source |
| 14 // License. See LICENSE.TXT for details. | 14 // License. See LICENSE.TXT for details. |
| 15 // | 15 // |
| 16 //===----------------------------------------------------------------------===// | 16 //===----------------------------------------------------------------------===// |
| 17 // | 17 // |
| 18 // This file implements the Assembler class for ARM32. | 18 // This file implements the Assembler class for ARM32. |
| 19 // | 19 // |
| 20 //===----------------------------------------------------------------------===// | 20 //===----------------------------------------------------------------------===// |
| 21 | 21 |
| 22 #ifndef SUBZERO_SRC_ASSEMBLER_ARM32_H | 22 #ifndef SUBZERO_SRC_ICEASSEMBLERARM32_H |
| 23 #define SUBZERO_SRC_ASSEMBLER_ARM32_H | 23 #define SUBZERO_SRC_ICEASSEMBLERARM32_H |
| 24 | 24 |
| 25 #include "IceAssembler.h" |
| 25 #include "IceDefs.h" | 26 #include "IceDefs.h" |
| 26 #include "IceFixups.h" | 27 #include "IceFixups.h" |
| 27 | 28 |
| 28 #include "assembler.h" | |
| 29 | |
| 30 namespace Ice { | 29 namespace Ice { |
| 31 namespace ARM32 { | 30 namespace ARM32 { |
| 32 | 31 |
| 33 class AssemblerARM32 : public Assembler { | 32 class AssemblerARM32 : public Assembler { |
| 34 AssemblerARM32(const AssemblerARM32 &) = delete; | 33 AssemblerARM32(const AssemblerARM32 &) = delete; |
| 35 AssemblerARM32 &operator=(const AssemblerARM32 &) = delete; | 34 AssemblerARM32 &operator=(const AssemblerARM32 &) = delete; |
| 36 | 35 |
| 37 public: | 36 public: |
| 38 explicit AssemblerARM32(bool use_far_branches = false) : Assembler() { | 37 explicit AssemblerARM32(bool use_far_branches = false) : Assembler() { |
| 39 // This mode is only needed and implemented for MIPS and ARM. | 38 // This mode is only needed and implemented for MIPS and ARM. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 53 // http://llvm.org/viewvc/llvm-project?view=revision&revision=173943 | 52 // http://llvm.org/viewvc/llvm-project?view=revision&revision=173943 |
| 54 static const uint8_t Padding[] = {0xE7, 0xFE, 0xDE, 0xF0}; | 53 static const uint8_t Padding[] = {0xE7, 0xFE, 0xDE, 0xF0}; |
| 55 return llvm::ArrayRef<uint8_t>(Padding, 4); | 54 return llvm::ArrayRef<uint8_t>(Padding, 4); |
| 56 } | 55 } |
| 57 | 56 |
| 58 void padWithNop(intptr_t Padding) override { | 57 void padWithNop(intptr_t Padding) override { |
| 59 (void)Padding; | 58 (void)Padding; |
| 60 llvm_unreachable("Not yet implemented."); | 59 llvm_unreachable("Not yet implemented."); |
| 61 } | 60 } |
| 62 | 61 |
| 63 void BindCfgNodeLabel(SizeT NodeNumber) override { | 62 void bindCfgNodeLabel(SizeT NodeNumber) override { |
| 64 (void)NodeNumber; | 63 (void)NodeNumber; |
| 65 llvm_unreachable("Not yet implemented."); | 64 llvm_unreachable("Not yet implemented."); |
| 66 } | 65 } |
| 67 | 66 |
| 68 bool fixupIsPCRel(FixupKind Kind) const override { | 67 bool fixupIsPCRel(FixupKind Kind) const override { |
| 69 (void)Kind; | 68 (void)Kind; |
| 70 llvm_unreachable("Not yet implemented."); | 69 llvm_unreachable("Not yet implemented."); |
| 71 } | 70 } |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // end of namespace ARM32 | 73 } // end of namespace ARM32 |
| 75 } // end of namespace Ice | 74 } // end of namespace Ice |
| 76 | 75 |
| 77 #endif // SUBZERO_SRC_ASSEMBLER_ARM32_H | 76 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |