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

Side by Side Diff: src/IceInstX8632.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: 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
OLDNEW
1 //===- subzero/src/IceInstX8632.h - x86-32 machine instructions -*- C++ -*-===// 1 //===- subzero/src/IceInstX8632.h - x86-32 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 /// This file used to house all the X8632 instructions. Subzero has been 11 /// \brief Used to house all the X8632 instructions.
12 /// modified to use templates for X86 instructions, so all those definitions are 12 ///
13 /// Subzero has been modified to use templates for X86 instructions, so all thos e
Jim Stichnoth 2015/12/01 18:41:16 80-col
rkotlerimgtec 2015/12/02 01:32:48 Done.
14 /// definitions are
13 /// are in IceInstX86Base.h 15 /// are in IceInstX86Base.h
14 /// 16 ///
15 /// When interacting with the X8632 target (which should only happen in the 17 /// When interacting with the X8632 target (which should only happen in the
16 /// X8632 TargetLowering) clients have should use the Ice::X8632::Traits::Insts 18 /// X8632 TargetLowering) clients have should use the Ice::X8632::Traits::Insts
17 /// traits, which hides all the template verboseness behind a type alias. 19 /// traits, which hides all the template verboseness behind a type alias.
18 /// 20 ///
19 /// For example, to create an X8632 MOV Instruction, clients should do 21 /// For example, to create an X8632 MOV Instruction, clients should do
20 /// 22 ///
21 /// ::Ice::X8632::Traits::Insts::Mov::create 23 /// ::Ice::X8632::Traits::Insts::Mov::create
22 /// 24 ///
23 //===----------------------------------------------------------------------===// 25 //===----------------------------------------------------------------------===//
24 26
25 #ifndef SUBZERO_SRC_ICEINSTX8632_H 27 #ifndef SUBZERO_SRC_ICEINSTX8632_H
26 #define SUBZERO_SRC_ICEINSTX8632_H 28 #define SUBZERO_SRC_ICEINSTX8632_H
27 29
28 #include "IceDefs.h" 30 #include "IceDefs.h"
29 #include "IceInst.h" 31 #include "IceInst.h"
30 #include "IceInstX86Base.h" 32 #include "IceInstX86Base.h"
31 #include "IceOperand.h" 33 #include "IceOperand.h"
32 #include "IceTargetLoweringX8632Traits.h" 34 #include "IceTargetLoweringX8632Traits.h"
33 35
34 #endif // SUBZERO_SRC_ICEINSTX8632_H 36 #endif // SUBZERO_SRC_ICEINSTX8632_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698