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

Side by Side Diff: src/IceTargetLowering.cpp

Issue 1395693005: Subzero: Implement "second-chance bin-packing" for register allocation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change the internal flag name. Fix a broken MINIMAL=1 test. Created 5 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
« no previous file with comments | « src/IceRegAlloc.cpp ('k') | tests_lit/assembler/arm32/ret.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /// \file 10 /// \file
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // performance testing. 260 // performance testing.
261 void TargetLowering::regAlloc(RegAllocKind Kind) { 261 void TargetLowering::regAlloc(RegAllocKind Kind) {
262 TimerMarker T(TimerStack::TT_regAlloc, Func); 262 TimerMarker T(TimerStack::TT_regAlloc, Func);
263 LinearScan LinearScan(Func); 263 LinearScan LinearScan(Func);
264 RegSetMask RegInclude = RegSet_None; 264 RegSetMask RegInclude = RegSet_None;
265 RegSetMask RegExclude = RegSet_None; 265 RegSetMask RegExclude = RegSet_None;
266 RegInclude |= RegSet_CallerSave; 266 RegInclude |= RegSet_CallerSave;
267 RegInclude |= RegSet_CalleeSave; 267 RegInclude |= RegSet_CalleeSave;
268 if (hasFramePointer()) 268 if (hasFramePointer())
269 RegExclude |= RegSet_FramePointer; 269 RegExclude |= RegSet_FramePointer;
270 LinearScan.init(Kind);
271 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude); 270 llvm::SmallBitVector RegMask = getRegisterSet(RegInclude, RegExclude);
272 LinearScan.scan(RegMask, Ctx->getFlags().shouldRandomizeRegAlloc()); 271 bool Repeat = (Kind == RAK_Global && Ctx->getFlags().shouldRepeatRegAlloc());
272 do {
273 LinearScan.init(Kind);
274 LinearScan.scan(RegMask, Ctx->getFlags().shouldRandomizeRegAlloc());
275 if (!LinearScan.hasEvictions())
276 Repeat = false;
277 Kind = RAK_SecondChance;
278 } while (Repeat);
273 } 279 }
274 280
275 void TargetLowering::markRedefinitions() { 281 void TargetLowering::markRedefinitions() {
276 // Find (non-SSA) instructions where the Dest variable appears in some source 282 // Find (non-SSA) instructions where the Dest variable appears in some source
277 // operand, and set the IsDestRedefined flag to keep liveness analysis 283 // operand, and set the IsDestRedefined flag to keep liveness analysis
278 // consistent. 284 // consistent.
279 for (auto Inst = Context.getCur(), E = Context.getNext(); Inst != E; ++Inst) { 285 for (auto Inst = Context.getCur(), E = Context.getNext(); Inst != E; ++Inst) {
280 if (Inst->isDeleted()) 286 if (Inst->isDeleted())
281 continue; 287 continue;
282 Variable *Dest = Inst->getDest(); 288 Variable *Dest = Inst->getDest();
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 if (Target == Target_##X) \ 626 if (Target == Target_##X) \
621 return TargetHeader##X::create(Ctx); 627 return TargetHeader##X::create(Ctx);
622 #include "llvm/Config/SZTargets.def" 628 #include "llvm/Config/SZTargets.def"
623 629
624 llvm::report_fatal_error("Unsupported target header lowering"); 630 llvm::report_fatal_error("Unsupported target header lowering");
625 } 631 }
626 632
627 TargetHeaderLowering::~TargetHeaderLowering() = default; 633 TargetHeaderLowering::~TargetHeaderLowering() = default;
628 634
629 } // end of namespace Ice 635 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceRegAlloc.cpp ('k') | tests_lit/assembler/arm32/ret.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698