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

Side by Side Diff: src/IceClFlagsExtra.h

Issue 1147023007: Subzero: Basic Block Profiler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Adds Basic Block Profiling. Created 5 years, 6 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/IceClFlagsExtra.h - Extra Cl Flags -----------*- C++ -*-===// 1 //===- subzero/src/IceClFlagsExtra.h - Extra Cl Flags -----------*- 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 // This file declares command line flags primarily used for non-minimal builds. 10 // This file declares command line flags primarily used for non-minimal builds.
(...skipping 22 matching lines...) Expand all
33 void setAlwaysExitSuccess(bool NewValue) { AlwaysExitSuccess = NewValue; } 33 void setAlwaysExitSuccess(bool NewValue) { AlwaysExitSuccess = NewValue; }
34 34
35 bool getBuildOnRead() const { return BuildOnRead; } 35 bool getBuildOnRead() const { return BuildOnRead; }
36 void setBuildOnRead(bool NewValue) { BuildOnRead = NewValue; } 36 void setBuildOnRead(bool NewValue) { BuildOnRead = NewValue; }
37 37
38 bool getGenerateBuildAtts() const { return GenerateBuildAtts; } 38 bool getGenerateBuildAtts() const { return GenerateBuildAtts; }
39 void setGenerateBuildAtts(bool NewValue) { GenerateBuildAtts = NewValue; } 39 void setGenerateBuildAtts(bool NewValue) { GenerateBuildAtts = NewValue; }
40 40
41 bool getLLVMVerboseErrors() const { return LLVMVerboseErrors; } 41 bool getLLVMVerboseErrors() const { return LLVMVerboseErrors; }
42 void setLLVMVerboseErrors(bool NewValue) { LLVMVerboseErrors = NewValue; } 42 void setLLVMVerboseErrors(bool NewValue) { LLVMVerboseErrors = NewValue; }
43
Jim Stichnoth 2015/06/08 23:45:31 Restore blank line?
John 2015/06/09 15:36:18 Done.
44 llvm::NaClFileFormat getInputFileFormat() const { return InputFileFormat; } 43 llvm::NaClFileFormat getInputFileFormat() const { return InputFileFormat; }
45 void setInputFileFormat(llvm::NaClFileFormat NewValue) { 44 void setInputFileFormat(llvm::NaClFileFormat NewValue) {
46 InputFileFormat = NewValue; 45 InputFileFormat = NewValue;
47 } 46 }
48 47
49 const IceString &getAppName() const { return AppName; } 48 const IceString &getAppName() const { return AppName; }
50 void setAppName(const IceString &NewValue) { AppName = NewValue; } 49 void setAppName(const IceString &NewValue) { AppName = NewValue; }
51 50
52 const IceString &getIRFilename() const { return IRFilename; } 51 const IceString &getIRFilename() const { return IRFilename; }
53 void setIRFilename(const IceString &NewValue) { IRFilename = NewValue; } 52 void setIRFilename(const IceString &NewValue) { IRFilename = NewValue; }
(...skipping 16 matching lines...) Expand all
70 69
71 IceString AppName; 70 IceString AppName;
72 IceString IRFilename; 71 IceString IRFilename;
73 IceString LogFilename; 72 IceString LogFilename;
74 IceString OutputFilename; 73 IceString OutputFilename;
75 }; 74 };
76 75
77 } // end of namespace Ice 76 } // end of namespace Ice
78 77
79 #endif // SUBZERO_SRC_ICECLFLAGSEXTRA_H 78 #endif // SUBZERO_SRC_ICECLFLAGSEXTRA_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698