| OLD | NEW |
| 1 //===- subzero/src/IceAssemblerARM32.cpp - Assembler for ARM32 --*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerARM32.cpp - 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 /// \file | 18 /// \file |
| 19 /// This file implements the Assembler class for ARM32. | 19 /// \brief Implements the Assembler class for ARM32. |
| 20 /// | 20 /// |
| 21 //===----------------------------------------------------------------------===// | 21 //===----------------------------------------------------------------------===// |
| 22 | 22 |
| 23 #include "IceAssemblerARM32.h" | 23 #include "IceAssemblerARM32.h" |
| 24 #include "IceCfgNode.h" | 24 #include "IceCfgNode.h" |
| 25 #include "IceUtils.h" | 25 #include "IceUtils.h" |
| 26 | 26 |
| 27 namespace { | 27 namespace { |
| 28 | 28 |
| 29 using namespace Ice; | 29 using namespace Ice; |
| (...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1577 // rr defined (RotationValue) rotate. | 1577 // rr defined (RotationValue) rotate. |
| 1578 constexpr IValueT Opcode = B26 | B25 | B23 | B22 | B21 | B20; | 1578 constexpr IValueT Opcode = B26 | B25 | B23 | B22 | B21 | B20; |
| 1579 emitUxt(Cond, Opcode, Rd, Rn, Rm, Rotation); | 1579 emitUxt(Cond, Opcode, Rd, Rn, Rm, Rotation); |
| 1580 return; | 1580 return; |
| 1581 } | 1581 } |
| 1582 } | 1582 } |
| 1583 } | 1583 } |
| 1584 | 1584 |
| 1585 } // end of namespace ARM32 | 1585 } // end of namespace ARM32 |
| 1586 } // end of namespace Ice | 1586 } // end of namespace Ice |
| OLD | NEW |