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

Side by Side Diff: src/IceAssemblerARM32.h

Issue 1488913002: fix doxygen brief in subzero header files (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make changes suggested by stichnot. 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 | « 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 //
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 Declares the Assembler class for ARM32.
20 /// 20 ///
21 /// Note: All references to ARM "section" documentation refers to the "ARM 21 /// Note: All references to ARM "section" documentation refers to the "ARM
22 /// Architecture Reference Manual, ARMv7-A and ARMv7-R edition". See: 22 /// Architecture Reference Manual, ARMv7-A and ARMv7-R edition". See:
23 /// http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0406c 23 /// http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0406c
24 /// 24 ///
25 //===----------------------------------------------------------------------===// 25 //===----------------------------------------------------------------------===//
26 26
27 #ifndef SUBZERO_SRC_ICEASSEMBLERARM32_H 27 #ifndef SUBZERO_SRC_ICEASSEMBLERARM32_H
28 #define SUBZERO_SRC_ICEASSEMBLERARM32_H 28 #define SUBZERO_SRC_ICEASSEMBLERARM32_H
29 29
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and 392 // cccc=Cond, xxxxxxx<<21=Opcode, dddd=Rd, s=SetFlags, and
393 // iiiiiiiiiiiiiiii=Imm16. 393 // iiiiiiiiiiiiiiii=Imm16.
394 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags, 394 void emitMovw(IValueT Opcode, IValueT Rd, IValueT Imm16, bool SetFlags,
395 CondARM32::Cond Cond); 395 CondARM32::Cond Cond);
396 }; 396 };
397 397
398 } // end of namespace ARM32 398 } // end of namespace ARM32
399 } // end of namespace Ice 399 } // end of namespace Ice
400 400
401 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H 401 #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