1 //===- InstructionCombining.cpp - Combine multiple instructions -----------===// 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 // InstructionCombining - Combine instructions to form fewer, simple 11 // instructions. This pass does not modify the CFG. This pass is where 12 // algebraic simplification happens. 13 // 14 // This pass combines things like: 15 // %Y = add i32 %X, 1 16 // %Z = add i32 %Y, 1 17 // into: 18 // %Z = add i32 %X, 2 19 // 20 // This is a simple worklist driven algorithm. 21 // 22 // This pass guarantees that the following canonicalizations are performed on 23 // the program: 24 // 1. If a binary operator has a constant operand, it is moved to the RHS 25 // 2. Bitwise operators with constant operands are always grouped so that 26 // shifts are performed first, then or's, then and's, then xor's. 27 // 3. Compare instructions are converted from <,>,<=,>= to ==,!= if possible 28 // 4. All cmp instructions on boolean values are replaced with logical ops 29 // 5. add X, X is represented as (X*2) => (X << 1) 30 // 6. Multiplies with a power-of-two constant argument are transformed into 31 // shifts. 32 // ... etc. 33 // 34 //===----------------------------------------------------------------------===// 35 36 #define DEBUG_TYPE "instcombine" 37 #include "llvm/Transforms/Scalar.h" 38 #include "InstCombine.h" 39 #include "llvm/IntrinsicInst.h" 40 #include "llvm/Analysis/ConstantFolding.h" 41 #include "llvm/Analysis/InstructionSimplify.h" 42 #include "llvm/Analysis/MemoryBuiltins.h" 43 #include "llvm/Target/TargetData.h" 44 #include "llvm/Target/TargetLibraryInfo.h" 45 #include "llvm/Transforms/Utils/Local.h" 46 #include "llvm/Support/CFG.h" 47 #include "llvm/Support/Debug.h" 48 #include "llvm/Support/GetElementPtrTypeIterator.h" 49 #include "llvm/Support/PatternMatch.h" 50 #include "llvm/Support/ValueHandle.h" 51 #include "llvm/ADT/SmallPtrSet.h" 52 #include "llvm/ADT/Statistic.h" 53 #include "llvm/ADT/StringSwitch.h" 54 #include "llvm-c/Initialization.h" 55 #include <algorithm> 56 #include <climits> 57 using namespace llvm; 58 using namespace llvm::PatternMatch; 59 60 STATISTIC(NumCombined , "Number of insts combined"); 61 STATISTIC(NumConstProp, "Number of constant folds"); 62 STATISTIC(NumDeadInst , "Number of dead inst eliminated"); 63 STATISTIC(NumSunkInst , "Number of instructions sunk"); 64 STATISTIC(NumExpand, "Number of expansions"); 65 STATISTIC(NumFactor , "Number of factorizations"); 66 STATISTIC(NumReassoc , "Number of reassociations"); 67 68 // Initialization Routines 69 void llvm::initializeInstCombine(PassRegistry &Registry) { 70 initializeInstCombinerPass(Registry); 71 } 72 73 void LLVMInitializeInstCombine(LLVMPassRegistryRef R) { 74 initializeInstCombine(*unwrap(R)); 75 } 76 77 char InstCombiner::ID = 0; 78 INITIALIZE_PASS_BEGIN(InstCombiner, "instcombine", 79 "Combine redundant instructions", false, false) 80 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo) 81 INITIALIZE_PASS_END(InstCombiner, "instcombine", 82 "Combine redundant instructions", false, false) 83 84 void InstCombiner::getAnalysisUsage(AnalysisUsage &AU) const { 85 AU.setPreservesCFG(); 86 AU.addRequired<TargetLibraryInfo>(); 87 } 88 89 90 Value *InstCombiner::EmitGEPOffset(User *GEP) { 91 return llvm::EmitGEPOffset(Builder, *getTargetData(), GEP); 92 } 93 94 /// ShouldChangeType - Return true if it is desirable to convert a computation 95 /// from 'From' to 'To'. We don't want to convert from a legal to an illegal 96 /// type for example, or from a smaller to a larger illegal type. 97 bool InstCombiner::ShouldChangeType(Type *From, Type *To) const { 98 assert(From->isIntegerTy() && To->isIntegerTy()); 99 100 // If we don't have TD, we don't know if the source/dest are legal. 101 if (!TD) return false; 102 103 unsigned FromWidth = From->getPrimitiveSizeInBits(); 104 unsigned ToWidth = To->getPrimitiveSizeInBits(); 105 bool FromLegal = TD->isLegalInteger(FromWidth); 106 bool ToLegal = TD->isLegalInteger(ToWidth); 107 108 // If this is a legal integer from type, and the result would be an illegal 109 // type, don't do the transformation. 110 if (FromLegal && !ToLegal) 111 return false; 112 113 // Otherwise, if both are illegal, do not increase the size of the result. We 114 // do allow things like i160 -> i64, but not i64 -> i160. 115 if (!FromLegal && !ToLegal && ToWidth > FromWidth) 116 return false; 117 118 return true; 119 } 120 121 // Return true, if No Signed Wrap should be maintained for I. 122 // The No Signed Wrap flag can be kept if the operation "B (I.getOpcode) C", 123 // where both B and C should be ConstantInts, results in a constant that does 124 // not overflow. This function only handles the Add and Sub opcodes. For 125 // all other opcodes, the function conservatively returns false. 126 static bool MaintainNoSignedWrap(BinaryOperator &I, Value *B, Value *C) { 127 OverflowingBinaryOperator *OBO = dyn_cast<OverflowingBinaryOperator>(&I); 128 if (!OBO || !OBO->hasNoSignedWrap()) { 129 return false; 130 } 131 132 // We reason about Add and Sub Only. 133 Instruction::BinaryOps Opcode = I.getOpcode(); 134 if (Opcode != Instruction::Add && 135 Opcode != Instruction::Sub) { 136 return false; 137 } 138 139 ConstantInt *CB = dyn_cast<ConstantInt>(B); 140 ConstantInt *CC = dyn_cast<ConstantInt>(C); 141 142 if (!CB || !CC) { 143 return false; 144 } 145 146 const APInt &BVal = CB->getValue(); 147 const APInt &CVal = CC->getValue(); 148 bool Overflow = false; 149 150 if (Opcode == Instruction::Add) { 151 BVal.sadd_ov(CVal, Overflow); 152 } else { 153 BVal.ssub_ov(CVal, Overflow); 154 } 155 156 return !Overflow; 157 } 158 159 /// SimplifyAssociativeOrCommutative - This performs a few simplifications for 160 /// operators which are associative or commutative: 161 // 162 // Commutative operators: 163 // 164 // 1. Order operands such that they are listed from right (least complex) to 165 // left (most complex). This puts constants before unary operators before 166 // binary operators. 167 // 168 // Associative operators: 169 // 170 // 2. Transform: "(A op B) op C" ==> "A op (B op C)" if "B op C" simplifies. 171 // 3. Transform: "A op (B op C)" ==> "(A op B) op C" if "A op B" simplifies. 172 // 173 // Associative and commutative operators: 174 // 175 // 4. Transform: "(A op B) op C" ==> "(C op A) op B" if "C op A" simplifies. 176 // 5. Transform: "A op (B op C)" ==> "B op (C op A)" if "C op A" simplifies. 177 // 6. Transform: "(A op C1) op (B op C2)" ==> "(A op B) op (C1 op C2)" 178 // if C1 and C2 are constants. 179 // 180 bool InstCombiner::SimplifyAssociativeOrCommutative(BinaryOperator &I) { 181 Instruction::BinaryOps Opcode = I.getOpcode(); 182 bool Changed = false; 183 184 do { 185 // Order operands such that they are listed from right (least complex) to 186 // left (most complex). This puts constants before unary operators before 187 // binary operators. 188 if (I.isCommutative() && getComplexity(I.getOperand(0)) < 189 getComplexity(I.getOperand(1))) 190 Changed = !I.swapOperands(); 191 192 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(I.getOperand(0)); 193 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(I.getOperand(1)); 194 195 if (I.isAssociative()) { 196 // Transform: "(A op B) op C" ==> "A op (B op C)" if "B op C" simplifies. 197 if (Op0 && Op0->getOpcode() == Opcode) { 198 Value *A = Op0->getOperand(0); 199 Value *B = Op0->getOperand(1); 200 Value *C = I.getOperand(1); 201 202 // Does "B op C" simplify? 203 if (Value *V = SimplifyBinOp(Opcode, B, C, TD)) { 204 // It simplifies to V. Form "A op V". 205 I.setOperand(0, A); 206 I.setOperand(1, V); 207 // Conservatively clear the optional flags, since they may not be 208 // preserved by the reassociation. 209 if (MaintainNoSignedWrap(I, B, C) && 210 (!Op0 || (isa<BinaryOperator>(Op0) && Op0->hasNoSignedWrap()))) { 211 // Note: this is only valid because SimplifyBinOp doesn't look at 212 // the operands to Op0. 213 I.clearSubclassOptionalData(); 214 I.setHasNoSignedWrap(true); 215 } else { 216 I.clearSubclassOptionalData(); 217 } 218 219 Changed = true; 220 ++NumReassoc; 221 continue; 222 } 223 } 224 225 // Transform: "A op (B op C)" ==> "(A op B) op C" if "A op B" simplifies. 226 if (Op1 && Op1->getOpcode() == Opcode) { 227 Value *A = I.getOperand(0); 228 Value *B = Op1->getOperand(0); 229 Value *C = Op1->getOperand(1); 230 231 // Does "A op B" simplify? 232 if (Value *V = SimplifyBinOp(Opcode, A, B, TD)) { 233 // It simplifies to V. Form "V op C". 234 I.setOperand(0, V); 235 I.setOperand(1, C); 236 // Conservatively clear the optional flags, since they may not be 237 // preserved by the reassociation. 238 I.clearSubclassOptionalData(); 239 Changed = true; 240 ++NumReassoc; 241 continue; 242 } 243 } 244 } 245 246 if (I.isAssociative() && I.isCommutative()) { 247 // Transform: "(A op B) op C" ==> "(C op A) op B" if "C op A" simplifies. 248 if (Op0 && Op0->getOpcode() == Opcode) { 249 Value *A = Op0->getOperand(0); 250 Value *B = Op0->getOperand(1); 251 Value *C = I.getOperand(1); 252 253 // Does "C op A" simplify? 254 if (Value *V = SimplifyBinOp(Opcode, C, A, TD)) { 255 // It simplifies to V. Form "V op B". 256 I.setOperand(0, V); 257 I.setOperand(1, B); 258 // Conservatively clear the optional flags, since they may not be 259 // preserved by the reassociation. 260 I.clearSubclassOptionalData(); 261 Changed = true; 262 ++NumReassoc; 263 continue; 264 } 265 } 266 267 // Transform: "A op (B op C)" ==> "B op (C op A)" if "C op A" simplifies. 268 if (Op1 && Op1->getOpcode() == Opcode) { 269 Value *A = I.getOperand(0); 270 Value *B = Op1->getOperand(0); 271 Value *C = Op1->getOperand(1); 272 273 // Does "C op A" simplify? 274 if (Value *V = SimplifyBinOp(Opcode, C, A, TD)) { 275 // It simplifies to V. Form "B op V". 276 I.setOperand(0, B); 277 I.setOperand(1, V); 278 // Conservatively clear the optional flags, since they may not be 279 // preserved by the reassociation. 280 I.clearSubclassOptionalData(); 281 Changed = true; 282 ++NumReassoc; 283 continue; 284 } 285 } 286 287 // Transform: "(A op C1) op (B op C2)" ==> "(A op B) op (C1 op C2)" 288 // if C1 and C2 are constants. 289 if (Op0 && Op1 && 290 Op0->getOpcode() == Opcode && Op1->getOpcode() == Opcode && 291 isa<Constant>(Op0->getOperand(1)) && 292 isa<Constant>(Op1->getOperand(1)) && 293 Op0->hasOneUse() && Op1->hasOneUse()) { 294 Value *A = Op0->getOperand(0); 295 Constant *C1 = cast<Constant>(Op0->getOperand(1)); 296 Value *B = Op1->getOperand(0); 297 Constant *C2 = cast<Constant>(Op1->getOperand(1)); 298 299 Constant *Folded = ConstantExpr::get(Opcode, C1, C2); 300 BinaryOperator *New = BinaryOperator::Create(Opcode, A, B); 301 InsertNewInstWith(New, I); 302 New->takeName(Op1); 303 I.setOperand(0, New); 304 I.setOperand(1, Folded); 305 // Conservatively clear the optional flags, since they may not be 306 // preserved by the reassociation. 307 I.clearSubclassOptionalData(); 308 309 Changed = true; 310 continue; 311 } 312 } 313 314 // No further simplifications. 315 return Changed; 316 } while (1); 317 } 318 319 /// LeftDistributesOverRight - Whether "X LOp (Y ROp Z)" is always equal to 320 /// "(X LOp Y) ROp (X LOp Z)". 321 static bool LeftDistributesOverRight(Instruction::BinaryOps LOp, 322 Instruction::BinaryOps ROp) { 323 switch (LOp) { 324 default: 325 return false; 326 327 case Instruction::And: 328 // And distributes over Or and Xor. 329 switch (ROp) { 330 default: 331 return false; 332 case Instruction::Or: 333 case Instruction::Xor: 334 return true; 335 } 336 337 case Instruction::Mul: 338 // Multiplication distributes over addition and subtraction. 339 switch (ROp) { 340 default: 341 return false; 342 case Instruction::Add: 343 case Instruction::Sub: 344 return true; 345 } 346 347 case Instruction::Or: 348 // Or distributes over And. 349 switch (ROp) { 350 default: 351 return false; 352 case Instruction::And: 353 return true; 354 } 355 } 356 } 357 358 /// RightDistributesOverLeft - Whether "(X LOp Y) ROp Z" is always equal to 359 /// "(X ROp Z) LOp (Y ROp Z)". 360 static bool RightDistributesOverLeft(Instruction::BinaryOps LOp, 361 Instruction::BinaryOps ROp) { 362 if (Instruction::isCommutative(ROp)) 363 return LeftDistributesOverRight(ROp, LOp); 364 // TODO: It would be nice to handle division, aka "(X + Y)/Z = X/Z + Y/Z", 365 // but this requires knowing that the addition does not overflow and other 366 // such subtleties. 367 return false; 368 } 369 370 /// SimplifyUsingDistributiveLaws - This tries to simplify binary operations 371 /// which some other binary operation distributes over either by factorizing 372 /// out common terms (eg "(A*B)+(A*C)" -> "A*(B+C)") or expanding out if this 373 /// results in simplifications (eg: "A & (B | C) -> (A&B) | (A&C)" if this is 374 /// a win). Returns the simplified value, or null if it didn't simplify. 375 Value *InstCombiner::SimplifyUsingDistributiveLaws(BinaryOperator &I) { 376 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1); 377 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS); 378 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS); 379 Instruction::BinaryOps TopLevelOpcode = I.getOpcode(); // op 380 381 // Factorization. 382 if (Op0 && Op1 && Op0->getOpcode() == Op1->getOpcode()) { 383 // The instruction has the form "(A op' B) op (C op' D)". Try to factorize 384 // a common term. 385 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1); 386 Value *C = Op1->getOperand(0), *D = Op1->getOperand(1); 387 Instruction::BinaryOps InnerOpcode = Op0->getOpcode(); // op' 388 389 // Does "X op' Y" always equal "Y op' X"? 390 bool InnerCommutative = Instruction::isCommutative(InnerOpcode); 391 392 // Does "X op' (Y op Z)" always equal "(X op' Y) op (X op' Z)"? 393 if (LeftDistributesOverRight(InnerOpcode, TopLevelOpcode)) 394 // Does the instruction have the form "(A op' B) op (A op' D)" or, in the 395 // commutative case, "(A op' B) op (C op' A)"? 396 if (A == C || (InnerCommutative && A == D)) { 397 if (A != C) 398 std::swap(C, D); 399 // Consider forming "A op' (B op D)". 400 // If "B op D" simplifies then it can be formed with no cost. 401 Value *V = SimplifyBinOp(TopLevelOpcode, B, D, TD); 402 // If "B op D" doesn't simplify then only go on if both of the existing 403 // operations "A op' B" and "C op' D" will be zapped as no longer used. 404 if (!V && Op0->hasOneUse() && Op1->hasOneUse()) 405 V = Builder->CreateBinOp(TopLevelOpcode, B, D, Op1->getName()); 406 if (V) { 407 ++NumFactor; 408 V = Builder->CreateBinOp(InnerOpcode, A, V); 409 V->takeName(&I); 410 return V; 411 } 412 } 413 414 // Does "(X op Y) op' Z" always equal "(X op' Z) op (Y op' Z)"? 415 if (RightDistributesOverLeft(TopLevelOpcode, InnerOpcode)) 416 // Does the instruction have the form "(A op' B) op (C op' B)" or, in the 417 // commutative case, "(A op' B) op (B op' D)"? 418 if (B == D || (InnerCommutative && B == C)) { 419 if (B != D) 420 std::swap(C, D); 421 // Consider forming "(A op C) op' B". 422 // If "A op C" simplifies then it can be formed with no cost. 423 Value *V = SimplifyBinOp(TopLevelOpcode, A, C, TD); 424 // If "A op C" doesn't simplify then only go on if both of the existing 425 // operations "A op' B" and "C op' D" will be zapped as no longer used. 426 if (!V && Op0->hasOneUse() && Op1->hasOneUse()) 427 V = Builder->CreateBinOp(TopLevelOpcode, A, C, Op0->getName()); 428 if (V) { 429 ++NumFactor; 430 V = Builder->CreateBinOp(InnerOpcode, V, B); 431 V->takeName(&I); 432 return V; 433 } 434 } 435 } 436 437 // Expansion. 438 if (Op0 && RightDistributesOverLeft(Op0->getOpcode(), TopLevelOpcode)) { 439 // The instruction has the form "(A op' B) op C". See if expanding it out 440 // to "(A op C) op' (B op C)" results in simplifications. 441 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS; 442 Instruction::BinaryOps InnerOpcode = Op0->getOpcode(); // op' 443 444 // Do "A op C" and "B op C" both simplify? 445 if (Value *L = SimplifyBinOp(TopLevelOpcode, A, C, TD)) 446 if (Value *R = SimplifyBinOp(TopLevelOpcode, B, C, TD)) { 447 // They do! Return "L op' R". 448 ++NumExpand; 449 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS. 450 if ((L == A && R == B) || 451 (Instruction::isCommutative(InnerOpcode) && L == B && R == A)) 452 return Op0; 453 // Otherwise return "L op' R" if it simplifies. 454 if (Value *V = SimplifyBinOp(InnerOpcode, L, R, TD)) 455 return V; 456 // Otherwise, create a new instruction. 457 C = Builder->CreateBinOp(InnerOpcode, L, R); 458 C->takeName(&I); 459 return C; 460 } 461 } 462 463 if (Op1 && LeftDistributesOverRight(TopLevelOpcode, Op1->getOpcode())) { 464 // The instruction has the form "A op (B op' C)". See if expanding it out 465 // to "(A op B) op' (A op C)" results in simplifications. 466 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1); 467 Instruction::BinaryOps InnerOpcode = Op1->getOpcode(); // op' 468 469 // Do "A op B" and "A op C" both simplify? 470 if (Value *L = SimplifyBinOp(TopLevelOpcode, A, B, TD)) 471 if (Value *R = SimplifyBinOp(TopLevelOpcode, A, C, TD)) { 472 // They do! Return "L op' R". 473 ++NumExpand; 474 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS. 475 if ((L == B && R == C) || 476 (Instruction::isCommutative(InnerOpcode) && L == C && R == B)) 477 return Op1; 478 // Otherwise return "L op' R" if it simplifies. 479 if (Value *V = SimplifyBinOp(InnerOpcode, L, R, TD)) 480 return V; 481 // Otherwise, create a new instruction. 482 A = Builder->CreateBinOp(InnerOpcode, L, R); 483 A->takeName(&I); 484 return A; 485 } 486 } 487 488 return 0; 489 } 490 491 // dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction 492 // if the LHS is a constant zero (which is the 'negate' form). 493 // 494 Value *InstCombiner::dyn_castNegVal(Value *V) const { 495 if (BinaryOperator::isNeg(V)) 496 return BinaryOperator::getNegArgument(V); 497 498 // Constants can be considered to be negated values if they can be folded. 499 if (ConstantInt *C = dyn_cast<ConstantInt>(V)) 500 return ConstantExpr::getNeg(C); 501 502 if (ConstantDataVector *C = dyn_cast<ConstantDataVector>(V)) 503 if (C->getType()->getElementType()->isIntegerTy()) 504 return ConstantExpr::getNeg(C); 505 506 return 0; 507 } 508 509 // dyn_castFNegVal - Given a 'fsub' instruction, return the RHS of the 510 // instruction if the LHS is a constant negative zero (which is the 'negate' 511 // form). 512 // 513 Value *InstCombiner::dyn_castFNegVal(Value *V) const { 514 if (BinaryOperator::isFNeg(V)) 515 return BinaryOperator::getFNegArgument(V); 516 517 // Constants can be considered to be negated values if they can be folded. 518 if (ConstantFP *C = dyn_cast<ConstantFP>(V)) 519 return ConstantExpr::getFNeg(C); 520 521 if (ConstantDataVector *C = dyn_cast<ConstantDataVector>(V)) 522 if (C->getType()->getElementType()->isFloatingPointTy()) 523 return ConstantExpr::getFNeg(C); 524 525 return 0; 526 } 527 528 static Value *FoldOperationIntoSelectOperand(Instruction &I, Value *SO, 529 InstCombiner *IC) { 530 if (CastInst *CI = dyn_cast<CastInst>(&I)) { 531 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType()); 532 } 533 534 // Figure out if the constant is the left or the right argument. 535 bool ConstIsRHS = isa<Constant>(I.getOperand(1)); 536 Constant *ConstOperand = cast<Constant>(I.getOperand(ConstIsRHS)); 537 538 if (Constant *SOC = dyn_cast<Constant>(SO)) { 539 if (ConstIsRHS) 540 return ConstantExpr::get(I.getOpcode(), SOC, ConstOperand); 541 return ConstantExpr::get(I.getOpcode(), ConstOperand, SOC); 542 } 543 544 Value *Op0 = SO, *Op1 = ConstOperand; 545 if (!ConstIsRHS) 546 std::swap(Op0, Op1); 547 548 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&I)) 549 return IC->Builder->CreateBinOp(BO->getOpcode(), Op0, Op1, 550 SO->getName()+".op"); 551 if (ICmpInst *CI = dyn_cast<ICmpInst>(&I)) 552 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1, 553 SO->getName()+".cmp"); 554 if (FCmpInst *CI = dyn_cast<FCmpInst>(&I)) 555 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1, 556 SO->getName()+".cmp"); 557 llvm_unreachable("Unknown binary instruction type!"); 558 } 559 560 // FoldOpIntoSelect - Given an instruction with a select as one operand and a 561 // constant as the other operand, try to fold the binary operator into the 562 // select arguments. This also works for Cast instructions, which obviously do 563 // not have a second operand. 564 Instruction *InstCombiner::FoldOpIntoSelect(Instruction &Op, SelectInst *SI) { 565 // Don't modify shared select instructions 566 if (!SI->hasOneUse()) return 0; 567 Value *TV = SI->getOperand(1); 568 Value *FV = SI->getOperand(2); 569 570 if (isa<Constant>(TV) || isa<Constant>(FV)) { 571 // Bool selects with constant operands can be folded to logical ops. 572 if (SI->getType()->isIntegerTy(1)) return 0; 573 574 // If it's a bitcast involving vectors, make sure it has the same number of 575 // elements on both sides. 576 if (BitCastInst *BC = dyn_cast<BitCastInst>(&Op)) { 577 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy()); 578 VectorType *SrcTy = dyn_cast<VectorType>(BC->getSrcTy()); 579 580 // Verify that either both or neither are vectors. 581 if ((SrcTy == NULL) != (DestTy == NULL)) return 0; 582 // If vectors, verify that they have the same number of elements. 583 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements()) 584 return 0; 585 } 586 587 Value *SelectTrueVal = FoldOperationIntoSelectOperand(Op, TV, this); 588 Value *SelectFalseVal = FoldOperationIntoSelectOperand(Op, FV, this); 589 590 return SelectInst::Create(SI->getCondition(), 591 SelectTrueVal, SelectFalseVal); 592 } 593 return 0; 594 } 595 596 597 /// FoldOpIntoPhi - Given a binary operator, cast instruction, or select which 598 /// has a PHI node as operand #0, see if we can fold the instruction into the 599 /// PHI (which is only possible if all operands to the PHI are constants). 600 /// 601 Instruction *InstCombiner::FoldOpIntoPhi(Instruction &I) { 602 PHINode *PN = cast<PHINode>(I.getOperand(0)); 603 unsigned NumPHIValues = PN->getNumIncomingValues(); 604 if (NumPHIValues == 0) 605 return 0; 606 607 // We normally only transform phis with a single use. However, if a PHI has 608 // multiple uses and they are all the same operation, we can fold *all* of the 609 // uses into the PHI. 610 if (!PN->hasOneUse()) { 611 // Walk the use list for the instruction, comparing them to I. 612 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); 613 UI != E; ++UI) { 614 Instruction *User = cast<Instruction>(*UI); 615 if (User != &I && !I.isIdenticalTo(User)) 616 return 0; 617 } 618 // Otherwise, we can replace *all* users with the new PHI we form. 619 } 620 621 // Check to see if all of the operands of the PHI are simple constants 622 // (constantint/constantfp/undef). If there is one non-constant value, 623 // remember the BB it is in. If there is more than one or if *it* is a PHI, 624 // bail out. We don't do arbitrary constant expressions here because moving 625 // their computation can be expensive without a cost model. 626 BasicBlock *NonConstBB = 0; 627 for (unsigned i = 0; i != NumPHIValues; ++i) { 628 Value *InVal = PN->getIncomingValue(i); 629 if (isa<Constant>(InVal) && !isa<ConstantExpr>(InVal)) 630 continue; 631 632 if (isa<PHINode>(InVal)) return 0; // Itself a phi. 633 if (NonConstBB) return 0; // More than one non-const value. 634 635 NonConstBB = PN->getIncomingBlock(i); 636 637 // If the InVal is an invoke at the end of the pred block, then we can't 638 // insert a computation after it without breaking the edge. 639 if (InvokeInst *II = dyn_cast<InvokeInst>(InVal)) 640 if (II->getParent() == NonConstBB) 641 return 0; 642 643 // If the incoming non-constant value is in I's block, we will remove one 644 // instruction, but insert another equivalent one, leading to infinite 645 // instcombine. 646 if (NonConstBB == I.getParent()) 647 return 0; 648 } 649 650 // If there is exactly one non-constant value, we can insert a copy of the 651 // operation in that block. However, if this is a critical edge, we would be 652 // inserting the computation one some other paths (e.g. inside a loop). Only 653 // do this if the pred block is unconditionally branching into the phi block. 654 if (NonConstBB != 0) { 655 BranchInst *BI = dyn_cast<BranchInst>(NonConstBB->getTerminator()); 656 if (!BI || !BI->isUnconditional()) return 0; 657 } 658 659 // Okay, we can do the transformation: create the new PHI node. 660 PHINode *NewPN = PHINode::Create(I.getType(), PN->getNumIncomingValues()); 661 InsertNewInstBefore(NewPN, *PN); 662 NewPN->takeName(PN); 663 664 // If we are going to have to insert a new computation, do so right before the 665 // predecessors terminator. 666 if (NonConstBB) 667 Builder->SetInsertPoint(NonConstBB->getTerminator()); 668 669 // Next, add all of the operands to the PHI. 670 if (SelectInst *SI = dyn_cast<SelectInst>(&I)) { 671 // We only currently try to fold the condition of a select when it is a phi, 672 // not the true/false values. 673 Value *TrueV = SI->getTrueValue(); 674 Value *FalseV = SI->getFalseValue(); 675 BasicBlock *PhiTransBB = PN->getParent(); 676 for (unsigned i = 0; i != NumPHIValues; ++i) { 677 BasicBlock *ThisBB = PN->getIncomingBlock(i); 678 Value *TrueVInPred = TrueV->DoPHITranslation(PhiTransBB, ThisBB); 679 Value *FalseVInPred = FalseV->DoPHITranslation(PhiTransBB, ThisBB); 680 Value *InV = 0; 681 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) 682 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred; 683 else 684 InV = Builder->CreateSelect(PN->getIncomingValue(i), 685 TrueVInPred, FalseVInPred, "phitmp"); 686 NewPN->addIncoming(InV, ThisBB); 687 } 688 } else if (CmpInst *CI = dyn_cast<CmpInst>(&I)) { 689 Constant *C = cast<Constant>(I.getOperand(1)); 690 for (unsigned i = 0; i != NumPHIValues; ++i) { 691 Value *InV = 0; 692 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) 693 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C); 694 else if (isa<ICmpInst>(CI)) 695 InV = Builder->CreateICmp(CI->getPredicate(), PN->getIncomingValue(i), 696 C, "phitmp"); 697 else 698 InV = Builder->CreateFCmp(CI->getPredicate(), PN->getIncomingValue(i), 699 C, "phitmp"); 700 NewPN->addIncoming(InV, PN->getIncomingBlock(i)); 701 } 702 } else if (I.getNumOperands() == 2) { 703 Constant *C = cast<Constant>(I.getOperand(1)); 704 for (unsigned i = 0; i != NumPHIValues; ++i) { 705 Value *InV = 0; 706 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) 707 InV = ConstantExpr::get(I.getOpcode(), InC, C); 708 else 709 InV = Builder->CreateBinOp(cast<BinaryOperator>(I).getOpcode(), 710 PN->getIncomingValue(i), C, "phitmp"); 711 NewPN->addIncoming(InV, PN->getIncomingBlock(i)); 712 } 713 } else { 714 CastInst *CI = cast<CastInst>(&I); 715 Type *RetTy = CI->getType(); 716 for (unsigned i = 0; i != NumPHIValues; ++i) { 717 Value *InV; 718 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) 719 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy); 720 else 721 InV = Builder->CreateCast(CI->getOpcode(), 722 PN->getIncomingValue(i), I.getType(), "phitmp"); 723 NewPN->addIncoming(InV, PN->getIncomingBlock(i)); 724 } 725 } 726 727 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); 728 UI != E; ) { 729 Instruction *User = cast<Instruction>(*UI++); 730 if (User == &I) continue; 731 ReplaceInstUsesWith(*User, NewPN); 732 EraseInstFromFunction(*User); 733 } 734 return ReplaceInstUsesWith(I, NewPN); 735 } 736 737 /// FindElementAtOffset - Given a type and a constant offset, determine whether 738 /// or not there is a sequence of GEP indices into the type that will land us at 739 /// the specified offset. If so, fill them into NewIndices and return the 740 /// resultant element type, otherwise return null. 741 Type *InstCombiner::FindElementAtOffset(Type *Ty, int64_t Offset, 742 SmallVectorImpl<Value*> &NewIndices) { 743 if (!TD) return 0; 744 if (!Ty->isSized()) return 0; 745 746 // Start with the index over the outer type. Note that the type size 747 // might be zero (even if the offset isn't zero) if the indexed type 748 // is something like [0 x {int, int}] 749 Type *IntPtrTy = TD->getIntPtrType(Ty->getContext()); 750 int64_t FirstIdx = 0; 751 if (int64_t TySize = TD->getTypeAllocSize(Ty)) { 752 FirstIdx = Offset/TySize; 753 Offset -= FirstIdx*TySize; 754 755 // Handle hosts where % returns negative instead of values [0..TySize). 756 if (Offset < 0) { 757 --FirstIdx; 758 Offset += TySize; 759 assert(Offset >= 0); 760 } 761 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset"); 762 } 763 764 NewIndices.push_back(ConstantInt::get(IntPtrTy, FirstIdx)); 765 766 // Index into the types. If we fail, set OrigBase to null. 767 while (Offset) { 768 // Indexing into tail padding between struct/array elements. 769 if (uint64_t(Offset*8) >= TD->getTypeSizeInBits(Ty)) 770 return 0; 771 772 if (StructType *STy = dyn_cast<StructType>(Ty)) { 773 const StructLayout *SL = TD->getStructLayout(STy); 774 assert(Offset < (int64_t)SL->getSizeInBytes() && 775 "Offset must stay within the indexed type"); 776 777 unsigned Elt = SL->getElementContainingOffset(Offset); 778 NewIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 779 Elt)); 780 781 Offset -= SL->getElementOffset(Elt); 782 Ty = STy->getElementType(Elt); 783 } else if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) { 784 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType()); 785 assert(EltSize && "Cannot index into a zero-sized array"); 786 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize)); 787 Offset %= EltSize; 788 Ty = AT->getElementType(); 789 } else { 790 // Otherwise, we can't index into the middle of this atomic type, bail. 791 return 0; 792 } 793 } 794 795 return Ty; 796 } 797 798 static bool shouldMergeGEPs(GEPOperator &GEP, GEPOperator &Src) { 799 // If this GEP has only 0 indices, it is the same pointer as 800 // Src. If Src is not a trivial GEP too, don't combine 801 // the indices. 802 if (GEP.hasAllZeroIndices() && !Src.hasAllZeroIndices() && 803 !Src.hasOneUse()) 804 return false; 805 return true; 806 } 807 808 Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) { 809 SmallVector<Value*, 8> Ops(GEP.op_begin(), GEP.op_end()); 810 811 if (Value *V = SimplifyGEPInst(Ops, TD)) 812 return ReplaceInstUsesWith(GEP, V); 813 814 Value *PtrOp = GEP.getOperand(0); 815 816 // Eliminate unneeded casts for indices, and replace indices which displace 817 // by multiples of a zero size type with zero. 818 if (TD) { 819 bool MadeChange = false; 820 Type *IntPtrTy = TD->getIntPtrType(GEP.getContext()); 821 822 gep_type_iterator GTI = gep_type_begin(GEP); 823 for (User::op_iterator I = GEP.op_begin() + 1, E = GEP.op_end(); 824 I != E; ++I, ++GTI) { 825 // Skip indices into struct types. 826 SequentialType *SeqTy = dyn_cast<SequentialType>(*GTI); 827 if (!SeqTy) continue; 828 829 // If the element type has zero size then any index over it is equivalent 830 // to an index of zero, so replace it with zero if it is not zero already. 831 if (SeqTy->getElementType()->isSized() && 832 TD->getTypeAllocSize(SeqTy->getElementType()) == 0) 833 if (!isa<Constant>(*I) || !cast<Constant>(*I)->isNullValue()) { 834 *I = Constant::getNullValue(IntPtrTy); 835 MadeChange = true; 836 } 837 838 Type *IndexTy = (*I)->getType(); 839 if (IndexTy != IntPtrTy && !IndexTy->isVectorTy()) { 840 // If we are using a wider index than needed for this platform, shrink 841 // it to what we need. If narrower, sign-extend it to what we need. 842 // This explicit cast can make subsequent optimizations more obvious. 843 *I = Builder->CreateIntCast(*I, IntPtrTy, true); 844 MadeChange = true; 845 } 846 } 847 if (MadeChange) return &GEP; 848 } 849 850 // Combine Indices - If the source pointer to this getelementptr instruction 851 // is a getelementptr instruction, combine the indices of the two 852 // getelementptr instructions into a single instruction. 853 // 854 if (GEPOperator *Src = dyn_cast<GEPOperator>(PtrOp)) { 855 if (!shouldMergeGEPs(*cast<GEPOperator>(&GEP), *Src)) 856 return 0; 857 858 // Note that if our source is a gep chain itself that we wait for that 859 // chain to be resolved before we perform this transformation. This 860 // avoids us creating a TON of code in some cases. 861 if (GEPOperator *SrcGEP = 862 dyn_cast<GEPOperator>(Src->getOperand(0))) 863 if (SrcGEP->getNumOperands() == 2 && shouldMergeGEPs(*Src, *SrcGEP)) 864 return 0; // Wait until our source is folded to completion. 865 866 SmallVector<Value*, 8> Indices; 867 868 // Find out whether the last index in the source GEP is a sequential idx. 869 bool EndsWithSequential = false; 870 for (gep_type_iterator I = gep_type_begin(*Src), E = gep_type_end(*Src); 871 I != E; ++I) 872 EndsWithSequential = !(*I)->isStructTy(); 873 874 // Can we combine the two pointer arithmetics offsets? 875 if (EndsWithSequential) { 876 // Replace: gep (gep %P, long B), long A, ... 877 // With: T = long A+B; gep %P, T, ... 878 // 879 Value *Sum; 880 Value *SO1 = Src->getOperand(Src->getNumOperands()-1); 881 Value *GO1 = GEP.getOperand(1); 882 if (SO1 == Constant::getNullValue(SO1->getType())) { 883 Sum = GO1; 884 } else if (GO1 == Constant::getNullValue(GO1->getType())) { 885 Sum = SO1; 886 } else { 887 // If they aren't the same type, then the input hasn't been processed 888 // by the loop above yet (which canonicalizes sequential index types to 889 // intptr_t). Just avoid transforming this until the input has been 890 // normalized. 891 if (SO1->getType() != GO1->getType()) 892 return 0; 893 Sum = Builder->CreateAdd(SO1, GO1, PtrOp->getName()+".sum"); 894 } 895 896 // Update the GEP in place if possible. 897 if (Src->getNumOperands() == 2) { 898 GEP.setOperand(0, Src->getOperand(0)); 899 GEP.setOperand(1, Sum); 900 return &GEP; 901 } 902 Indices.append(Src->op_begin()+1, Src->op_end()-1); 903 Indices.push_back(Sum); 904 Indices.append(GEP.op_begin()+2, GEP.op_end()); 905 } else if (isa<Constant>(*GEP.idx_begin()) && 906 cast<Constant>(*GEP.idx_begin())->isNullValue() && 907 Src->getNumOperands() != 1) { 908 // Otherwise we can do the fold if the first index of the GEP is a zero 909 Indices.append(Src->op_begin()+1, Src->op_end()); 910 Indices.append(GEP.idx_begin()+1, GEP.idx_end()); 911 } 912 913 if (!Indices.empty()) 914 return (GEP.isInBounds() && Src->isInBounds()) ? 915 GetElementPtrInst::CreateInBounds(Src->getOperand(0), Indices, 916 GEP.getName()) : 917 GetElementPtrInst::Create(Src->getOperand(0), Indices, GEP.getName()); 918 } 919 920 // Handle gep(bitcast x) and gep(gep x, 0, 0, 0). 921 Value *StrippedPtr = PtrOp->stripPointerCasts(); 922 PointerType *StrippedPtrTy = dyn_cast<PointerType>(StrippedPtr->getType()); 923 924 // We do not handle pointer-vector geps here. 925 if (!StrippedPtrTy) 926 return 0; 927 928 if (StrippedPtr != PtrOp && 929 StrippedPtrTy->getAddressSpace() == GEP.getPointerAddressSpace()) { 930 931 bool HasZeroPointerIndex = false; 932 if (ConstantInt *C = dyn_cast<ConstantInt>(GEP.getOperand(1))) 933 HasZeroPointerIndex = C->isZero(); 934 935 // Transform: GEP (bitcast [10 x i8]* X to [0 x i8]*), i32 0, ... 936 // into : GEP [10 x i8]* X, i32 0, ... 937 // 938 // Likewise, transform: GEP (bitcast i8* X to [0 x i8]*), i32 0, ... 939 // into : GEP i8* X, ... 940 // 941 // This occurs when the program declares an array extern like "int X[];" 942 if (HasZeroPointerIndex) { 943 PointerType *CPTy = cast<PointerType>(PtrOp->getType()); 944 if (ArrayType *CATy = 945 dyn_cast<ArrayType>(CPTy->getElementType())) { 946 // GEP (bitcast i8* X to [0 x i8]*), i32 0, ... ? 947 if (CATy->getElementType() == StrippedPtrTy->getElementType()) { 948 // -> GEP i8* X, ... 949 SmallVector<Value*, 8> Idx(GEP.idx_begin()+1, GEP.idx_end()); 950 GetElementPtrInst *Res = 951 GetElementPtrInst::Create(StrippedPtr, Idx, GEP.getName()); 952 Res->setIsInBounds(GEP.isInBounds()); 953 return Res; 954 } 955 956 if (ArrayType *XATy = 957 dyn_cast<ArrayType>(StrippedPtrTy->getElementType())){ 958 // GEP (bitcast [10 x i8]* X to [0 x i8]*), i32 0, ... ? 959 if (CATy->getElementType() == XATy->getElementType()) { 960 // -> GEP [10 x i8]* X, i32 0, ... 961 // At this point, we know that the cast source type is a pointer 962 // to an array of the same type as the destination pointer 963 // array. Because the array type is never stepped over (there 964 // is a leading zero) we can fold the cast into this GEP. 965 GEP.setOperand(0, StrippedPtr); 966 return &GEP; 967 } 968 } 969 } 970 } else if (GEP.getNumOperands() == 2) { 971 // Transform things like: 972 // %t = getelementptr i32* bitcast ([2 x i32]* %str to i32*), i32 %V 973 // into: %t1 = getelementptr [2 x i32]* %str, i32 0, i32 %V; bitcast 974 Type *SrcElTy = StrippedPtrTy->getElementType(); 975 Type *ResElTy=cast<PointerType>(PtrOp->getType())->getElementType(); 976 if (TD && SrcElTy->isArrayTy() && 977 TD->getTypeAllocSize(cast<ArrayType>(SrcElTy)->getElementType()) == 978 TD->getTypeAllocSize(ResElTy)) { 979 Value *Idx[2]; 980 Idx[0] = Constant::getNullValue(Type::getInt32Ty(GEP.getContext())); 981 Idx[1] = GEP.getOperand(1); 982 Value *NewGEP = GEP.isInBounds() ? 983 Builder->CreateInBoundsGEP(StrippedPtr, Idx, GEP.getName()) : 984 Builder->CreateGEP(StrippedPtr, Idx, GEP.getName()); 985 // V and GEP are both pointer types --> BitCast 986 return new BitCastInst(NewGEP, GEP.getType()); 987 } 988 989 // Transform things like: 990 // getelementptr i8* bitcast ([100 x double]* X to i8*), i32 %tmp 991 // (where tmp = 8*tmp2) into: 992 // getelementptr [100 x double]* %arr, i32 0, i32 %tmp2; bitcast 993 994 if (TD && SrcElTy->isArrayTy() && ResElTy->isIntegerTy(8)) { 995 uint64_t ArrayEltSize = 996 TD->getTypeAllocSize(cast<ArrayType>(SrcElTy)->getElementType()); 997 998 // Check to see if "tmp" is a scale by a multiple of ArrayEltSize. We 999 // allow either a mul, shift, or constant here. 1000 Value *NewIdx = 0; 1001 ConstantInt *Scale = 0; 1002 if (ArrayEltSize == 1) { 1003 NewIdx = GEP.getOperand(1); 1004 Scale = ConstantInt::get(cast<IntegerType>(NewIdx->getType()), 1); 1005 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP.getOperand(1))) { 1006 NewIdx = ConstantInt::get(CI->getType(), 1); 1007 Scale = CI; 1008 } else if (Instruction *Inst =dyn_cast<Instruction>(GEP.getOperand(1))){ 1009 if (Inst->getOpcode() == Instruction::Shl && 1010 isa<ConstantInt>(Inst->getOperand(1))) { 1011 ConstantInt *ShAmt = cast<ConstantInt>(Inst->getOperand(1)); 1012 uint32_t ShAmtVal = ShAmt->getLimitedValue(64); 1013 Scale = ConstantInt::get(cast<IntegerType>(Inst->getType()), 1014 1ULL << ShAmtVal); 1015 NewIdx = Inst->getOperand(0); 1016 } else if (Inst->getOpcode() == Instruction::Mul && 1017 isa<ConstantInt>(Inst->getOperand(1))) { 1018 Scale = cast<ConstantInt>(Inst->getOperand(1)); 1019 NewIdx = Inst->getOperand(0); 1020 } 1021 } 1022 1023 // If the index will be to exactly the right offset with the scale taken 1024 // out, perform the transformation. Note, we don't know whether Scale is 1025 // signed or not. We'll use unsigned version of division/modulo 1026 // operation after making sure Scale doesn't have the sign bit set. 1027 if (ArrayEltSize && Scale && Scale->getSExtValue() >= 0LL && 1028 Scale->getZExtValue() % ArrayEltSize == 0) { 1029 Scale = ConstantInt::get(Scale->getType(), 1030 Scale->getZExtValue() / ArrayEltSize); 1031 if (Scale->getZExtValue() != 1) { 1032 Constant *C = ConstantExpr::getIntegerCast(Scale, NewIdx->getType(), 1033 false /*ZExt*/); 1034 NewIdx = Builder->CreateMul(NewIdx, C, "idxscale"); 1035 } 1036 1037 // Insert the new GEP instruction. 1038 Value *Idx[2]; 1039 Idx[0] = Constant::getNullValue(Type::getInt32Ty(GEP.getContext())); 1040 Idx[1] = NewIdx; 1041 Value *NewGEP = GEP.isInBounds() ? 1042 Builder->CreateInBoundsGEP(StrippedPtr, Idx, GEP.getName()): 1043 Builder->CreateGEP(StrippedPtr, Idx, GEP.getName()); 1044 // The NewGEP must be pointer typed, so must the old one -> BitCast 1045 return new BitCastInst(NewGEP, GEP.getType()); 1046 } 1047 } 1048 } 1049 } 1050 1051 /// See if we can simplify: 1052 /// X = bitcast A* to B* 1053 /// Y = gep X, <...constant indices...> 1054 /// into a gep of the original struct. This is important for SROA and alias 1055 /// analysis of unions. If "A" is also a bitcast, wait for A/X to be merged. 1056 if (BitCastInst *BCI = dyn_cast<BitCastInst>(PtrOp)) { 1057 if (TD && 1058 !isa<BitCastInst>(BCI->getOperand(0)) && GEP.hasAllConstantIndices() && 1059 StrippedPtrTy->getAddressSpace() == GEP.getPointerAddressSpace()) { 1060 1061 // Determine how much the GEP moves the pointer. We are guaranteed to get 1062 // a constant back from EmitGEPOffset. 1063 ConstantInt *OffsetV = cast<ConstantInt>(EmitGEPOffset(&GEP)); 1064 int64_t Offset = OffsetV->getSExtValue(); 1065 1066 // If this GEP instruction doesn't move the pointer, just replace the GEP 1067 // with a bitcast of the real input to the dest type. 1068 if (Offset == 0) { 1069 // If the bitcast is of an allocation, and the allocation will be 1070 // converted to match the type of the cast, don't touch this. 1071 if (isa<AllocaInst>(BCI->getOperand(0)) || 1072 isMalloc(BCI->getOperand(0))) { 1073 // See if the bitcast simplifies, if so, don't nuke this GEP yet. 1074 if (Instruction *I = visitBitCast(*BCI)) { 1075 if (I != BCI) { 1076 I->takeName(BCI); 1077 BCI->getParent()->getInstList().insert(BCI, I); 1078 ReplaceInstUsesWith(*BCI, I); 1079 } 1080 return &GEP; 1081 } 1082 } 1083 return new BitCastInst(BCI->getOperand(0), GEP.getType()); 1084 } 1085 1086 // Otherwise, if the offset is non-zero, we need to find out if there is a 1087 // field at Offset in 'A's type. If so, we can pull the cast through the 1088 // GEP. 1089 SmallVector<Value*, 8> NewIndices; 1090 Type *InTy = 1091 cast<PointerType>(BCI->getOperand(0)->getType())->getElementType(); 1092 if (FindElementAtOffset(InTy, Offset, NewIndices)) { 1093 Value *NGEP = GEP.isInBounds() ? 1094 Builder->CreateInBoundsGEP(BCI->getOperand(0), NewIndices) : 1095 Builder->CreateGEP(BCI->getOperand(0), NewIndices); 1096 1097 if (NGEP->getType() == GEP.getType()) 1098 return ReplaceInstUsesWith(GEP, NGEP); 1099 NGEP->takeName(&GEP); 1100 return new BitCastInst(NGEP, GEP.getType()); 1101 } 1102 } 1103 } 1104 1105 return 0; 1106 } 1107 1108 1109 1110 static bool IsOnlyNullComparedAndFreed(Value *V, SmallVectorImpl<WeakVH> &Users, 1111 int Depth = 0) { 1112 if (Depth == 8) 1113 return false; 1114 1115 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end(); 1116 UI != UE; ++UI) { 1117 User *U = *UI; 1118 if (isFreeCall(U)) { 1119 Users.push_back(U); 1120 continue; 1121 } 1122 if (ICmpInst *ICI = dyn_cast<ICmpInst>(U)) { 1123 if (ICI->isEquality() && isa<ConstantPointerNull>(ICI->getOperand(1))) { 1124 Users.push_back(ICI); 1125 continue; 1126 } 1127 } 1128 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) { 1129 if (IsOnlyNullComparedAndFreed(BCI, Users, Depth+1)) { 1130 Users.push_back(BCI); 1131 continue; 1132 } 1133 } 1134 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) { 1135 if (IsOnlyNullComparedAndFreed(GEPI, Users, Depth+1)) { 1136 Users.push_back(GEPI); 1137 continue; 1138 } 1139 } 1140 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(U)) { 1141 if (II->getIntrinsicID() == Intrinsic::lifetime_start || 1142 II->getIntrinsicID() == Intrinsic::lifetime_end) { 1143 Users.push_back(II); 1144 continue; 1145 } 1146 } 1147 return false; 1148 } 1149 return true; 1150 } 1151 1152 Instruction *InstCombiner::visitMalloc(Instruction &MI) { 1153 // If we have a malloc call which is only used in any amount of comparisons 1154 // to null and free calls, delete the calls and replace the comparisons with 1155 // true or false as appropriate. 1156 SmallVector<WeakVH, 64> Users; 1157 if (IsOnlyNullComparedAndFreed(&MI, Users)) { 1158 for (unsigned i = 0, e = Users.size(); i != e; ++i) { 1159 Instruction *I = cast_or_null<Instruction>(&*Users[i]); 1160 if (!I) continue; 1161 1162 if (ICmpInst *C = dyn_cast<ICmpInst>(I)) { 1163 ReplaceInstUsesWith(*C, 1164 ConstantInt::get(Type::getInt1Ty(C->getContext()), 1165 C->isFalseWhenEqual())); 1166 } else if (isa<BitCastInst>(I) || isa<GetElementPtrInst>(I)) { 1167 ReplaceInstUsesWith(*I, UndefValue::get(I->getType())); 1168 } 1169 EraseInstFromFunction(*I); 1170 } 1171 return EraseInstFromFunction(MI); 1172 } 1173 return 0; 1174 } 1175 1176 1177 1178 Instruction *InstCombiner::visitFree(CallInst &FI) { 1179 Value *Op = FI.getArgOperand(0); 1180 1181 // free undef -> unreachable. 1182 if (isa<UndefValue>(Op)) { 1183 // Insert a new store to null because we cannot modify the CFG here. 1184 Builder->CreateStore(ConstantInt::getTrue(FI.getContext()), 1185 UndefValue::get(Type::getInt1PtrTy(FI.getContext()))); 1186 return EraseInstFromFunction(FI); 1187 } 1188 1189 // If we have 'free null' delete the instruction. This can happen in stl code 1190 // when lots of inlining happens. 1191 if (isa<ConstantPointerNull>(Op)) 1192 return EraseInstFromFunction(FI); 1193 1194 return 0; 1195 } 1196 1197 1198 1199 Instruction *InstCombiner::visitBranchInst(BranchInst &BI) { 1200 // Change br (not X), label True, label False to: br X, label False, True 1201 Value *X = 0; 1202 BasicBlock *TrueDest; 1203 BasicBlock *FalseDest; 1204 if (match(&BI, m_Br(m_Not(m_Value(X)), TrueDest, FalseDest)) && 1205 !isa<Constant>(X)) { 1206 // Swap Destinations and condition... 1207 BI.setCondition(X); 1208 BI.swapSuccessors(); 1209 return &BI; 1210 } 1211 1212 // Cannonicalize fcmp_one -> fcmp_oeq 1213 FCmpInst::Predicate FPred; Value *Y; 1214 if (match(&BI, m_Br(m_FCmp(FPred, m_Value(X), m_Value(Y)), 1215 TrueDest, FalseDest)) && 1216 BI.getCondition()->hasOneUse()) 1217 if (FPred == FCmpInst::FCMP_ONE || FPred == FCmpInst::FCMP_OLE || 1218 FPred == FCmpInst::FCMP_OGE) { 1219 FCmpInst *Cond = cast<FCmpInst>(BI.getCondition()); 1220 Cond->setPredicate(FCmpInst::getInversePredicate(FPred)); 1221 1222 // Swap Destinations and condition. 1223 BI.swapSuccessors(); 1224 Worklist.Add(Cond); 1225 return &BI; 1226 } 1227 1228 // Cannonicalize icmp_ne -> icmp_eq 1229 ICmpInst::Predicate IPred; 1230 if (match(&BI, m_Br(m_ICmp(IPred, m_Value(X), m_Value(Y)), 1231 TrueDest, FalseDest)) && 1232 BI.getCondition()->hasOneUse()) 1233 if (IPred == ICmpInst::ICMP_NE || IPred == ICmpInst::ICMP_ULE || 1234 IPred == ICmpInst::ICMP_SLE || IPred == ICmpInst::ICMP_UGE || 1235 IPred == ICmpInst::ICMP_SGE) { 1236 ICmpInst *Cond = cast<ICmpInst>(BI.getCondition()); 1237 Cond->setPredicate(ICmpInst::getInversePredicate(IPred)); 1238 // Swap Destinations and condition. 1239 BI.swapSuccessors(); 1240 Worklist.Add(Cond); 1241 return &BI; 1242 } 1243 1244 return 0; 1245 } 1246 1247 Instruction *InstCombiner::visitSwitchInst(SwitchInst &SI) { 1248 Value *Cond = SI.getCondition(); 1249 if (Instruction *I = dyn_cast<Instruction>(Cond)) { 1250 if (I->getOpcode() == Instruction::Add) 1251 if (ConstantInt *AddRHS = dyn_cast<ConstantInt>(I->getOperand(1))) { 1252 // change 'switch (X+4) case 1:' into 'switch (X) case -3' 1253 // Skip the first item since that's the default case. 1254 for (SwitchInst::CaseIt i = SI.case_begin(), e = SI.case_end(); 1255 i != e; ++i) { 1256 ConstantInt* CaseVal = i.getCaseValue(); 1257 Constant* NewCaseVal = ConstantExpr::getSub(cast<Constant>(CaseVal), 1258 AddRHS); 1259 assert(isa<ConstantInt>(NewCaseVal) && 1260 "Result of expression should be constant"); 1261 i.setValue(cast<ConstantInt>(NewCaseVal)); 1262 } 1263 SI.setCondition(I->getOperand(0)); 1264 Worklist.Add(I); 1265 return &SI; 1266 } 1267 } 1268 return 0; 1269 } 1270 1271 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { 1272 Value *Agg = EV.getAggregateOperand(); 1273 1274 if (!EV.hasIndices()) 1275 return ReplaceInstUsesWith(EV, Agg); 1276 1277 if (Constant *C = dyn_cast<Constant>(Agg)) { 1278 if (Constant *C2 = C->getAggregateElement(*EV.idx_begin())) { 1279 if (EV.getNumIndices() == 0) 1280 return ReplaceInstUsesWith(EV, C2); 1281 // Extract the remaining indices out of the constant indexed by the 1282 // first index 1283 return ExtractValueInst::Create(C2, EV.getIndices().slice(1)); 1284 } 1285 return 0; // Can't handle other constants 1286 } 1287 1288 if (InsertValueInst *IV = dyn_cast<InsertValueInst>(Agg)) { 1289 // We're extracting from an insertvalue instruction, compare the indices 1290 const unsigned *exti, *exte, *insi, *inse; 1291 for (exti = EV.idx_begin(), insi = IV->idx_begin(), 1292 exte = EV.idx_end(), inse = IV->idx_end(); 1293 exti != exte && insi != inse; 1294 ++exti, ++insi) { 1295 if (*insi != *exti) 1296 // The insert and extract both reference distinctly different elements. 1297 // This means the extract is not influenced by the insert, and we can 1298 // replace the aggregate operand of the extract with the aggregate 1299 // operand of the insert. i.e., replace 1300 // %I = insertvalue { i32, { i32 } } %A, { i32 } { i32 42 }, 1 1301 // %E = extractvalue { i32, { i32 } } %I, 0 1302 // with 1303 // %E = extractvalue { i32, { i32 } } %A, 0 1304 return ExtractValueInst::Create(IV->getAggregateOperand(), 1305 EV.getIndices()); 1306 } 1307 if (exti == exte && insi == inse) 1308 // Both iterators are at the end: Index lists are identical. Replace 1309 // %B = insertvalue { i32, { i32 } } %A, i32 42, 1, 0 1310 // %C = extractvalue { i32, { i32 } } %B, 1, 0 1311 // with "i32 42" 1312 return ReplaceInstUsesWith(EV, IV->getInsertedValueOperand()); 1313 if (exti == exte) { 1314 // The extract list is a prefix of the insert list. i.e. replace 1315 // %I = insertvalue { i32, { i32 } } %A, i32 42, 1, 0 1316 // %E = extractvalue { i32, { i32 } } %I, 1 1317 // with 1318 // %X = extractvalue { i32, { i32 } } %A, 1 1319 // %E = insertvalue { i32 } %X, i32 42, 0 1320 // by switching the order of the insert and extract (though the 1321 // insertvalue should be left in, since it may have other uses). 1322 Value *NewEV = Builder->CreateExtractValue(IV->getAggregateOperand(), 1323 EV.getIndices()); 1324 return InsertValueInst::Create(NewEV, IV->getInsertedValueOperand(), 1325 makeArrayRef(insi, inse)); 1326 } 1327 if (insi == inse) 1328 // The insert list is a prefix of the extract list 1329 // We can simply remove the common indices from the extract and make it 1330 // operate on the inserted value instead of the insertvalue result. 1331 // i.e., replace 1332 // %I = insertvalue { i32, { i32 } } %A, { i32 } { i32 42 }, 1 1333 // %E = extractvalue { i32, { i32 } } %I, 1, 0 1334 // with 1335 // %E extractvalue { i32 } { i32 42 }, 0 1336 return ExtractValueInst::Create(IV->getInsertedValueOperand(), 1337 makeArrayRef(exti, exte)); 1338 } 1339 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Agg)) { 1340 // We're extracting from an intrinsic, see if we're the only user, which 1341 // allows us to simplify multiple result intrinsics to simpler things that 1342 // just get one value. 1343 if (II->hasOneUse()) { 1344 // Check if we're grabbing the overflow bit or the result of a 'with 1345 // overflow' intrinsic. If it's the latter we can remove the intrinsic 1346 // and replace it with a traditional binary instruction. 1347 switch (II->getIntrinsicID()) { 1348 case Intrinsic::uadd_with_overflow: 1349 case Intrinsic::sadd_with_overflow: 1350 if (*EV.idx_begin() == 0) { // Normal result. 1351 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1); 1352 ReplaceInstUsesWith(*II, UndefValue::get(II->getType())); 1353 EraseInstFromFunction(*II); 1354 return BinaryOperator::CreateAdd(LHS, RHS); 1355 } 1356 1357 // If the normal result of the add is dead, and the RHS is a constant, 1358 // we can transform this into a range comparison. 1359 // overflow = uadd a, -4 --> overflow = icmp ugt a, 3 1360 if (II->getIntrinsicID() == Intrinsic::uadd_with_overflow) 1361 if (ConstantInt *CI = dyn_cast<ConstantInt>(II->getArgOperand(1))) 1362 return new ICmpInst(ICmpInst::ICMP_UGT, II->getArgOperand(0), 1363 ConstantExpr::getNot(CI)); 1364 break; 1365 case Intrinsic::usub_with_overflow: 1366 case Intrinsic::ssub_with_overflow: 1367 if (*EV.idx_begin() == 0) { // Normal result. 1368 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1); 1369 ReplaceInstUsesWith(*II, UndefValue::get(II->getType())); 1370 EraseInstFromFunction(*II); 1371 return BinaryOperator::CreateSub(LHS, RHS); 1372 } 1373 break; 1374 case Intrinsic::umul_with_overflow: 1375 case Intrinsic::smul_with_overflow: 1376 if (*EV.idx_begin() == 0) { // Normal result. 1377 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1); 1378 ReplaceInstUsesWith(*II, UndefValue::get(II->getType())); 1379 EraseInstFromFunction(*II); 1380 return BinaryOperator::CreateMul(LHS, RHS); 1381 } 1382 break; 1383 default: 1384 break; 1385 } 1386 } 1387 } 1388 if (LoadInst *L = dyn_cast<LoadInst>(Agg)) 1389 // If the (non-volatile) load only has one use, we can rewrite this to a 1390 // load from a GEP. This reduces the size of the load. 1391 // FIXME: If a load is used only by extractvalue instructions then this 1392 // could be done regardless of having multiple uses. 1393 if (L->isSimple() && L->hasOneUse()) { 1394 // extractvalue has integer indices, getelementptr has Value*s. Convert. 1395 SmallVector<Value*, 4> Indices; 1396 // Prefix an i32 0 since we need the first element. 1397 Indices.push_back(Builder->getInt32(0)); 1398 for (ExtractValueInst::idx_iterator I = EV.idx_begin(), E = EV.idx_end(); 1399 I != E; ++I) 1400 Indices.push_back(Builder->getInt32(*I)); 1401 1402 // We need to insert these at the location of the old load, not at that of 1403 // the extractvalue. 1404 Builder->SetInsertPoint(L->getParent(), L); 1405 Value *GEP = Builder->CreateInBoundsGEP(L->getPointerOperand(), Indices); 1406 // Returning the load directly will cause the main loop to insert it in 1407 // the wrong spot, so use ReplaceInstUsesWith(). 1408 return ReplaceInstUsesWith(EV, Builder->CreateLoad(GEP)); 1409 } 1410 // We could simplify extracts from other values. Note that nested extracts may 1411 // already be simplified implicitly by the above: extract (extract (insert) ) 1412 // will be translated into extract ( insert ( extract ) ) first and then just 1413 // the value inserted, if appropriate. Similarly for extracts from single-use 1414 // loads: extract (extract (load)) will be translated to extract (load (gep)) 1415 // and if again single-use then via load (gep (gep)) to load (gep). 1416 // However, double extracts from e.g. function arguments or return values 1417 // aren't handled yet. 1418 return 0; 1419 } 1420 1421 enum Personality_Type { 1422 Unknown_Personality, 1423 GNU_Ada_Personality, 1424 GNU_CXX_Personality, 1425 GNU_ObjC_Personality 1426 }; 1427 1428 /// RecognizePersonality - See if the given exception handling personality 1429 /// function is one that we understand. If so, return a description of it; 1430 /// otherwise return Unknown_Personality. 1431 static Personality_Type RecognizePersonality(Value *Pers) { 1432 Function *F = dyn_cast<Function>(Pers->stripPointerCasts()); 1433 if (!F) 1434 return Unknown_Personality; 1435 return StringSwitch<Personality_Type>(F->getName()) 1436 .Case("__gnat_eh_personality", GNU_Ada_Personality) 1437 .Case("__gxx_personality_v0", GNU_CXX_Personality) 1438 .Case("__objc_personality_v0", GNU_ObjC_Personality) 1439 .Default(Unknown_Personality); 1440 } 1441 1442 /// isCatchAll - Return 'true' if the given typeinfo will match anything. 1443 static bool isCatchAll(Personality_Type Personality, Constant *TypeInfo) { 1444 switch (Personality) { 1445 case Unknown_Personality: 1446 return false; 1447 case GNU_Ada_Personality: 1448 // While __gnat_all_others_value will match any Ada exception, it doesn't 1449 // match foreign exceptions (or didn't, before gcc-4.7). 1450 return false; 1451 case GNU_CXX_Personality: 1452 case GNU_ObjC_Personality: 1453 return TypeInfo->isNullValue(); 1454 } 1455 llvm_unreachable("Unknown personality!"); 1456 } 1457 1458 static bool shorter_filter(const Value *LHS, const Value *RHS) { 1459 return 1460 cast<ArrayType>(LHS->getType())->getNumElements() 1461 < 1462 cast<ArrayType>(RHS->getType())->getNumElements(); 1463 } 1464 1465 Instruction *InstCombiner::visitLandingPadInst(LandingPadInst &LI) { 1466 // The logic here should be correct for any real-world personality function. 1467 // However if that turns out not to be true, the offending logic can always 1468 // be conditioned on the personality function, like the catch-all logic is. 1469 Personality_Type Personality = RecognizePersonality(LI.getPersonalityFn()); 1470 1471 // Simplify the list of clauses, eg by removing repeated catch clauses 1472 // (these are often created by inlining). 1473 bool MakeNewInstruction = false; // If true, recreate using the following: 1474 SmallVector<Value *, 16> NewClauses; // - Clauses for the new instruction; 1475 bool CleanupFlag = LI.isCleanup(); // - The new instruction is a cleanup. 1476 1477 SmallPtrSet<Value *, 16> AlreadyCaught; // Typeinfos known caught already. 1478 for (unsigned i = 0, e = LI.getNumClauses(); i != e; ++i) { 1479 bool isLastClause = i + 1 == e; 1480 if (LI.isCatch(i)) { 1481 // A catch clause. 1482 Value *CatchClause = LI.getClause(i); 1483 Constant *TypeInfo = cast<Constant>(CatchClause->stripPointerCasts()); 1484 1485 // If we already saw this clause, there is no point in having a second 1486 // copy of it. 1487 if (AlreadyCaught.insert(TypeInfo)) { 1488 // This catch clause was not already seen. 1489 NewClauses.push_back(CatchClause); 1490 } else { 1491 // Repeated catch clause - drop the redundant copy. 1492 MakeNewInstruction = true; 1493 } 1494 1495 // If this is a catch-all then there is no point in keeping any following 1496 // clauses or marking the landingpad as having a cleanup. 1497 if (isCatchAll(Personality, TypeInfo)) { 1498 if (!isLastClause) 1499 MakeNewInstruction = true; 1500 CleanupFlag = false; 1501 break; 1502 } 1503 } else { 1504 // A filter clause. If any of the filter elements were already caught 1505 // then they can be dropped from the filter. It is tempting to try to 1506 // exploit the filter further by saying that any typeinfo that does not 1507 // occur in the filter can't be caught later (and thus can be dropped). 1508 // However this would be wrong, since typeinfos can match without being 1509 // equal (for example if one represents a C++ class, and the other some 1510 // class derived from it). 1511 assert(LI.isFilter(i) && "Unsupported landingpad clause!"); 1512 Value *FilterClause = LI.getClause(i); 1513 ArrayType *FilterType = cast<ArrayType>(FilterClause->getType()); 1514 unsigned NumTypeInfos = FilterType->getNumElements(); 1515 1516 // An empty filter catches everything, so there is no point in keeping any 1517 // following clauses or marking the landingpad as having a cleanup. By 1518 // dealing with this case here the following code is made a bit simpler. 1519 if (!NumTypeInfos) { 1520 NewClauses.push_back(FilterClause); 1521 if (!isLastClause) 1522 MakeNewInstruction = true; 1523 CleanupFlag = false; 1524 break; 1525 } 1526 1527 bool MakeNewFilter = false; // If true, make a new filter. 1528 SmallVector<Constant *, 16> NewFilterElts; // New elements. 1529 if (isa<ConstantAggregateZero>(FilterClause)) { 1530 // Not an empty filter - it contains at least one null typeinfo. 1531 assert(NumTypeInfos > 0 && "Should have handled empty filter already!"); 1532 Constant *TypeInfo = 1533 Constant::getNullValue(FilterType->getElementType()); 1534 // If this typeinfo is a catch-all then the filter can never match. 1535 if (isCatchAll(Personality, TypeInfo)) { 1536 // Throw the filter away. 1537 MakeNewInstruction = true; 1538 continue; 1539 } 1540 1541 // There is no point in having multiple copies of this typeinfo, so 1542 // discard all but the first copy if there is more than one. 1543 NewFilterElts.push_back(TypeInfo); 1544 if (NumTypeInfos > 1) 1545 MakeNewFilter = true; 1546 } else { 1547 ConstantArray *Filter = cast<ConstantArray>(FilterClause); 1548 SmallPtrSet<Value *, 16> SeenInFilter; // For uniquing the elements. 1549 NewFilterElts.reserve(NumTypeInfos); 1550 1551 // Remove any filter elements that were already caught or that already 1552 // occurred in the filter. While there, see if any of the elements are 1553 // catch-alls. If so, the filter can be discarded. 1554 bool SawCatchAll = false; 1555 for (unsigned j = 0; j != NumTypeInfos; ++j) { 1556 Value *Elt = Filter->getOperand(j); 1557 Constant *TypeInfo = cast<Constant>(Elt->stripPointerCasts()); 1558 if (isCatchAll(Personality, TypeInfo)) { 1559 // This element is a catch-all. Bail out, noting this fact. 1560 SawCatchAll = true; 1561 break; 1562 } 1563 if (AlreadyCaught.count(TypeInfo)) 1564 // Already caught by an earlier clause, so having it in the filter 1565 // is pointless. 1566 continue; 1567 // There is no point in having multiple copies of the same typeinfo in 1568 // a filter, so only add it if we didn't already. 1569 if (SeenInFilter.insert(TypeInfo)) 1570 NewFilterElts.push_back(cast<Constant>(Elt)); 1571 } 1572 // A filter containing a catch-all cannot match anything by definition. 1573 if (SawCatchAll) { 1574 // Throw the filter away. 1575 MakeNewInstruction = true; 1576 continue; 1577 } 1578 1579 // If we dropped something from the filter, make a new one. 1580 if (NewFilterElts.size() < NumTypeInfos) 1581 MakeNewFilter = true; 1582 } 1583 if (MakeNewFilter) { 1584 FilterType = ArrayType::get(FilterType->getElementType(), 1585 NewFilterElts.size()); 1586 FilterClause = ConstantArray::get(FilterType, NewFilterElts); 1587 MakeNewInstruction = true; 1588 } 1589 1590 NewClauses.push_back(FilterClause); 1591 1592 // If the new filter is empty then it will catch everything so there is 1593 // no point in keeping any following clauses or marking the landingpad 1594 // as having a cleanup. The case of the original filter being empty was 1595 // already handled above. 1596 if (MakeNewFilter && !NewFilterElts.size()) { 1597 assert(MakeNewInstruction && "New filter but not a new instruction!"); 1598 CleanupFlag = false; 1599 break; 1600 } 1601 } 1602 } 1603 1604 // If several filters occur in a row then reorder them so that the shortest 1605 // filters come first (those with the smallest number of elements). This is 1606 // advantageous because shorter filters are more likely to match, speeding up 1607 // unwinding, but mostly because it increases the effectiveness of the other 1608 // filter optimizations below. 1609 for (unsigned i = 0, e = NewClauses.size(); i + 1 < e; ) { 1610 unsigned j; 1611 // Find the maximal 'j' s.t. the range [i, j) consists entirely of filters. 1612 for (j = i; j != e; ++j) 1613 if (!isa<ArrayType>(NewClauses[j]->getType())) 1614 break; 1615 1616 // Check whether the filters are already sorted by length. We need to know 1617 // if sorting them is actually going to do anything so that we only make a 1618 // new landingpad instruction if it does. 1619 for (unsigned k = i; k + 1 < j; ++k) 1620 if (shorter_filter(NewClauses[k+1], NewClauses[k])) { 1621 // Not sorted, so sort the filters now. Doing an unstable sort would be 1622 // correct too but reordering filters pointlessly might confuse users. 1623 std::stable_sort(NewClauses.begin() + i, NewClauses.begin() + j, 1624 shorter_filter); 1625 MakeNewInstruction = true; 1626 break; 1627 } 1628 1629 // Look for the next batch of filters. 1630 i = j + 1; 1631 } 1632 1633 // If typeinfos matched if and only if equal, then the elements of a filter L 1634 // that occurs later than a filter F could be replaced by the intersection of 1635 // the elements of F and L. In reality two typeinfos can match without being 1636 // equal (for example if one represents a C++ class, and the other some class 1637 // derived from it) so it would be wrong to perform this transform in general. 1638 // However the transform is correct and useful if F is a subset of L. In that 1639 // case L can be replaced by F, and thus removed altogether since repeating a 1640 // filter is pointless. So here we look at all pairs of filters F and L where 1641 // L follows F in the list of clauses, and remove L if every element of F is 1642 // an element of L. This can occur when inlining C++ functions with exception 1643 // specifications. 1644 for (unsigned i = 0; i + 1 < NewClauses.size(); ++i) { 1645 // Examine each filter in turn. 1646 Value *Filter = NewClauses[i]; 1647 ArrayType *FTy = dyn_cast<ArrayType>(Filter->getType()); 1648 if (!FTy) 1649 // Not a filter - skip it. 1650 continue; 1651 unsigned FElts = FTy->getNumElements(); 1652 // Examine each filter following this one. Doing this backwards means that 1653 // we don't have to worry about filters disappearing under us when removed. 1654 for (unsigned j = NewClauses.size() - 1; j != i; --j) { 1655 Value *LFilter = NewClauses[j]; 1656 ArrayType *LTy = dyn_cast<ArrayType>(LFilter->getType()); 1657 if (!LTy) 1658 // Not a filter - skip it. 1659 continue; 1660 // If Filter is a subset of LFilter, i.e. every element of Filter is also 1661 // an element of LFilter, then discard LFilter. 1662 SmallVector<Value *, 16>::iterator J = NewClauses.begin() + j; 1663 // If Filter is empty then it is a subset of LFilter. 1664 if (!FElts) { 1665 // Discard LFilter. 1666 NewClauses.erase(J); 1667 MakeNewInstruction = true; 1668 // Move on to the next filter. 1669 continue; 1670 } 1671 unsigned LElts = LTy->getNumElements(); 1672 // If Filter is longer than LFilter then it cannot be a subset of it. 1673 if (FElts > LElts) 1674 // Move on to the next filter. 1675 continue; 1676 // At this point we know that LFilter has at least one element. 1677 if (isa<ConstantAggregateZero>(LFilter)) { // LFilter only contains zeros. 1678 // Filter is a subset of LFilter iff Filter contains only zeros (as we 1679 // already know that Filter is not longer than LFilter). 1680 if (isa<ConstantAggregateZero>(Filter)) { 1681 assert(FElts <= LElts && "Should have handled this case earlier!"); 1682 // Discard LFilter. 1683 NewClauses.erase(J); 1684 MakeNewInstruction = true; 1685 } 1686 // Move on to the next filter. 1687 continue; 1688 } 1689 ConstantArray *LArray = cast<ConstantArray>(LFilter); 1690 if (isa<ConstantAggregateZero>(Filter)) { // Filter only contains zeros. 1691 // Since Filter is non-empty and contains only zeros, it is a subset of 1692 // LFilter iff LFilter contains a zero. 1693 assert(FElts > 0 && "Should have eliminated the empty filter earlier!"); 1694 for (unsigned l = 0; l != LElts; ++l) 1695 if (LArray->getOperand(l)->isNullValue()) { 1696 // LFilter contains a zero - discard it. 1697 NewClauses.erase(J); 1698 MakeNewInstruction = true; 1699 break; 1700 } 1701 // Move on to the next filter. 1702 continue; 1703 } 1704 // At this point we know that both filters are ConstantArrays. Loop over 1705 // operands to see whether every element of Filter is also an element of 1706 // LFilter. Since filters tend to be short this is probably faster than 1707 // using a method that scales nicely. 1708 ConstantArray *FArray = cast<ConstantArray>(Filter); 1709 bool AllFound = true; 1710 for (unsigned f = 0; f != FElts; ++f) { 1711 Value *FTypeInfo = FArray->getOperand(f)->stripPointerCasts(); 1712 AllFound = false; 1713 for (unsigned l = 0; l != LElts; ++l) { 1714 Value *LTypeInfo = LArray->getOperand(l)->stripPointerCasts(); 1715 if (LTypeInfo == FTypeInfo) { 1716 AllFound = true; 1717 break; 1718 } 1719 } 1720 if (!AllFound) 1721 break; 1722 } 1723 if (AllFound) { 1724 // Discard LFilter. 1725 NewClauses.erase(J); 1726 MakeNewInstruction = true; 1727 } 1728 // Move on to the next filter. 1729 } 1730 } 1731 1732 // If we changed any of the clauses, replace the old landingpad instruction 1733 // with a new one. 1734 if (MakeNewInstruction) { 1735 LandingPadInst *NLI = LandingPadInst::Create(LI.getType(), 1736 LI.getPersonalityFn(), 1737 NewClauses.size()); 1738 for (unsigned i = 0, e = NewClauses.size(); i != e; ++i) 1739 NLI->addClause(NewClauses[i]); 1740 // A landing pad with no clauses must have the cleanup flag set. It is 1741 // theoretically possible, though highly unlikely, that we eliminated all 1742 // clauses. If so, force the cleanup flag to true. 1743 if (NewClauses.empty()) 1744 CleanupFlag = true; 1745 NLI->setCleanup(CleanupFlag); 1746 return NLI; 1747 } 1748 1749 // Even if none of the clauses changed, we may nonetheless have understood 1750 // that the cleanup flag is pointless. Clear it if so. 1751 if (LI.isCleanup() != CleanupFlag) { 1752 assert(!CleanupFlag && "Adding a cleanup, not removing one?!"); 1753 LI.setCleanup(CleanupFlag); 1754 return &LI; 1755 } 1756 1757 return 0; 1758 } 1759 1760 1761 1762 1763 /// TryToSinkInstruction - Try to move the specified instruction from its 1764 /// current block into the beginning of DestBlock, which can only happen if it's 1765 /// safe to move the instruction past all of the instructions between it and the 1766 /// end of its block. 1767 static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) { 1768 assert(I->hasOneUse() && "Invariants didn't hold!"); 1769 1770 // Cannot move control-flow-involving, volatile loads, vaarg, etc. 1771 if (isa<PHINode>(I) || isa<LandingPadInst>(I) || I->mayHaveSideEffects() || 1772 isa<TerminatorInst>(I)) 1773 return false; 1774 1775 // Do not sink alloca instructions out of the entry block. 1776 if (isa<AllocaInst>(I) && I->getParent() == 1777 &DestBlock->getParent()->getEntryBlock()) 1778 return false; 1779 1780 // We can only sink load instructions if there is nothing between the load and 1781 // the end of block that could change the value. 1782 if (I->mayReadFromMemory()) { 1783 for (BasicBlock::iterator Scan = I, E = I->getParent()->end(); 1784 Scan != E; ++Scan) 1785 if (Scan->mayWriteToMemory()) 1786 return false; 1787 } 1788 1789 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); 1790 I->moveBefore(InsertPos); 1791 ++NumSunkInst; 1792 return true; 1793 } 1794 1795 1796 /// AddReachableCodeToWorklist - Walk the function in depth-first order, adding 1797 /// all reachable code to the worklist. 1798 /// 1799 /// This has a couple of tricks to make the code faster and more powerful. In 1800 /// particular, we constant fold and DCE instructions as we go, to avoid adding 1801 /// them to the worklist (this significantly speeds up instcombine on code where 1802 /// many instructions are dead or constant). Additionally, if we find a branch 1803 /// whose condition is a known constant, we only visit the reachable successors. 1804 /// 1805 static bool AddReachableCodeToWorklist(BasicBlock *BB, 1806 SmallPtrSet<BasicBlock*, 64> &Visited, 1807 InstCombiner &IC, 1808 const TargetData *TD, 1809 const TargetLibraryInfo *TLI) { 1810 bool MadeIRChange = false; 1811 SmallVector<BasicBlock*, 256> Worklist; 1812 Worklist.push_back(BB); 1813 1814 SmallVector<Instruction*, 128> InstrsForInstCombineWorklist; 1815 DenseMap<ConstantExpr*, Constant*> FoldedConstants; 1816 1817 do { 1818 BB = Worklist.pop_back_val(); 1819 1820 // We have now visited this block! If we've already been here, ignore it. 1821 if (!Visited.insert(BB)) continue; 1822 1823 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) { 1824 Instruction *Inst = BBI++; 1825 1826 // DCE instruction if trivially dead. 1827 if (isInstructionTriviallyDead(Inst)) { 1828 ++NumDeadInst; 1829 DEBUG(errs() << "IC: DCE: " << *Inst << '\n'); 1830 Inst->eraseFromParent(); 1831 continue; 1832 } 1833 1834 // ConstantProp instruction if trivially constant. 1835 if (!Inst->use_empty() && isa<Constant>(Inst->getOperand(0))) 1836 if (Constant *C = ConstantFoldInstruction(Inst, TD, TLI)) { 1837 DEBUG(errs() << "IC: ConstFold to: " << *C << " from: " 1838 << *Inst << '\n'); 1839 Inst->replaceAllUsesWith(C); 1840 ++NumConstProp; 1841 Inst->eraseFromParent(); 1842 continue; 1843 } 1844 1845 if (TD) { 1846 // See if we can constant fold its operands. 1847 for (User::op_iterator i = Inst->op_begin(), e = Inst->op_end(); 1848 i != e; ++i) { 1849 ConstantExpr *CE = dyn_cast<ConstantExpr>(i); 1850 if (CE == 0) continue; 1851 1852 Constant*& FoldRes = FoldedConstants[CE]; 1853 if (!FoldRes) 1854 FoldRes = ConstantFoldConstantExpression(CE, TD, TLI); 1855 if (!FoldRes) 1856 FoldRes = CE; 1857 1858 if (FoldRes != CE) { 1859 *i = FoldRes; 1860 MadeIRChange = true; 1861 } 1862 } 1863 } 1864 1865 InstrsForInstCombineWorklist.push_back(Inst); 1866 } 1867 1868 // Recursively visit successors. If this is a branch or switch on a 1869 // constant, only visit the reachable successor. 1870 TerminatorInst *TI = BB->getTerminator(); 1871 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { 1872 if (BI->isConditional() && isa<ConstantInt>(BI->getCondition())) { 1873 bool CondVal = cast<ConstantInt>(BI->getCondition())->getZExtValue(); 1874 BasicBlock *ReachableBB = BI->getSuccessor(!CondVal); 1875 Worklist.push_back(ReachableBB); 1876 continue; 1877 } 1878 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { 1879 if (ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition())) { 1880 // See if this is an explicit destination. 1881 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 1882 i != e; ++i) 1883 if (i.getCaseValue() == Cond) { 1884 BasicBlock *ReachableBB = i.getCaseSuccessor(); 1885 Worklist.push_back(ReachableBB); 1886 continue; 1887 } 1888 1889 // Otherwise it is the default destination. 1890 Worklist.push_back(SI->getDefaultDest()); 1891 continue; 1892 } 1893 } 1894 1895 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) 1896 Worklist.push_back(TI->getSuccessor(i)); 1897 } while (!Worklist.empty()); 1898 1899 // Once we've found all of the instructions to add to instcombine's worklist, 1900 // add them in reverse order. This way instcombine will visit from the top 1901 // of the function down. This jives well with the way that it adds all uses 1902 // of instructions to the worklist after doing a transformation, thus avoiding 1903 // some N^2 behavior in pathological cases. 1904 IC.Worklist.AddInitialGroup(&InstrsForInstCombineWorklist[0], 1905 InstrsForInstCombineWorklist.size()); 1906 1907 return MadeIRChange; 1908 } 1909 1910 bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) { 1911 MadeIRChange = false; 1912 1913 DEBUG(errs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on " 1914 << F.getName() << "\n"); 1915 1916 { 1917 // Do a depth-first traversal of the function, populate the worklist with 1918 // the reachable instructions. Ignore blocks that are not reachable. Keep 1919 // track of which blocks we visit. 1920 SmallPtrSet<BasicBlock*, 64> Visited; 1921 MadeIRChange |= AddReachableCodeToWorklist(F.begin(), Visited, *this, TD, 1922 TLI); 1923 1924 // Do a quick scan over the function. If we find any blocks that are 1925 // unreachable, remove any instructions inside of them. This prevents 1926 // the instcombine code from having to deal with some bad special cases. 1927 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { 1928 if (Visited.count(BB)) continue; 1929 1930 // Delete the instructions backwards, as it has a reduced likelihood of 1931 // having to update as many def-use and use-def chains. 1932 Instruction *EndInst = BB->getTerminator(); // Last not to be deleted. 1933 while (EndInst != BB->begin()) { 1934 // Delete the next to last instruction. 1935 BasicBlock::iterator I = EndInst; 1936 Instruction *Inst = --I; 1937 if (!Inst->use_empty()) 1938 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType())); 1939 if (isa<LandingPadInst>(Inst)) { 1940 EndInst = Inst; 1941 continue; 1942 } 1943 if (!isa<DbgInfoIntrinsic>(Inst)) { 1944 ++NumDeadInst; 1945 MadeIRChange = true; 1946 } 1947 Inst->eraseFromParent(); 1948 } 1949 } 1950 } 1951 1952 while (!Worklist.isEmpty()) { 1953 Instruction *I = Worklist.RemoveOne(); 1954 if (I == 0) continue; // skip null values. 1955 1956 // Check to see if we can DCE the instruction. 1957 if (isInstructionTriviallyDead(I)) { 1958 DEBUG(errs() << "IC: DCE: " << *I << '\n'); 1959 EraseInstFromFunction(*I); 1960 ++NumDeadInst; 1961 MadeIRChange = true; 1962 continue; 1963 } 1964 1965 // Instruction isn't dead, see if we can constant propagate it. 1966 if (!I->use_empty() && isa<Constant>(I->getOperand(0))) 1967 if (Constant *C = ConstantFoldInstruction(I, TD, TLI)) { 1968 DEBUG(errs() << "IC: ConstFold to: " << *C << " from: " << *I << '\n'); 1969 1970 // Add operands to the worklist. 1971 ReplaceInstUsesWith(*I, C); 1972 ++NumConstProp; 1973 EraseInstFromFunction(*I); 1974 MadeIRChange = true; 1975 continue; 1976 } 1977 1978 // See if we can trivially sink this instruction to a successor basic block. 1979 if (I->hasOneUse()) { 1980 BasicBlock *BB = I->getParent(); 1981 Instruction *UserInst = cast<Instruction>(I->use_back()); 1982 BasicBlock *UserParent; 1983 1984 // Get the block the use occurs in. 1985 if (PHINode *PN = dyn_cast<PHINode>(UserInst)) 1986 UserParent = PN->getIncomingBlock(I->use_begin().getUse()); 1987 else 1988 UserParent = UserInst->getParent(); 1989 1990 if (UserParent != BB) { 1991 bool UserIsSuccessor = false; 1992 // See if the user is one of our successors. 1993 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) 1994 if (*SI == UserParent) { 1995 UserIsSuccessor = true; 1996 break; 1997 } 1998 1999 // If the user is one of our immediate successors, and if that successor 2000 // only has us as a predecessors (we'd have to split the critical edge 2001 // otherwise), we can keep going. 2002 if (UserIsSuccessor && UserParent->getSinglePredecessor()) 2003 // Okay, the CFG is simple enough, try to sink this instruction. 2004 MadeIRChange |= TryToSinkInstruction(I, UserParent); 2005 } 2006 } 2007 2008 // Now that we have an instruction, try combining it to simplify it. 2009 Builder->SetInsertPoint(I->getParent(), I); 2010 Builder->SetCurrentDebugLocation(I->getDebugLoc()); 2011 2012 #ifndef NDEBUG 2013 std::string OrigI; 2014 #endif 2015 DEBUG(raw_string_ostream SS(OrigI); I->print(SS); OrigI = SS.str();); 2016 DEBUG(errs() << "IC: Visiting: " << OrigI << '\n'); 2017 2018 if (Instruction *Result = visit(*I)) { 2019 ++NumCombined; 2020 // Should we replace the old instruction with a new one? 2021 if (Result != I) { 2022 DEBUG(errs() << "IC: Old = " << *I << '\n' 2023 << " New = " << *Result << '\n'); 2024 2025 if (!I->getDebugLoc().isUnknown()) 2026 Result->setDebugLoc(I->getDebugLoc()); 2027 // Everything uses the new instruction now. 2028 I->replaceAllUsesWith(Result); 2029 2030 // Move the name to the new instruction first. 2031 Result->takeName(I); 2032 2033 // Push the new instruction and any users onto the worklist. 2034 Worklist.Add(Result); 2035 Worklist.AddUsersToWorkList(*Result); 2036 2037 // Insert the new instruction into the basic block... 2038 BasicBlock *InstParent = I->getParent(); 2039 BasicBlock::iterator InsertPos = I; 2040 2041 // If we replace a PHI with something that isn't a PHI, fix up the 2042 // insertion point. 2043 if (!isa<PHINode>(Result) && isa<PHINode>(InsertPos)) 2044 InsertPos = InstParent->getFirstInsertionPt(); 2045 2046 InstParent->getInstList().insert(InsertPos, Result); 2047 2048 EraseInstFromFunction(*I); 2049 } else { 2050 #ifndef NDEBUG 2051 DEBUG(errs() << "IC: Mod = " << OrigI << '\n' 2052 << " New = " << *I << '\n'); 2053 #endif 2054 2055 // If the instruction was modified, it's possible that it is now dead. 2056 // if so, remove it. 2057 if (isInstructionTriviallyDead(I)) { 2058 EraseInstFromFunction(*I); 2059 } else { 2060 Worklist.Add(I); 2061 Worklist.AddUsersToWorkList(*I); 2062 } 2063 } 2064 MadeIRChange = true; 2065 } 2066 } 2067 2068 Worklist.Zap(); 2069 return MadeIRChange; 2070 } 2071 2072 2073 bool InstCombiner::runOnFunction(Function &F) { 2074 TD = getAnalysisIfAvailable<TargetData>(); 2075 TLI = &getAnalysis<TargetLibraryInfo>(); 2076 2077 /// Builder - This is an IRBuilder that automatically inserts new 2078 /// instructions into the worklist when they are created. 2079 IRBuilder<true, TargetFolder, InstCombineIRInserter> 2080 TheBuilder(F.getContext(), TargetFolder(TD), 2081 InstCombineIRInserter(Worklist)); 2082 Builder = &TheBuilder; 2083 2084 bool EverMadeChange = false; 2085 2086 // Lower dbg.declare intrinsics otherwise their value may be clobbered 2087 // by instcombiner. 2088 EverMadeChange = LowerDbgDeclare(F); 2089 2090 // Iterate while there is work to do. 2091 unsigned Iteration = 0; 2092 while (DoOneIteration(F, Iteration++)) 2093 EverMadeChange = true; 2094 2095 Builder = 0; 2096 return EverMadeChange; 2097 } 2098 2099 FunctionPass *llvm::createInstructionCombiningPass() { 2100 return new InstCombiner(); 2101 } 2102