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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1484023002: Fix nits from previous CLs. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix formatting. Created 5 years 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 | « no previous file | 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 Label->finalCheck(); 102 Label->finalCheck();
103 } 103 }
104 for (const Label *Label : LocalLabels) { 104 for (const Label *Label : LocalLabels) {
105 Label->finalCheck(); 105 Label->finalCheck();
106 } 106 }
107 } 107 }
108 } 108 }
109 109
110 MoveRelocatableFixup *createMoveFixup(bool IsMovW, const Constant *Value); 110 MoveRelocatableFixup *createMoveFixup(bool IsMovW, const Constant *Value);
111 111
112 BlRelocatableFixup *createBlFixup(const ConstantRelocatable *Target); 112 BlRelocatableFixup *createBlFixup(const ConstantRelocatable *BlTarget);
113 113
114 void alignFunction() override { 114 void alignFunction() override {
115 const SizeT Align = 1 << getBundleAlignLog2Bytes(); 115 const SizeT Align = 1 << getBundleAlignLog2Bytes();
116 SizeT BytesNeeded = Utils::OffsetToAlignment(Buffer.getPosition(), Align); 116 SizeT BytesNeeded = Utils::OffsetToAlignment(Buffer.getPosition(), Align);
117 constexpr IValueT UndefinedInst = 0xe7fedef0; // udf #60896 117 constexpr IValueT UndefinedInst = 0xe7fedef0; // udf #60896
118 constexpr SizeT InstSize = sizeof(IValueT); 118 constexpr SizeT InstSize = sizeof(IValueT);
119 assert(BytesNeeded % InstARM32::InstSize == 0); 119 assert(BytesNeeded % InstARM32::InstSize == 0);
120 while (BytesNeeded > 0) { 120 while (BytesNeeded > 0) {
121 AssemblerBuffer::EnsureCapacity ensured(&Buffer); 121 AssemblerBuffer::EnsureCapacity ensured(&Buffer);
122 emitInst(UndefinedInst); 122 emitInst(UndefinedInst);
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and 384 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and
385 // iiiiiiiiiiiiiiii=Imm16. 385 // iiiiiiiiiiiiiiii=Imm16.
386 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags, 386 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags,
387 CondARM32::Cond Cond); 387 CondARM32::Cond Cond);
388 }; 388 };
389 389
390 } // end of namespace ARM32 390 } // end of namespace ARM32
391 } // end of namespace Ice 391 } // end of namespace Ice
392 392
393 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 393 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698