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

Side by Side Diff: src/IceTargetLoweringMIPS32.cpp

Issue 2148593003: [Subzero][MIPS32] Implement post lower legalizer for MIPS32 (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 5 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/IceTargetLoweringMIPS32.h ('k') | tests_lit/llvm2ice_tests/alloc.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 // 1 //
2 // The Subzero Code Generator 2 // The Subzero Code Generator
3 // 3 //
4 // This file is distributed under the University of Illinois Open Source 4 // This file is distributed under the University of Illinois Open Source
5 // License. See LICENSE.TXT for details. 5 // License. See LICENSE.TXT for details.
6 // 6 //
7 //===----------------------------------------------------------------------===// 7 //===----------------------------------------------------------------------===//
8 /// 8 ///
9 /// \file 9 /// \file
10 /// \brief Implements the TargetLoweringMIPS32 class, which consists almost 10 /// \brief Implements the TargetLoweringMIPS32 class, which consists almost
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 Func->advancedPhiLowering(); 288 Func->advancedPhiLowering();
289 Func->dump("After advanced Phi lowering"); 289 Func->dump("After advanced Phi lowering");
290 } 290 }
291 291
292 // Stack frame mapping. 292 // Stack frame mapping.
293 Func->genFrame(); 293 Func->genFrame();
294 if (Func->hasError()) 294 if (Func->hasError())
295 return; 295 return;
296 Func->dump("After stack frame mapping"); 296 Func->dump("After stack frame mapping");
297 297
298 postLowerLegalization();
299 if (Func->hasError())
300 return;
301 Func->dump("After postLowerLegalization");
302
298 Func->contractEmptyNodes(); 303 Func->contractEmptyNodes();
299 Func->reorderNodes(); 304 Func->reorderNodes();
300 305
301 // Branch optimization. This needs to be done just before code emission. In 306 // Branch optimization. This needs to be done just before code emission. In
302 // particular, no transformations that insert or reorder CfgNodes should be 307 // particular, no transformations that insert or reorder CfgNodes should be
303 // done after branch optimization. We go ahead and do it before nop insertion 308 // done after branch optimization. We go ahead and do it before nop insertion
304 // to reduce the amount of work needed for searching for opportunities. 309 // to reduce the amount of work needed for searching for opportunities.
305 Func->doBranchOpt(); 310 Func->doBranchOpt();
306 Func->dump("After branch optimization"); 311 Func->dump("After branch optimization");
307 312
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 } 987 }
983 } 988 }
984 989
985 if (TotalStackSizeBytes) { 990 if (TotalStackSizeBytes) {
986 _addiu(SP, SP, TotalStackSizeBytes); 991 _addiu(SP, SP, TotalStackSizeBytes);
987 } 992 }
988 993
989 return; 994 return;
990 } 995 }
991 996
997 Variable *TargetMIPS32::PostLoweringLegalizer::newBaseRegister(
998 Variable *Base, int32_t Offset, RegNumT ScratchRegNum) {
999 // Legalize will likely need a lui/ori combination, but if the top bits are
1000 // all 0 from negating the offset and subtracting, we could use that instead.
1001 const bool ShouldSub = Offset != 0 && (-Offset & 0xFFFF0000) == 0;
1002 Variable *ScratchReg = Target->makeReg(IceType_i32, ScratchRegNum);
1003 if (ShouldSub) {
1004 Variable *OffsetVal =
1005 Target->legalizeToReg(Target->Ctx->getConstantInt32(-Offset));
1006 Target->_sub(ScratchReg, Base, OffsetVal);
1007 } else {
1008 Target->_addiu(ScratchReg, Base, Offset);
1009 }
1010
1011 return ScratchReg;
1012 }
1013
1014 void TargetMIPS32::PostLoweringLegalizer::legalizeMov(InstMIPS32Mov *MovInstr) {
1015 Variable *Dest = MovInstr->getDest();
1016 assert(Dest != nullptr);
1017 Type DestTy = Dest->getType();
Jim Stichnoth 2016/07/14 00:34:45 const Type ...
sagar.thakur 2016/07/14 11:57:00 Done.
1018 assert(DestTy != IceType_i64);
Jim Stichnoth 2016/07/14 00:34:45 Also add "(void)DestTy;" to avoid a compiler warni
sagar.thakur 2016/07/14 11:57:00 Done.
1019
1020 Operand *Src = MovInstr->getSrc(0);
1021 Type SrcTy = Src->getType();
Jim Stichnoth 2016/07/14 00:34:45 const Type ...
sagar.thakur 2016/07/14 11:57:00 Done.
1022 (void)SrcTy;
1023 assert(SrcTy != IceType_i64);
1024
1025 if (MovInstr->isMultiDest() || MovInstr->isMultiSource())
1026 return;
1027
1028 bool Legalized = false;
1029 if (!Dest->hasReg()) {
1030 UnimplementedError(getFlags());
Jim Stichnoth 2016/07/14 00:34:45 Is this case (dest variable without a register) go
sagar.thakur 2016/07/14 11:57:00 Yes, this case is possible. I have structured the
1031 return;
1032 } else if (auto *Var = llvm::dyn_cast<Variable>(Src)) {
1033 if (Var->isRematerializable()) {
1034 // This is equivalent to an x86 _lea(RematOffset(%esp/%ebp), Variable).
1035
1036 // ExtraOffset is only needed for frame-pointer based frames as we have
1037 // to account for spill storage.
1038 const int32_t ExtraOffset = (Var->getRegNum() == Target->getFrameReg())
1039 ? Target->getFrameFixedAllocaOffset()
1040 : 0;
1041
1042 const int32_t Offset = Var->getStackOffset() + ExtraOffset;
1043 Variable *Base = Target->getPhysicalRegister(Var->getRegNum());
1044 Variable *T = newBaseRegister(Base, Offset, Dest->getRegNum());
1045 Target->_mov(Dest, T);
1046 Legalized = true;
1047 } else {
1048 if (!Var->hasReg()) {
1049 UnimplementedError(getFlags());
1050 return;
1051 }
1052 }
1053 }
1054
1055 if (Legalized) {
1056 if (MovInstr->isDestRedefined()) {
1057 Target->_set_dest_redefined();
1058 }
1059 MovInstr->setDeleted();
1060 }
1061 }
1062
1063 void TargetMIPS32::postLowerLegalization() {
1064 Func->dump("Before postLowerLegalization");
1065 assert(hasComputedFrame());
1066 for (CfgNode *Node : Func->getNodes()) {
1067 Context.init(Node);
1068 PostLoweringLegalizer Legalizer(this);
1069 while (!Context.atEnd()) {
1070 PostIncrLoweringContext PostIncrement(Context);
1071 Inst *CurInstr = iteratorToInst(Context.getCur());
1072
1073 // TODO(sagar.thakur): Add remaining cases of legalization.
1074
1075 if (auto *MovInstr = llvm::dyn_cast<InstMIPS32Mov>(CurInstr)) {
1076 Legalizer.legalizeMov(MovInstr);
1077 }
1078 }
1079 }
1080 }
1081
992 Operand *TargetMIPS32::loOperand(Operand *Operand) { 1082 Operand *TargetMIPS32::loOperand(Operand *Operand) {
993 assert(Operand->getType() == IceType_i64); 1083 assert(Operand->getType() == IceType_i64);
994 if (auto *Var64On32 = llvm::dyn_cast<Variable64On32>(Operand)) 1084 if (auto *Var64On32 = llvm::dyn_cast<Variable64On32>(Operand))
995 return Var64On32->getLo(); 1085 return Var64On32->getLo();
996 if (auto *Const = llvm::dyn_cast<ConstantInteger64>(Operand)) { 1086 if (auto *Const = llvm::dyn_cast<ConstantInteger64>(Operand)) {
997 return Ctx->getConstantInt32(static_cast<uint32_t>(Const->getValue())); 1087 return Ctx->getConstantInt32(static_cast<uint32_t>(Const->getValue()));
998 } 1088 }
999 if (auto *Mem = llvm::dyn_cast<OperandMIPS32Mem>(Operand)) { 1089 if (auto *Mem = llvm::dyn_cast<OperandMIPS32Mem>(Operand)) {
1000 // Conservatively disallow memory operands with side-effects (pre/post 1090 // Conservatively disallow memory operands with side-effects (pre/post
1001 // increment) in case of duplication. 1091 // increment) in case of duplication.
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 } 1500 }
1411 break; 1501 break;
1412 case InstArithmetic::Frem: 1502 case InstArithmetic::Frem:
1413 break; 1503 break;
1414 } 1504 }
1415 UnimplementedLoweringError(this, Instr); 1505 UnimplementedLoweringError(this, Instr);
1416 } 1506 }
1417 1507
1418 void TargetMIPS32::lowerAssign(const InstAssign *Instr) { 1508 void TargetMIPS32::lowerAssign(const InstAssign *Instr) {
1419 Variable *Dest = Instr->getDest(); 1509 Variable *Dest = Instr->getDest();
1510
1511 if (Dest->isRematerializable()) {
1512 Context.insert<InstFakeDef>(Dest);
1513 return;
1514 }
1515
1420 Operand *Src0 = Instr->getSrc(0); 1516 Operand *Src0 = Instr->getSrc(0);
1421 assert(Dest->getType() == Src0->getType()); 1517 assert(Dest->getType() == Src0->getType());
1422 if (Dest->getType() == IceType_i64) { 1518 if (Dest->getType() == IceType_i64) {
1423 Src0 = legalizeUndef(Src0); 1519 Src0 = legalizeUndef(Src0);
1424 Operand *Src0Lo = legalize(loOperand(Src0), Legal_Reg); 1520 Operand *Src0Lo = legalize(loOperand(Src0), Legal_Reg);
1425 Operand *Src0Hi = legalize(hiOperand(Src0), Legal_Reg); 1521 Operand *Src0Hi = legalize(hiOperand(Src0), Legal_Reg);
1426 auto *DestLo = llvm::cast<Variable>(loOperand(Dest)); 1522 auto *DestLo = llvm::cast<Variable>(loOperand(Dest));
1427 auto *DestHi = llvm::cast<Variable>(hiOperand(Dest)); 1523 auto *DestHi = llvm::cast<Variable>(hiOperand(Dest));
1428 // Variable *T_Lo = nullptr, *T_Hi = nullptr; 1524 // Variable *T_Lo = nullptr, *T_Hi = nullptr;
1429 auto *T_Lo = I32Reg(), *T_Hi = I32Reg(); 1525 auto *T_Lo = I32Reg(), *T_Hi = I32Reg();
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
2434 Str << "\t.set\t" 2530 Str << "\t.set\t"
2435 << "nomips16\n"; 2531 << "nomips16\n";
2436 } 2532 }
2437 2533
2438 SmallBitVector TargetMIPS32::TypeToRegisterSet[RCMIPS32_NUM]; 2534 SmallBitVector TargetMIPS32::TypeToRegisterSet[RCMIPS32_NUM];
2439 SmallBitVector TargetMIPS32::TypeToRegisterSetUnfiltered[RCMIPS32_NUM]; 2535 SmallBitVector TargetMIPS32::TypeToRegisterSetUnfiltered[RCMIPS32_NUM];
2440 SmallBitVector TargetMIPS32::RegisterAliases[RegMIPS32::Reg_NUM]; 2536 SmallBitVector TargetMIPS32::RegisterAliases[RegMIPS32::Reg_NUM];
2441 2537
2442 } // end of namespace MIPS32 2538 } // end of namespace MIPS32
2443 } // end of namespace Ice 2539 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLoweringMIPS32.h ('k') | tests_lit/llvm2ice_tests/alloc.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698