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

Unified Diff: src/IceConverter.h

Issue 1216963007: Doxygenize the documentation comments (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase to master 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceConditionCodesX8664.h ('k') | src/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConverter.h
diff --git a/src/IceConverter.h b/src/IceConverter.h
index 84389d3b653f3848191099d284b776a53612acd2..f2dbb3a5e627371c3bf9a399c32315b93c2f37a3 100644
--- a/src/IceConverter.h
+++ b/src/IceConverter.h
@@ -6,9 +6,10 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
-//
-// This file declares the LLVM to ICE converter.
-//
+///
+/// \file
+/// This file declares the LLVM to ICE converter.
+///
//===----------------------------------------------------------------------===//
#ifndef SUBZERO_SRC_ICECONVERTER_H
@@ -41,8 +42,8 @@ public:
llvm::Module *getModule() const { return Mod; }
- // Returns the global declaration associated with the corresponding
- // global value V. If no such global address, generates fatal error.
+ /// Returns the global declaration associated with the corresponding
+ /// global value V. If no such global address, generates fatal error.
GlobalDeclaration *getGlobalDeclaration(const llvm::GlobalValue *V);
private:
@@ -51,22 +52,22 @@ private:
GlobalDeclarationMapType;
GlobalDeclarationMapType GlobalDeclarationMap;
- // Walks module and generates names for unnamed globals using prefix
- // getFlags().DefaultGlobalPrefix, if the prefix is non-empty.
+ /// Walks module and generates names for unnamed globals using prefix
+ /// getFlags().DefaultGlobalPrefix, if the prefix is non-empty.
void nameUnnamedGlobalVariables(llvm::Module *Mod);
- // Walks module and generates names for unnamed functions using
- // prefix getFlags().DefaultFunctionPrefix, if the prefix is
- // non-empty.
+ /// Walks module and generates names for unnamed functions using
+ /// prefix getFlags().DefaultFunctionPrefix, if the prefix is
+ /// non-empty.
void nameUnnamedFunctions(llvm::Module *Mod);
- // Converts functions to ICE, and then machine code.
+ /// Converts functions to ICE, and then machine code.
void convertFunctions();
- // Converts globals to ICE, and then machine code.
+ /// Converts globals to ICE, and then machine code.
void convertGlobals(llvm::Module *Mod);
- // Installs global declarations into GlobalDeclarationMap.
+ /// Installs global declarations into GlobalDeclarationMap.
void installGlobalDeclarations(llvm::Module *Mod);
};
« no previous file with comments | « src/IceConditionCodesX8664.h ('k') | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698