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

Side by Side Diff: src/llvm2ice.cpp

Issue 574133002: Add initial integrated assembler w/ some Xmm ops. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: more cleanup Created 6 years, 3 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/llvm2ice.cpp - Driver for testing ----------------------===// 1 //===- subzero/src/llvm2ice.cpp - Driver for testing ----------------------===//
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 defines a driver that uses LLVM capabilities to parse a 10 // This file defines a driver that uses LLVM capabilities to parse a
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 static cl::opt<std::string> 122 static cl::opt<std::string>
123 DefaultFunctionPrefix("default-function-prefix", 123 DefaultFunctionPrefix("default-function-prefix",
124 cl::desc("Define default function prefix for naming " 124 cl::desc("Define default function prefix for naming "
125 "unnamed functions"), 125 "unnamed functions"),
126 cl::init("Function")); 126 cl::init("Function"));
127 127
128 static cl::opt<bool> 128 static cl::opt<bool>
129 BuildOnRead("build-on-read", 129 BuildOnRead("build-on-read",
130 cl::desc("Build ICE instructions when reading bitcode"), 130 cl::desc("Build ICE instructions when reading bitcode"),
131 cl::init(false)); 131 cl::init(false));
132 static cl::opt<bool>
133 UseIntegratedAssembler("integrated-as",
134 cl::desc("Use integrated assembler (default yes)"),
135 cl::init(true));
132 136
133 int main(int argc, char **argv) { 137 int main(int argc, char **argv) {
134 138
135 cl::ParseCommandLineOptions(argc, argv); 139 cl::ParseCommandLineOptions(argc, argv);
136 140
137 Ice::VerboseMask VMask = Ice::IceV_None; 141 Ice::VerboseMask VMask = Ice::IceV_None;
138 for (unsigned i = 0; i != VerboseList.size(); ++i) 142 for (unsigned i = 0; i != VerboseList.size(); ++i)
139 VMask |= VerboseList[i]; 143 VMask |= VerboseList[i];
140 144
141 std::ofstream Ofs; 145 std::ofstream Ofs;
142 if (OutputFilename != "-") { 146 if (OutputFilename != "-") {
143 Ofs.open(OutputFilename.c_str(), std::ofstream::out); 147 Ofs.open(OutputFilename.c_str(), std::ofstream::out);
144 } 148 }
145 raw_os_ostream *Os = 149 raw_os_ostream *Os =
146 new raw_os_ostream(OutputFilename == "-" ? std::cout : Ofs); 150 new raw_os_ostream(OutputFilename == "-" ? std::cout : Ofs);
147 Os->SetUnbuffered(); 151 Os->SetUnbuffered();
148 std::ofstream Lfs; 152 std::ofstream Lfs;
149 if (LogFilename != "-") { 153 if (LogFilename != "-") {
150 Lfs.open(LogFilename.c_str(), std::ofstream::out); 154 Lfs.open(LogFilename.c_str(), std::ofstream::out);
151 } 155 }
152 raw_os_ostream *Ls = new raw_os_ostream(LogFilename == "-" ? std::cout : Lfs); 156 raw_os_ostream *Ls = new raw_os_ostream(LogFilename == "-" ? std::cout : Lfs);
153 Ls->SetUnbuffered(); 157 Ls->SetUnbuffered();
154 158
155 Ice::ClFlags Flags; 159 Ice::ClFlags Flags;
156 Flags.DisableInternal = DisableInternal; 160 Flags.DisableInternal = DisableInternal;
157 Flags.SubzeroTimingEnabled = SubzeroTimingEnabled; 161 Flags.SubzeroTimingEnabled = SubzeroTimingEnabled;
158 Flags.DisableTranslation = DisableTranslation; 162 Flags.DisableTranslation = DisableTranslation;
159 Flags.DisableGlobals = DisableGlobals; 163 Flags.DisableGlobals = DisableGlobals;
160 Flags.FunctionSections = FunctionSections; 164 Flags.FunctionSections = FunctionSections;
165 Flags.UseIntegratedAssembler = UseIntegratedAssembler;
161 Flags.UseSandboxing = UseSandboxing; 166 Flags.UseSandboxing = UseSandboxing;
162 Flags.DumpStats = DumpStats; 167 Flags.DumpStats = DumpStats;
163 Flags.DefaultGlobalPrefix = DefaultGlobalPrefix; 168 Flags.DefaultGlobalPrefix = DefaultGlobalPrefix;
164 Flags.DefaultFunctionPrefix = DefaultFunctionPrefix; 169 Flags.DefaultFunctionPrefix = DefaultFunctionPrefix;
165 170
166 Ice::GlobalContext Ctx(Ls, Os, VMask, TargetArch, OptLevel, TestPrefix, 171 Ice::GlobalContext Ctx(Ls, Os, VMask, TargetArch, OptLevel, TestPrefix,
167 Flags); 172 Flags);
168 173
169 int ErrorStatus = 0; 174 int ErrorStatus = 0;
170 if (BuildOnRead) { 175 if (BuildOnRead) {
(...skipping 18 matching lines...) Expand all
189 } 194 }
190 195
191 Ice::Converter Converter(Mod, &Ctx, Flags); 196 Ice::Converter Converter(Mod, &Ctx, Flags);
192 Converter.convertToIce(); 197 Converter.convertToIce();
193 ErrorStatus = Converter.getErrorStatus(); 198 ErrorStatus = Converter.getErrorStatus();
194 } 199 }
195 const bool FinalStats = true; 200 const bool FinalStats = true;
196 Ctx.dumpStats("_FINAL_", FinalStats); 201 Ctx.dumpStats("_FINAL_", FinalStats);
197 return ErrorStatus; 202 return ErrorStatus;
198 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698