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

Side by Side Diff: src/IceAssembler.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 | « no previous file | src/IceAssembler.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/IceAssembler.h - Integrated assembler --------*- C++ -*-===// 1 //===- subzero/src/IceAssembler.h - Integrated assembler --------*- C++ -*-===//
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 // 5 //
6 // Modified by the Subzero authors. 6 // Modified by the Subzero authors.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // The Subzero Code Generator 10 // The Subzero Code Generator
11 // 11 //
12 // This file is distributed under the University of Illinois Open Source 12 // This file is distributed under the University of Illinois Open Source
13 // License. See LICENSE.TXT for details. 13 // License. See LICENSE.TXT for details.
14 // 14 //
15 //===----------------------------------------------------------------------===// 15 //===----------------------------------------------------------------------===//
16 /// 16 ///
17 /// \file 17 /// \file
18 /// This file declares the Assembler base class. Instructions are assembled by 18 /// \brief Declares the Assembler base class.
19 /// architecture-specific assemblers that derive from this base class. This base 19 ///
20 /// class manages buffers and fixups for emitting code, etc. 20 /// Instructions are assembled by architecture-specific assemblers that derive
21 /// from this base class. This base class manages buffers and fixups for
22 /// emitting code, etc.
21 /// 23 ///
22 //===----------------------------------------------------------------------===// 24 //===----------------------------------------------------------------------===//
23 25
24 #ifndef SUBZERO_SRC_ICEASSEMBLER_H 26 #ifndef SUBZERO_SRC_ICEASSEMBLER_H
25 #define SUBZERO_SRC_ICEASSEMBLER_H 27 #define SUBZERO_SRC_ICEASSEMBLER_H
26 28
27 #include "IceDefs.h" 29 #include "IceDefs.h"
28 #include "IceFixups.h" 30 #include "IceFixups.h"
29 #include "IceUtils.h" 31 #include "IceUtils.h"
30 32
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 protected: 350 protected:
349 // Buffer's constructor uses the Allocator, so it needs to appear after it. 351 // Buffer's constructor uses the Allocator, so it needs to appear after it.
350 // TODO(jpp): dependencies on construction order are a nice way of shooting 352 // TODO(jpp): dependencies on construction order are a nice way of shooting
351 // yourself in the foot. Fix this. 353 // yourself in the foot. Fix this.
352 AssemblerBuffer Buffer; 354 AssemblerBuffer Buffer;
353 }; 355 };
354 356
355 } // end of namespace Ice 357 } // end of namespace Ice
356 358
357 #endif // SUBZERO_SRC_ICEASSEMBLER_H_ 359 #endif // SUBZERO_SRC_ICEASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/IceAssembler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698