Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceAssembler.cpp ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceAssemblerARM32.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 //
(...skipping 27 matching lines...) Expand all
38 namespace Ice { 38 namespace Ice {
39 namespace ARM32 { 39 namespace ARM32 {
40 40
41 /// Encoding of an ARM 32-bit instruction. 41 /// Encoding of an ARM 32-bit instruction.
42 using IValueT = uint32_t; 42 using IValueT = uint32_t;
43 43
44 /// An Offset value (+/-) used in an ARM 32-bit instruction. 44 /// An Offset value (+/-) used in an ARM 32-bit instruction.
45 using IOffsetT = int32_t; 45 using IOffsetT = int32_t;
46 46
47 class AssemblerARM32 : public Assembler { 47 class AssemblerARM32 : public Assembler {
48 AssemblerARM32() = delete;
49 AssemblerARM32(const AssemblerARM32 &) = delete; 48 AssemblerARM32(const AssemblerARM32 &) = delete;
50 AssemblerARM32 &operator=(const AssemblerARM32 &) = delete; 49 AssemblerARM32 &operator=(const AssemblerARM32 &) = delete;
51 50
52 public: 51 public:
53 explicit AssemblerARM32(GlobalContext *Ctx, bool use_far_branches = false) 52 explicit AssemblerARM32(bool use_far_branches = false)
54 : Assembler(Asm_ARM32, Ctx) { 53 : Assembler(Asm_ARM32) {
55 // TODO(kschimpf): Add mode if needed when branches are handled. 54 // TODO(kschimpf): Add mode if needed when branches are handled.
56 (void)use_far_branches; 55 (void)use_far_branches;
57 } 56 }
58 ~AssemblerARM32() override { 57 ~AssemblerARM32() override {
59 if (BuildDefs::asserts()) { 58 if (BuildDefs::asserts()) {
60 for (const Label *Label : CfgNodeLabels) { 59 for (const Label *Label : CfgNodeLabels) {
61 Label->finalCheck(); 60 Label->finalCheck();
62 } 61 }
63 for (const Label *Label : LocalLabels) { 62 for (const Label *Label : LocalLabels) {
64 Label->finalCheck(); 63 Label->finalCheck();
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 IValueT encodeBranchOffset(IOffsetT Offset, IValueT Inst); 183 IValueT encodeBranchOffset(IOffsetT Offset, IValueT Inst);
185 184
186 // Returns the offset encoded in the branch instruction Inst. 185 // Returns the offset encoded in the branch instruction Inst.
187 static IOffsetT decodeBranchOffset(IValueT Inst); 186 static IOffsetT decodeBranchOffset(IValueT Inst);
188 }; 187 };
189 188
190 } // end of namespace ARM32 189 } // end of namespace ARM32
191 } // end of namespace Ice 190 } // end of namespace Ice
192 191
193 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 192 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
OLDNEW
« no previous file with comments | « src/IceAssembler.cpp ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698