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

Side by Side Diff: src/IceTargetLoweringX8632.cpp

Issue 1216963007: Doxygenize the documentation comments (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix the comment reflow Created 5 years, 5 months 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/IceTargetLoweringX8632.cpp - x86-32 lowering -----------===// 1 //===- subzero/src/IceTargetLoweringX8632.cpp - x86-32 lowering -----------===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 //===----------------------------------------------------------------------===// 5 //===----------------------------------------------------------------------===//
6 // 6 ///
7 // This file implements the TargetLoweringX8632 class, which 7 /// \file
8 // consists almost entirely of the lowering sequence for each 8 /// This file implements the TargetLoweringX8632 class, which
9 // high-level instruction. 9 /// consists almost entirely of the lowering sequence for each
10 // 10 /// high-level instruction.
11 ///
11 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===//
12 13
13 #include "IceTargetLoweringX8632.h" 14 #include "IceTargetLoweringX8632.h"
14 15
15 #include "IceTargetLoweringX86Base.h" 16 #include "IceTargetLoweringX86Base.h"
16 17
17 namespace Ice { 18 namespace Ice {
18 namespace X86Internal { 19 namespace X86Internal {
19 template <> struct MachineTraits<TargetX8632> { 20 template <> struct MachineTraits<TargetX8632> {
20 using InstructionSet = TargetX8632::X86InstructionSet; 21 using InstructionSet = TargetX8632::X86InstructionSet;
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 // entries in case the high-level table has extra entries. 424 // entries in case the high-level table has extra entries.
424 #define X(tag, size, align, elts, elty, str) \ 425 #define X(tag, size, align, elts, elty, str) \
425 static_assert(_table1_##tag == _table2_##tag, \ 426 static_assert(_table1_##tag == _table2_##tag, \
426 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE"); 427 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE");
427 ICETYPE_TABLE 428 ICETYPE_TABLE
428 #undef X 429 #undef X
429 } // end of namespace dummy3 430 } // end of namespace dummy3
430 } // end of anonymous namespace 431 } // end of anonymous namespace
431 432
432 } // end of namespace Ice 433 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698