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

Side by Side Diff: src/IceTargetLowering.cpp

Issue 620373004: Subzero: Add a few performance measurement tools. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Minor fixes Created 6 years, 2 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/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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 Context.advanceCur(); 223 Context.advanceCur();
224 Context.advanceNext(); 224 Context.advanceNext();
225 } 225 }
226 226
227 // Drives register allocation, allowing all physical registers (except 227 // Drives register allocation, allowing all physical registers (except
228 // perhaps for the frame pointer) to be allocated. This set of 228 // perhaps for the frame pointer) to be allocated. This set of
229 // registers could potentially be parameterized if we want to restrict 229 // registers could potentially be parameterized if we want to restrict
230 // registers e.g. for performance testing. 230 // registers e.g. for performance testing.
231 void TargetLowering::regAlloc() { 231 void TargetLowering::regAlloc() {
232 static TimerIdT IDregAlloc = GlobalContext::getTimerID("regAlloc"); 232 static TimerIdT IDregAlloc = GlobalContext::getTimerID("regAlloc");
233 TimerMarker T(IDregAlloc, Ctx); 233 TimerMarker T(IDregAlloc, Func);
234 LinearScan LinearScan(Func); 234 LinearScan LinearScan(Func);
235 RegSetMask RegInclude = RegSet_None; 235 RegSetMask RegInclude = RegSet_None;
236 RegSetMask RegExclude = RegSet_None; 236 RegSetMask RegExclude = RegSet_None;
237 RegInclude |= RegSet_CallerSave; 237 RegInclude |= RegSet_CallerSave;
238 RegInclude |= RegSet_CalleeSave; 238 RegInclude |= RegSet_CalleeSave;
239 if (hasFramePointer()) 239 if (hasFramePointer())
240 RegExclude |= RegSet_FramePointer; 240 RegExclude |= RegSet_FramePointer;
241 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude); 241 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude);
242 LinearScan.scan(RegMask); 242 LinearScan.scan(RegMask);
243 } 243 }
(...skipping 13 matching lines...) Expand all
257 if (Target == Target_ARM64) 257 if (Target == Target_ARM64)
258 return IceTargetGlobalInitARM64::create(Ctx); 258 return IceTargetGlobalInitARM64::create(Ctx);
259 #endif 259 #endif
260 llvm_unreachable("Unsupported target"); 260 llvm_unreachable("Unsupported target");
261 return NULL; 261 return NULL;
262 } 262 }
263 263
264 TargetGlobalInitLowering::~TargetGlobalInitLowering() {} 264 TargetGlobalInitLowering::~TargetGlobalInitLowering() {}
265 265
266 } // end of namespace Ice 266 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698