blob: f8b1bc76eb8bb3b9a86b86dd4ab48f340c4d0a32 [file] [log] [blame]
Dan Gohman343f0c02008-11-19 23:18:57 +00001//===---- ScheduleDAGEmit.cpp - Emit routines for the ScheduleDAG class ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements the Emit routines for the ScheduleDAG class, which creates
11// MachineInstrs according to the computed schedule.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "pre-RA-sched"
16#include "llvm/CodeGen/ScheduleDAG.h"
17#include "llvm/CodeGen/MachineConstantPool.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineInstrBuilder.h"
20#include "llvm/CodeGen/MachineRegisterInfo.h"
21#include "llvm/Target/TargetData.h"
22#include "llvm/Target/TargetMachine.h"
23#include "llvm/Target/TargetInstrInfo.h"
24#include "llvm/Target/TargetLowering.h"
25#include "llvm/ADT/Statistic.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/MathExtras.h"
29using namespace llvm;
30
Dan Gohman343f0c02008-11-19 23:18:57 +000031void ScheduleDAG::EmitNoop() {
Dan Gohman47ac0f02009-02-11 04:27:20 +000032 TII->insertNoop(*BB, InsertPos);
Dan Gohman343f0c02008-11-19 23:18:57 +000033}
34
Evan Chengc29a56d2009-01-12 03:19:55 +000035void ScheduleDAG::EmitPhysRegCopy(SUnit *SU,
Dan Gohman343f0c02008-11-19 23:18:57 +000036 DenseMap<SUnit*, unsigned> &VRBaseMap) {
37 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
38 I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +000039 if (I->isCtrl()) continue; // ignore chain preds
40 if (I->getSUnit()->CopyDstRC) {
Dan Gohman343f0c02008-11-19 23:18:57 +000041 // Copy to physical register.
Dan Gohman54e4c362008-12-09 22:54:47 +000042 DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->getSUnit());
Dan Gohman343f0c02008-11-19 23:18:57 +000043 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
44 // Find the destination physical register.
45 unsigned Reg = 0;
46 for (SUnit::const_succ_iterator II = SU->Succs.begin(),
47 EE = SU->Succs.end(); II != EE; ++II) {
Evan Chengb2627992011-07-06 19:45:42 +000048 if (II->isCtrl()) continue; // ignore chain preds
Evan Chengc29a56d2009-01-12 03:19:55 +000049 if (II->getReg()) {
50 Reg = II->getReg();
Dan Gohman343f0c02008-11-19 23:18:57 +000051 break;
52 }
53 }
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +000054 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), Reg)
55 .addReg(VRI->second);
Dan Gohman343f0c02008-11-19 23:18:57 +000056 } else {
57 // Copy from physical register.
Dan Gohman54e4c362008-12-09 22:54:47 +000058 assert(I->getReg() && "Unknown physical register!");
Dan Gohman343f0c02008-11-19 23:18:57 +000059 unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
60 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +000061 (void)isNew; // Silence compiler warning.
Dan Gohman343f0c02008-11-19 23:18:57 +000062 assert(isNew && "Node emitted out of order - early");
Jakob Stoklund Olesen92c1f722010-07-10 19:08:25 +000063 BuildMI(*BB, InsertPos, DebugLoc(), TII->get(TargetOpcode::COPY), VRBase)
64 .addReg(I->getReg());
Dan Gohman343f0c02008-11-19 23:18:57 +000065 }
66 break;
67 }
68}