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

Side by Side Diff: src/IceInstX8664.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/IceInstX8632.cpp ('k') | src/IceInstX8664.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/IceInstX8664.h - x86-64 machine instructions -*- C++ -*-===// 1 //===- subzero/src/IceInstX8664.h - x86-64 machine instructions -*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
11 /// (Note: x86 instructions are templates, and they are defined in 11 /// \brief (Note: x86 instructions are templates, and they are defined in
12 /// src/IceInstX86Base.) 12 /// src/IceInstX86Base.)
13 /// 13 ///
14 /// When interacting with the X8664 target (which should only happen in the 14 /// When interacting with the X8664 target (which should only happen in the
15 /// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts 15 /// X8664 TargetLowering) clients have should use the Ice::X8664::Traits::Insts
16 /// traits, which hides all the template verboseness behind a type alias. 16 /// traits, which hides all the template verboseness behind a type alias.
17 /// 17 ///
18 /// For example, to create an X8664 MOV Instruction, clients should do 18 /// For example, to create an X8664 MOV Instruction, clients should do
19 /// 19 ///
20 /// ::Ice::X8664::Traits::Insts::Mov::create 20 /// ::Ice::X8664::Traits::Insts::Mov::create
21 /// 21 ///
22 //===----------------------------------------------------------------------===// 22 //===----------------------------------------------------------------------===//
23 23
24 #ifndef SUBZERO_SRC_ICEINSTX8664_H 24 #ifndef SUBZERO_SRC_ICEINSTX8664_H
25 #define SUBZERO_SRC_ICEINSTX8664_H 25 #define SUBZERO_SRC_ICEINSTX8664_H
26 26
27 #include "IceDefs.h" 27 #include "IceDefs.h"
28 #include "IceInst.h" 28 #include "IceInst.h"
29 #include "IceInstX86Base.h" 29 #include "IceInstX86Base.h"
30 #include "IceOperand.h" 30 #include "IceOperand.h"
31 #include "IceTargetLoweringX8664Traits.h" 31 #include "IceTargetLoweringX8664Traits.h"
32 32
33 #endif // SUBZERO_SRC_ICEINSTX8664_H 33 #endif // SUBZERO_SRC_ICEINSTX8664_H
OLDNEW
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceInstX8664.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698