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

Side by Side Diff: src/IceTargetLowering.cpp

Issue 720343003: Subzero: Simplify the FakeKill instruction. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove the Nonpoints code in LiveRange Created 6 years, 1 month 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/IceTargetLowering.cpp - Basic lowering implementation --===// 1 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===//
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 implements the skeleton of the TargetLowering class, 10 // This file implements the skeleton of the TargetLowering class,
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 // registers e.g. for performance testing. 227 // registers e.g. for performance testing.
228 void TargetLowering::regAlloc() { 228 void TargetLowering::regAlloc() {
229 TimerMarker T(TimerStack::TT_regAlloc, Func); 229 TimerMarker T(TimerStack::TT_regAlloc, Func);
230 LinearScan LinearScan(Func); 230 LinearScan LinearScan(Func);
231 RegSetMask RegInclude = RegSet_None; 231 RegSetMask RegInclude = RegSet_None;
232 RegSetMask RegExclude = RegSet_None; 232 RegSetMask RegExclude = RegSet_None;
233 RegInclude |= RegSet_CallerSave; 233 RegInclude |= RegSet_CallerSave;
234 RegInclude |= RegSet_CalleeSave; 234 RegInclude |= RegSet_CalleeSave;
235 if (hasFramePointer()) 235 if (hasFramePointer())
236 RegExclude |= RegSet_FramePointer; 236 RegExclude |= RegSet_FramePointer;
237 LinearScan.initForGlobalAlloc();
237 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude); 238 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude);
238 LinearScan.scan(RegMask); 239 LinearScan.scan(RegMask);
239 } 240 }
240 241
241 TargetGlobalInitLowering * 242 TargetGlobalInitLowering *
242 TargetGlobalInitLowering::createLowering(TargetArch Target, 243 TargetGlobalInitLowering::createLowering(TargetArch Target,
243 GlobalContext *Ctx) { 244 GlobalContext *Ctx) {
244 // These statements can be #ifdef'd to specialize the code generator 245 // These statements can be #ifdef'd to specialize the code generator
245 // to a subset of the available targets. TODO: use CRTP. 246 // to a subset of the available targets. TODO: use CRTP.
246 if (Target == Target_X8632) 247 if (Target == Target_X8632)
247 return TargetGlobalInitX8632::create(Ctx); 248 return TargetGlobalInitX8632::create(Ctx);
248 #if 0 249 #if 0
249 if (Target == Target_X8664) 250 if (Target == Target_X8664)
250 return IceTargetGlobalInitX8664::create(Ctx); 251 return IceTargetGlobalInitX8664::create(Ctx);
251 if (Target == Target_ARM32) 252 if (Target == Target_ARM32)
252 return IceTargetGlobalInitARM32::create(Ctx); 253 return IceTargetGlobalInitARM32::create(Ctx);
253 if (Target == Target_ARM64) 254 if (Target == Target_ARM64)
254 return IceTargetGlobalInitARM64::create(Ctx); 255 return IceTargetGlobalInitARM64::create(Ctx);
255 #endif 256 #endif
256 llvm_unreachable("Unsupported target"); 257 llvm_unreachable("Unsupported target");
257 return NULL; 258 return NULL;
258 } 259 }
259 260
260 TargetGlobalInitLowering::~TargetGlobalInitLowering() {} 261 TargetGlobalInitLowering::~TargetGlobalInitLowering() {}
261 262
262 } // end of namespace Ice 263 } // end of namespace Ice
OLDNEW
« src/IceRegAlloc.cpp ('K') | « src/IceRegAlloc.cpp ('k') | src/IceTargetLoweringX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698