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

Side by Side Diff: src/IceInstX86Base.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/IceInstX8664.cpp ('k') | src/IceInstX86BaseImpl.h » ('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/IceInstX86Base.h - Generic x86 instructions -*- C++ -*--===// 1 //===- subzero/src/IceInstX86Base.h - Generic x86 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 /// This file defines the InstX86Base template class, as well as the generic X86 11 /// \brief This file defines the InstX86Base template class, as well as the
12 /// Instruction class hierarchy. Only X86 instructions common across all/most 12 /// generic X86 Instruction class hierarchy.
13 /// X86 targets should be defined here, with target-specific instructions 13 ///
14 /// declared in the target's traits. 14 /// Only X86 instructions common across all/most X86 targets should be defined
15 /// here, with target-specific instructions declared in the target's traits.
15 /// 16 ///
16 //===----------------------------------------------------------------------===// 17 //===----------------------------------------------------------------------===//
17 18
18 #ifndef SUBZERO_SRC_ICEINSTX86BASE_H 19 #ifndef SUBZERO_SRC_ICEINSTX86BASE_H
19 #define SUBZERO_SRC_ICEINSTX86BASE_H 20 #define SUBZERO_SRC_ICEINSTX86BASE_H
20 21
21 #include "IceDefs.h" 22 #include "IceDefs.h"
22 #include "IceInst.h" 23 #include "IceInst.h"
23 #include "IceOperand.h" 24 #include "IceOperand.h"
24 25
(...skipping 3190 matching lines...) Expand 10 before | Expand all | Expand 10 after
3215 &InstX86Base<Machine>::Traits::Assembler::psrl}; \ 3216 &InstX86Base<Machine>::Traits::Assembler::psrl}; \
3216 } \ 3217 } \
3217 } 3218 }
3218 3219
3219 } // end of namespace X86Internal 3220 } // end of namespace X86Internal
3220 } // end of namespace Ice 3221 } // end of namespace Ice
3221 3222
3222 #include "IceInstX86BaseImpl.h" 3223 #include "IceInstX86BaseImpl.h"
3223 3224
3224 #endif // SUBZERO_SRC_ICEINSTX86BASE_H 3225 #endif // SUBZERO_SRC_ICEINSTX86BASE_H
OLDNEW
« no previous file with comments | « src/IceInstX8664.cpp ('k') | src/IceInstX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698