1 //===- FunctionComparator.h - Function Comparator -------------------------===//
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 file implements the FunctionComparator and GlobalNumberState classes
11 // which are used by the MergeFunctions pass for comparing functions.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/Transforms/Utils/FunctionComparator.h"
16 #include "llvm/ADT/APFloat.h"
17 #include "llvm/ADT/APInt.h"
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/Hashing.h"
20 #include "llvm/ADT/SmallPtrSet.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/IR/Attributes.h"
23 #include "llvm/IR/BasicBlock.h"
24 #include "llvm/IR/CallSite.h"
25 #include "llvm/IR/Constant.h"
26 #include "llvm/IR/Constants.h"
27 #include "llvm/IR/DataLayout.h"
28 #include "llvm/IR/DerivedTypes.h"
29 #include "llvm/IR/Function.h"
30 #include "llvm/IR/GlobalValue.h"
31 #include "llvm/IR/InlineAsm.h"
32 #include "llvm/IR/InstrTypes.h"
33 #include "llvm/IR/Instruction.h"
34 #include "llvm/IR/Instructions.h"
35 #include "llvm/IR/LLVMContext.h"
36 #include "llvm/IR/Metadata.h"
37 #include "llvm/IR/Module.h"
38 #include "llvm/IR/Operator.h"
39 #include "llvm/IR/Type.h"
40 #include "llvm/IR/Value.h"
41 #include "llvm/Support/Casting.h"
42 #include "llvm/Support/Compiler.h"
43 #include "llvm/Support/Debug.h"
44 #include "llvm/Support/ErrorHandling.h"
45 #include "llvm/Support/raw_ostream.h"
46 #include <cassert>
47 #include <cstddef>
48 #include <cstdint>
49 #include <utility>
50 
51 using namespace llvm;
52 
53 #define DEBUG_TYPE "functioncomparator"
54 
55 int FunctionComparator::cmpNumbers(uint64_t L, uint64_t R) const {
56   if (L < R) return -1;
57   if (L > R) return 1;
58   return 0;
59 }
60 
61 int FunctionComparator::cmpOrderings(AtomicOrdering L, AtomicOrdering R) const {
62   if ((int)L < (int)R) return -1;
63   if ((int)L > (int)R) return 1;
64   return 0;
65 }
66 
67 int FunctionComparator::cmpAPInts(const APInt &L, const APInt &R) const {
68   if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth()))
69     return Res;
70   if (L.ugt(R)) return 1;
71   if (R.ugt(L)) return -1;
72   return 0;
73 }
74 
75 int FunctionComparator::cmpAPFloats(const APFloat &L, const APFloat &R) const {
76   // Floats are ordered first by semantics (i.e. float, double, half, etc.),
77   // then by value interpreted as a bitstring (aka APInt).
78   const fltSemantics &SL = L.getSemantics(), &SR = R.getSemantics();
79   if (int Res = cmpNumbers(APFloat::semanticsPrecision(SL),
80                            APFloat::semanticsPrecision(SR)))
81     return Res;
82   if (int Res = cmpNumbers(APFloat::semanticsMaxExponent(SL),
83                            APFloat::semanticsMaxExponent(SR)))
84     return Res;
85   if (int Res = cmpNumbers(APFloat::semanticsMinExponent(SL),
86                            APFloat::semanticsMinExponent(SR)))
87     return Res;
88   if (int Res = cmpNumbers(APFloat::semanticsSizeInBits(SL),
89                            APFloat::semanticsSizeInBits(SR)))
90     return Res;
91   return cmpAPInts(L.bitcastToAPInt(), R.bitcastToAPInt());
92 }
93 
94 int FunctionComparator::cmpMem(StringRef L, StringRef R) const {
95   // Prevent heavy comparison, compare sizes first.
96   if (int Res = cmpNumbers(L.size(), R.size()))
97     return Res;
98 
99   // Compare strings lexicographically only when it is necessary: only when
100   // strings are equal in size.
101   return L.compare(R);
102 }
103 
104 int FunctionComparator::cmpAttrs(const AttributeList L,
105                                  const AttributeList R) const {
106   if (int Res = cmpNumbers(L.getNumAttrSets(), R.getNumAttrSets()))
107     return Res;
108 
109   for (unsigned i = L.index_begin(), e = L.index_end(); i != e; ++i) {
110     AttributeSet LAS = L.getAttributes(i);
111     AttributeSet RAS = R.getAttributes(i);
112     AttributeSet::iterator LI = LAS.begin(), LE = LAS.end();
113     AttributeSet::iterator RI = RAS.begin(), RE = RAS.end();
114     for (; LI != LE && RI != RE; ++LI, ++RI) {
115       Attribute LA = *LI;
116       Attribute RA = *RI;
117       if (LA < RA)
118         return -1;
119       if (RA < LA)
120         return 1;
121     }
122     if (LI != LE)
123       return 1;
124     if (RI != RE)
125       return -1;
126   }
127   return 0;
128 }
129 
130 int FunctionComparator::cmpRangeMetadata(const MDNode *L,
131                                          const MDNode *R) const {
132   if (L == R)
133     return 0;
134   if (!L)
135     return -1;
136   if (!R)
137     return 1;
138   // Range metadata is a sequence of numbers. Make sure they are the same
139   // sequence.
140   // TODO: Note that as this is metadata, it is possible to drop and/or merge
141   // this data when considering functions to merge. Thus this comparison would
142   // return 0 (i.e. equivalent), but merging would become more complicated
143   // because the ranges would need to be unioned. It is not likely that
144   // functions differ ONLY in this metadata if they are actually the same
145   // function semantically.
146   if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
147     return Res;
148   for (size_t I = 0; I < L->getNumOperands(); ++I) {
149     ConstantInt *LLow = mdconst::extract<ConstantInt>(L->getOperand(I));
150     ConstantInt *RLow = mdconst::extract<ConstantInt>(R->getOperand(I));
151     if (int Res = cmpAPInts(LLow->getValue(), RLow->getValue()))
152       return Res;
153   }
154   return 0;
155 }
156 
157 int FunctionComparator::cmpOperandBundlesSchema(const Instruction *L,
158                                                 const Instruction *R) const {
159   ImmutableCallSite LCS(L);
160   ImmutableCallSite RCS(R);
161 
162   assert(LCS && RCS && "Must be calls or invokes!");
163   assert(LCS.isCall() == RCS.isCall() && "Can't compare otherwise!");
164 
165   if (int Res =
166           cmpNumbers(LCS.getNumOperandBundles(), RCS.getNumOperandBundles()))
167     return Res;
168 
169   for (unsigned i = 0, e = LCS.getNumOperandBundles(); i != e; ++i) {
170     auto OBL = LCS.getOperandBundleAt(i);
171     auto OBR = RCS.getOperandBundleAt(i);
172 
173     if (int Res = OBL.getTagName().compare(OBR.getTagName()))
174       return Res;
175 
176     if (int Res = cmpNumbers(OBL.Inputs.size(), OBR.Inputs.size()))
177       return Res;
178   }
179 
180   return 0;
181 }
182 
183 /// Constants comparison:
184 /// 1. Check whether type of L constant could be losslessly bitcasted to R
185 /// type.
186 /// 2. Compare constant contents.
187 /// For more details see declaration comments.
188 int FunctionComparator::cmpConstants(const Constant *L,
189                                      const Constant *R) const {
190   Type *TyL = L->getType();
191   Type *TyR = R->getType();
192 
193   // Check whether types are bitcastable. This part is just re-factored
194   // Type::canLosslesslyBitCastTo method, but instead of returning true/false,
195   // we also pack into result which type is "less" for us.
196   int TypesRes = cmpTypes(TyL, TyR);
197   if (TypesRes != 0) {
198     // Types are different, but check whether we can bitcast them.
199     if (!TyL->isFirstClassType()) {
200       if (TyR->isFirstClassType())
201         return -1;
202       // Neither TyL nor TyR are values of first class type. Return the result
203       // of comparing the types
204       return TypesRes;
205     }
206     if (!TyR->isFirstClassType()) {
207       if (TyL->isFirstClassType())
208         return 1;
209       return TypesRes;
210     }
211 
212     // Vector -> Vector conversions are always lossless if the two vector types
213     // have the same size, otherwise not.
214     unsigned TyLWidth = 0;
215     unsigned TyRWidth = 0;
216 
217     if (auto *VecTyL = dyn_cast<VectorType>(TyL))
218       TyLWidth = VecTyL->getBitWidth();
219     if (auto *VecTyR = dyn_cast<VectorType>(TyR))
220       TyRWidth = VecTyR->getBitWidth();
221 
222     if (TyLWidth != TyRWidth)
223       return cmpNumbers(TyLWidth, TyRWidth);
224 
225     // Zero bit-width means neither TyL nor TyR are vectors.
226     if (!TyLWidth) {
227       PointerType *PTyL = dyn_cast<PointerType>(TyL);
228       PointerType *PTyR = dyn_cast<PointerType>(TyR);
229       if (PTyL && PTyR) {
230         unsigned AddrSpaceL = PTyL->getAddressSpace();
231         unsigned AddrSpaceR = PTyR->getAddressSpace();
232         if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR))
233           return Res;
234       }
235       if (PTyL)
236         return 1;
237       if (PTyR)
238         return -1;
239 
240       // TyL and TyR aren't vectors, nor pointers. We don't know how to
241       // bitcast them.
242       return TypesRes;
243     }
244   }
245 
246   // OK, types are bitcastable, now check constant contents.
247 
248   if (L->isNullValue() && R->isNullValue())
249     return TypesRes;
250   if (L->isNullValue() && !R->isNullValue())
251     return 1;
252   if (!L->isNullValue() && R->isNullValue())
253     return -1;
254 
255   auto GlobalValueL = const_cast<GlobalValue *>(dyn_cast<GlobalValue>(L));
256   auto GlobalValueR = const_cast<GlobalValue *>(dyn_cast<GlobalValue>(R));
257   if (GlobalValueL && GlobalValueR) {
258     return cmpGlobalValues(GlobalValueL, GlobalValueR);
259   }
260 
261   if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
262     return Res;
263 
264   if (const auto *SeqL = dyn_cast<ConstantDataSequential>(L)) {
265     const auto *SeqR = cast<ConstantDataSequential>(R);
266     // This handles ConstantDataArray and ConstantDataVector. Note that we
267     // compare the two raw data arrays, which might differ depending on the host
268     // endianness. This isn't a problem though, because the endiness of a module
269     // will affect the order of the constants, but this order is the same
270     // for a given input module and host platform.
271     return cmpMem(SeqL->getRawDataValues(), SeqR->getRawDataValues());
272   }
273 
274   switch (L->getValueID()) {
275   case Value::UndefValueVal:
276   case Value::ConstantTokenNoneVal:
277     return TypesRes;
278   case Value::ConstantIntVal: {
279     const APInt &LInt = cast<ConstantInt>(L)->getValue();
280     const APInt &RInt = cast<ConstantInt>(R)->getValue();
281     return cmpAPInts(LInt, RInt);
282   }
283   case Value::ConstantFPVal: {
284     const APFloat &LAPF = cast<ConstantFP>(L)->getValueAPF();
285     const APFloat &RAPF = cast<ConstantFP>(R)->getValueAPF();
286     return cmpAPFloats(LAPF, RAPF);
287   }
288   case Value::ConstantArrayVal: {
289     const ConstantArray *LA = cast<ConstantArray>(L);
290     const ConstantArray *RA = cast<ConstantArray>(R);
291     uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements();
292     uint64_t NumElementsR = cast<ArrayType>(TyR)->getNumElements();
293     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
294       return Res;
295     for (uint64_t i = 0; i < NumElementsL; ++i) {
296       if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
297                                  cast<Constant>(RA->getOperand(i))))
298         return Res;
299     }
300     return 0;
301   }
302   case Value::ConstantStructVal: {
303     const ConstantStruct *LS = cast<ConstantStruct>(L);
304     const ConstantStruct *RS = cast<ConstantStruct>(R);
305     unsigned NumElementsL = cast<StructType>(TyL)->getNumElements();
306     unsigned NumElementsR = cast<StructType>(TyR)->getNumElements();
307     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
308       return Res;
309     for (unsigned i = 0; i != NumElementsL; ++i) {
310       if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
311                                  cast<Constant>(RS->getOperand(i))))
312         return Res;
313     }
314     return 0;
315   }
316   case Value::ConstantVectorVal: {
317     const ConstantVector *LV = cast<ConstantVector>(L);
318     const ConstantVector *RV = cast<ConstantVector>(R);
319     unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements();
320     unsigned NumElementsR = cast<VectorType>(TyR)->getNumElements();
321     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
322       return Res;
323     for (uint64_t i = 0; i < NumElementsL; ++i) {
324       if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
325                                  cast<Constant>(RV->getOperand(i))))
326         return Res;
327     }
328     return 0;
329   }
330   case Value::ConstantExprVal: {
331     const ConstantExpr *LE = cast<ConstantExpr>(L);
332     const ConstantExpr *RE = cast<ConstantExpr>(R);
333     unsigned NumOperandsL = LE->getNumOperands();
334     unsigned NumOperandsR = RE->getNumOperands();
335     if (int Res = cmpNumbers(NumOperandsL, NumOperandsR))
336       return Res;
337     for (unsigned i = 0; i < NumOperandsL; ++i) {
338       if (int Res = cmpConstants(cast<Constant>(LE->getOperand(i)),
339                                  cast<Constant>(RE->getOperand(i))))
340         return Res;
341     }
342     return 0;
343   }
344   case Value::BlockAddressVal: {
345     const BlockAddress *LBA = cast<BlockAddress>(L);
346     const BlockAddress *RBA = cast<BlockAddress>(R);
347     if (int Res = cmpValues(LBA->getFunction(), RBA->getFunction()))
348       return Res;
349     if (LBA->getFunction() == RBA->getFunction()) {
350       // They are BBs in the same function. Order by which comes first in the
351       // BB order of the function. This order is deterministic.
352       Function* F = LBA->getFunction();
353       BasicBlock *LBB = LBA->getBasicBlock();
354       BasicBlock *RBB = RBA->getBasicBlock();
355       if (LBB == RBB)
356         return 0;
357       for(BasicBlock &BB : F->getBasicBlockList()) {
358         if (&BB == LBB) {
359           assert(&BB != RBB);
360           return -1;
361         }
362         if (&BB == RBB)
363           return 1;
364       }
365       llvm_unreachable("Basic Block Address does not point to a basic block in "
366                        "its function.");
367       return -1;
368     } else {
369       // cmpValues said the functions are the same. So because they aren't
370       // literally the same pointer, they must respectively be the left and
371       // right functions.
372       assert(LBA->getFunction() == FnL && RBA->getFunction() == FnR);
373       // cmpValues will tell us if these are equivalent BasicBlocks, in the
374       // context of their respective functions.
375       return cmpValues(LBA->getBasicBlock(), RBA->getBasicBlock());
376     }
377   }
378   default: // Unknown constant, abort.
379     LLVM_DEBUG(dbgs() << "Looking at valueID " << L->getValueID() << "\n");
380     llvm_unreachable("Constant ValueID not recognized.");
381     return -1;
382   }
383 }
384 
385 int FunctionComparator::cmpGlobalValues(GlobalValue *L, GlobalValue *R) const {
386   uint64_t LNumber = GlobalNumbers->getNumber(L);
387   uint64_t RNumber = GlobalNumbers->getNumber(R);
388   return cmpNumbers(LNumber, RNumber);
389 }
390 
391 /// cmpType - compares two types,
392 /// defines total ordering among the types set.
393 /// See method declaration comments for more details.
394 int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const {
395   PointerType *PTyL = dyn_cast<PointerType>(TyL);
396   PointerType *PTyR = dyn_cast<PointerType>(TyR);
397 
398   const DataLayout &DL = FnL->getParent()->getDataLayout();
399   if (PTyL && PTyL->getAddressSpace() == 0)
400     TyL = DL.getIntPtrType(TyL);
401   if (PTyR && PTyR->getAddressSpace() == 0)
402     TyR = DL.getIntPtrType(TyR);
403 
404   if (TyL == TyR)
405     return 0;
406 
407   if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
408     return Res;
409 
410   switch (TyL->getTypeID()) {
411   default:
412     llvm_unreachable("Unknown type!");
413   case Type::IntegerTyID:
414     return cmpNumbers(cast<IntegerType>(TyL)->getBitWidth(),
415                       cast<IntegerType>(TyR)->getBitWidth());
416   // TyL == TyR would have returned true earlier, because types are uniqued.
417   case Type::VoidTyID:
418   case Type::FloatTyID:
419   case Type::DoubleTyID:
420   case Type::X86_FP80TyID:
421   case Type::FP128TyID:
422   case Type::PPC_FP128TyID:
423   case Type::LabelTyID:
424   case Type::MetadataTyID:
425   case Type::TokenTyID:
426     return 0;
427 
428   case Type::PointerTyID:
429     assert(PTyL && PTyR && "Both types must be pointers here.");
430     return cmpNumbers(PTyL->getAddressSpace(), PTyR->getAddressSpace());
431 
432   case Type::StructTyID: {
433     StructType *STyL = cast<StructType>(TyL);
434     StructType *STyR = cast<StructType>(TyR);
435     if (STyL->getNumElements() != STyR->getNumElements())
436       return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
437 
438     if (STyL->isPacked() != STyR->isPacked())
439       return cmpNumbers(STyL->isPacked(), STyR->isPacked());
440 
441     for (unsigned i = 0, e = STyL->getNumElements(); i != e; ++i) {
442       if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i)))
443         return Res;
444     }
445     return 0;
446   }
447 
448   case Type::FunctionTyID: {
449     FunctionType *FTyL = cast<FunctionType>(TyL);
450     FunctionType *FTyR = cast<FunctionType>(TyR);
451     if (FTyL->getNumParams() != FTyR->getNumParams())
452       return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams());
453 
454     if (FTyL->isVarArg() != FTyR->isVarArg())
455       return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg());
456 
457     if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType()))
458       return Res;
459 
460     for (unsigned i = 0, e = FTyL->getNumParams(); i != e; ++i) {
461       if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i)))
462         return Res;
463     }
464     return 0;
465   }
466 
467   case Type::ArrayTyID:
468   case Type::VectorTyID: {
469     auto *STyL = cast<SequentialType>(TyL);
470     auto *STyR = cast<SequentialType>(TyR);
471     if (STyL->getNumElements() != STyR->getNumElements())
472       return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
473     return cmpTypes(STyL->getElementType(), STyR->getElementType());
474   }
475   }
476 }
477 
478 // Determine whether the two operations are the same except that pointer-to-A
479 // and pointer-to-B are equivalent. This should be kept in sync with
480 // Instruction::isSameOperationAs.
481 // Read method declaration comments for more details.
482 int FunctionComparator::cmpOperations(const Instruction *L,
483                                       const Instruction *R,
484                                       bool &needToCmpOperands) const {
485   needToCmpOperands = true;
486   if (int Res = cmpValues(L, R))
487     return Res;
488 
489   // Differences from Instruction::isSameOperationAs:
490   //  * replace type comparison with calls to cmpTypes.
491   //  * we test for I->getRawSubclassOptionalData (nuw/nsw/tail) at the top.
492   //  * because of the above, we don't test for the tail bit on calls later on.
493   if (int Res = cmpNumbers(L->getOpcode(), R->getOpcode()))
494     return Res;
495 
496   if (const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(L)) {
497     needToCmpOperands = false;
498     const GetElementPtrInst *GEPR = cast<GetElementPtrInst>(R);
499     if (int Res =
500             cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand()))
501       return Res;
502     return cmpGEPs(GEPL, GEPR);
503   }
504 
505   if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
506     return Res;
507 
508   if (int Res = cmpTypes(L->getType(), R->getType()))
509     return Res;
510 
511   if (int Res = cmpNumbers(L->getRawSubclassOptionalData(),
512                            R->getRawSubclassOptionalData()))
513     return Res;
514 
515   // We have two instructions of identical opcode and #operands.  Check to see
516   // if all operands are the same type
517   for (unsigned i = 0, e = L->getNumOperands(); i != e; ++i) {
518     if (int Res =
519             cmpTypes(L->getOperand(i)->getType(), R->getOperand(i)->getType()))
520       return Res;
521   }
522 
523   // Check special state that is a part of some instructions.
524   if (const AllocaInst *AI = dyn_cast<AllocaInst>(L)) {
525     if (int Res = cmpTypes(AI->getAllocatedType(),
526                            cast<AllocaInst>(R)->getAllocatedType()))
527       return Res;
528     return cmpNumbers(AI->getAlignment(), cast<AllocaInst>(R)->getAlignment());
529   }
530   if (const LoadInst *LI = dyn_cast<LoadInst>(L)) {
531     if (int Res = cmpNumbers(LI->isVolatile(), cast<LoadInst>(R)->isVolatile()))
532       return Res;
533     if (int Res =
534             cmpNumbers(LI->getAlignment(), cast<LoadInst>(R)->getAlignment()))
535       return Res;
536     if (int Res =
537             cmpOrderings(LI->getOrdering(), cast<LoadInst>(R)->getOrdering()))
538       return Res;
539     if (int Res = cmpNumbers(LI->getSyncScopeID(),
540                              cast<LoadInst>(R)->getSyncScopeID()))
541       return Res;
542     return cmpRangeMetadata(LI->getMetadata(LLVMContext::MD_range),
543         cast<LoadInst>(R)->getMetadata(LLVMContext::MD_range));
544   }
545   if (const StoreInst *SI = dyn_cast<StoreInst>(L)) {
546     if (int Res =
547             cmpNumbers(SI->isVolatile(), cast<StoreInst>(R)->isVolatile()))
548       return Res;
549     if (int Res =
550             cmpNumbers(SI->getAlignment(), cast<StoreInst>(R)->getAlignment()))
551       return Res;
552     if (int Res =
553             cmpOrderings(SI->getOrdering(), cast<StoreInst>(R)->getOrdering()))
554       return Res;
555     return cmpNumbers(SI->getSyncScopeID(),
556                       cast<StoreInst>(R)->getSyncScopeID());
557   }
558   if (const CmpInst *CI = dyn_cast<CmpInst>(L))
559     return cmpNumbers(CI->getPredicate(), cast<CmpInst>(R)->getPredicate());
560   if (auto CSL = CallSite(const_cast<Instruction *>(L))) {
561     auto CSR = CallSite(const_cast<Instruction *>(R));
562     if (int Res = cmpNumbers(CSL.getCallingConv(), CSR.getCallingConv()))
563       return Res;
564     if (int Res = cmpAttrs(CSL.getAttributes(), CSR.getAttributes()))
565       return Res;
566     if (int Res = cmpOperandBundlesSchema(L, R))
567       return Res;
568     if (const CallInst *CI = dyn_cast<CallInst>(L))
569       if (int Res = cmpNumbers(CI->getTailCallKind(),
570                                cast<CallInst>(R)->getTailCallKind()))
571         return Res;
572     return cmpRangeMetadata(L->getMetadata(LLVMContext::MD_range),
573                             R->getMetadata(LLVMContext::MD_range));
574   }
575   if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) {
576     ArrayRef<unsigned> LIndices = IVI->getIndices();
577     ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices();
578     if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
579       return Res;
580     for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
581       if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
582         return Res;
583     }
584     return 0;
585   }
586   if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(L)) {
587     ArrayRef<unsigned> LIndices = EVI->getIndices();
588     ArrayRef<unsigned> RIndices = cast<ExtractValueInst>(R)->getIndices();
589     if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
590       return Res;
591     for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
592       if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
593         return Res;
594     }
595   }
596   if (const FenceInst *FI = dyn_cast<FenceInst>(L)) {
597     if (int Res =
598             cmpOrderings(FI->getOrdering(), cast<FenceInst>(R)->getOrdering()))
599       return Res;
600     return cmpNumbers(FI->getSyncScopeID(),
601                       cast<FenceInst>(R)->getSyncScopeID());
602   }
603   if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(L)) {
604     if (int Res = cmpNumbers(CXI->isVolatile(),
605                              cast<AtomicCmpXchgInst>(R)->isVolatile()))
606       return Res;
607     if (int Res = cmpNumbers(CXI->isWeak(),
608                              cast<AtomicCmpXchgInst>(R)->isWeak()))
609       return Res;
610     if (int Res =
611             cmpOrderings(CXI->getSuccessOrdering(),
612                          cast<AtomicCmpXchgInst>(R)->getSuccessOrdering()))
613       return Res;
614     if (int Res =
615             cmpOrderings(CXI->getFailureOrdering(),
616                          cast<AtomicCmpXchgInst>(R)->getFailureOrdering()))
617       return Res;
618     return cmpNumbers(CXI->getSyncScopeID(),
619                       cast<AtomicCmpXchgInst>(R)->getSyncScopeID());
620   }
621   if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(L)) {
622     if (int Res = cmpNumbers(RMWI->getOperation(),
623                              cast<AtomicRMWInst>(R)->getOperation()))
624       return Res;
625     if (int Res = cmpNumbers(RMWI->isVolatile(),
626                              cast<AtomicRMWInst>(R)->isVolatile()))
627       return Res;
628     if (int Res = cmpOrderings(RMWI->getOrdering(),
629                              cast<AtomicRMWInst>(R)->getOrdering()))
630       return Res;
631     return cmpNumbers(RMWI->getSyncScopeID(),
632                       cast<AtomicRMWInst>(R)->getSyncScopeID());
633   }
634   if (const PHINode *PNL = dyn_cast<PHINode>(L)) {
635     const PHINode *PNR = cast<PHINode>(R);
636     // Ensure that in addition to the incoming values being identical
637     // (checked by the caller of this function), the incoming blocks
638     // are also identical.
639     for (unsigned i = 0, e = PNL->getNumIncomingValues(); i != e; ++i) {
640       if (int Res =
641               cmpValues(PNL->getIncomingBlock(i), PNR->getIncomingBlock(i)))
642         return Res;
643     }
644   }
645   return 0;
646 }
647 
648 // Determine whether two GEP operations perform the same underlying arithmetic.
649 // Read method declaration comments for more details.
650 int FunctionComparator::cmpGEPs(const GEPOperator *GEPL,
651                                 const GEPOperator *GEPR) const {
652   unsigned int ASL = GEPL->getPointerAddressSpace();
653   unsigned int ASR = GEPR->getPointerAddressSpace();
654 
655   if (int Res = cmpNumbers(ASL, ASR))
656     return Res;
657 
658   // When we have target data, we can reduce the GEP down to the value in bytes
659   // added to the address.
660   const DataLayout &DL = FnL->getParent()->getDataLayout();
661   unsigned BitWidth = DL.getPointerSizeInBits(ASL);
662   APInt OffsetL(BitWidth, 0), OffsetR(BitWidth, 0);
663   if (GEPL->accumulateConstantOffset(DL, OffsetL) &&
664       GEPR->accumulateConstantOffset(DL, OffsetR))
665     return cmpAPInts(OffsetL, OffsetR);
666   if (int Res = cmpTypes(GEPL->getSourceElementType(),
667                          GEPR->getSourceElementType()))
668     return Res;
669 
670   if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
671     return Res;
672 
673   for (unsigned i = 0, e = GEPL->getNumOperands(); i != e; ++i) {
674     if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))
675       return Res;
676   }
677 
678   return 0;
679 }
680 
681 int FunctionComparator::cmpInlineAsm(const InlineAsm *L,
682                                      const InlineAsm *R) const {
683   // InlineAsm's are uniqued. If they are the same pointer, obviously they are
684   // the same, otherwise compare the fields.
685   if (L == R)
686     return 0;
687   if (int Res = cmpTypes(L->getFunctionType(), R->getFunctionType()))
688     return Res;
689   if (int Res = cmpMem(L->getAsmString(), R->getAsmString()))
690     return Res;
691   if (int Res = cmpMem(L->getConstraintString(), R->getConstraintString()))
692     return Res;
693   if (int Res = cmpNumbers(L->hasSideEffects(), R->hasSideEffects()))
694     return Res;
695   if (int Res = cmpNumbers(L->isAlignStack(), R->isAlignStack()))
696     return Res;
697   if (int Res = cmpNumbers(L->getDialect(), R->getDialect()))
698     return Res;
699   assert(L->getFunctionType() != R->getFunctionType());
700   return 0;
701 }
702 
703 /// Compare two values used by the two functions under pair-wise comparison. If
704 /// this is the first time the values are seen, they're added to the mapping so
705 /// that we will detect mismatches on next use.
706 /// See comments in declaration for more details.
707 int FunctionComparator::cmpValues(const Value *L, const Value *R) const {
708   // Catch self-reference case.
709   if (L == FnL) {
710     if (R == FnR)
711       return 0;
712     return -1;
713   }
714   if (R == FnR) {
715     if (L == FnL)
716       return 0;
717     return 1;
718   }
719 
720   const Constant *ConstL = dyn_cast<Constant>(L);
721   const Constant *ConstR = dyn_cast<Constant>(R);
722   if (ConstL && ConstR) {
723     if (L == R)
724       return 0;
725     return cmpConstants(ConstL, ConstR);
726   }
727 
728   if (ConstL)
729     return 1;
730   if (ConstR)
731     return -1;
732 
733   const InlineAsm *InlineAsmL = dyn_cast<InlineAsm>(L);
734   const InlineAsm *InlineAsmR = dyn_cast<InlineAsm>(R);
735 
736   if (InlineAsmL && InlineAsmR)
737     return cmpInlineAsm(InlineAsmL, InlineAsmR);
738   if (InlineAsmL)
739     return 1;
740   if (InlineAsmR)
741     return -1;
742 
743   auto LeftSN = sn_mapL.insert(std::make_pair(L, sn_mapL.size())),
744        RightSN = sn_mapR.insert(std::make_pair(R, sn_mapR.size()));
745 
746   return cmpNumbers(LeftSN.first->second, RightSN.first->second);
747 }
748 
749 // Test whether two basic blocks have equivalent behaviour.
750 int FunctionComparator::cmpBasicBlocks(const BasicBlock *BBL,
751                                        const BasicBlock *BBR) const {
752   BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end();
753   BasicBlock::const_iterator InstR = BBR->begin(), InstRE = BBR->end();
754 
755   do {
756     bool needToCmpOperands = true;
757     if (int Res = cmpOperations(&*InstL, &*InstR, needToCmpOperands))
758       return Res;
759     if (needToCmpOperands) {
760       assert(InstL->getNumOperands() == InstR->getNumOperands());
761 
762       for (unsigned i = 0, e = InstL->getNumOperands(); i != e; ++i) {
763         Value *OpL = InstL->getOperand(i);
764         Value *OpR = InstR->getOperand(i);
765         if (int Res = cmpValues(OpL, OpR))
766           return Res;
767         // cmpValues should ensure this is true.
768         assert(cmpTypes(OpL->getType(), OpR->getType()) == 0);
769       }
770     }
771 
772     ++InstL;
773     ++InstR;
774   } while (InstL != InstLE && InstR != InstRE);
775 
776   if (InstL != InstLE && InstR == InstRE)
777     return 1;
778   if (InstL == InstLE && InstR != InstRE)
779     return -1;
780   return 0;
781 }
782 
783 int FunctionComparator::compareSignature() const {
784   if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes()))
785     return Res;
786 
787   if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC()))
788     return Res;
789 
790   if (FnL->hasGC()) {
791     if (int Res = cmpMem(FnL->getGC(), FnR->getGC()))
792       return Res;
793   }
794 
795   if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection()))
796     return Res;
797 
798   if (FnL->hasSection()) {
799     if (int Res = cmpMem(FnL->getSection(), FnR->getSection()))
800       return Res;
801   }
802 
803   if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg()))
804     return Res;
805 
806   // TODO: if it's internal and only used in direct calls, we could handle this
807   // case too.
808   if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv()))
809     return Res;
810 
811   if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType()))
812     return Res;
813 
814   assert(FnL->arg_size() == FnR->arg_size() &&
815          "Identically typed functions have different numbers of args!");
816 
817   // Visit the arguments so that they get enumerated in the order they're
818   // passed in.
819   for (Function::const_arg_iterator ArgLI = FnL->arg_begin(),
820        ArgRI = FnR->arg_begin(),
821        ArgLE = FnL->arg_end();
822        ArgLI != ArgLE; ++ArgLI, ++ArgRI) {
823     if (cmpValues(&*ArgLI, &*ArgRI) != 0)
824       llvm_unreachable("Arguments repeat!");
825   }
826   return 0;
827 }
828 
829 // Test whether the two functions have equivalent behaviour.
830 int FunctionComparator::compare() {
831   beginCompare();
832 
833   if (int Res = compareSignature())
834     return Res;
835 
836   // We do a CFG-ordered walk since the actual ordering of the blocks in the
837   // linked list is immaterial. Our walk starts at the entry block for both
838   // functions, then takes each block from each terminator in order. As an
839   // artifact, this also means that unreachable blocks are ignored.
840   SmallVector<const BasicBlock *, 8> FnLBBs, FnRBBs;
841   SmallPtrSet<const BasicBlock *, 32> VisitedBBs; // in terms of F1.
842 
843   FnLBBs.push_back(&FnL->getEntryBlock());
844   FnRBBs.push_back(&FnR->getEntryBlock());
845 
846   VisitedBBs.insert(FnLBBs[0]);
847   while (!FnLBBs.empty()) {
848     const BasicBlock *BBL = FnLBBs.pop_back_val();
849     const BasicBlock *BBR = FnRBBs.pop_back_val();
850 
851     if (int Res = cmpValues(BBL, BBR))
852       return Res;
853 
854     if (int Res = cmpBasicBlocks(BBL, BBR))
855       return Res;
856 
857     const Instruction *TermL = BBL->getTerminator();
858     const Instruction *TermR = BBR->getTerminator();
859 
860     assert(TermL->getNumSuccessors() == TermR->getNumSuccessors());
861     for (unsigned i = 0, e = TermL->getNumSuccessors(); i != e; ++i) {
862       if (!VisitedBBs.insert(TermL->getSuccessor(i)).second)
863         continue;
864 
865       FnLBBs.push_back(TermL->getSuccessor(i));
866       FnRBBs.push_back(TermR->getSuccessor(i));
867     }
868   }
869   return 0;
870 }
871 
872 namespace {
873 
874 // Accumulate the hash of a sequence of 64-bit integers. This is similar to a
875 // hash of a sequence of 64bit ints, but the entire input does not need to be
876 // available at once. This interface is necessary for functionHash because it
877 // needs to accumulate the hash as the structure of the function is traversed
878 // without saving these values to an intermediate buffer. This form of hashing
879 // is not often needed, as usually the object to hash is just read from a
880 // buffer.
881 class HashAccumulator64 {
882   uint64_t Hash;
883 
884 public:
885   // Initialize to random constant, so the state isn't zero.
886   HashAccumulator64() { Hash = 0x6acaa36bef8325c5ULL; }
887 
888   void add(uint64_t V) {
889      Hash = hashing::detail::hash_16_bytes(Hash, V);
890   }
891 
892   // No finishing is required, because the entire hash value is used.
893   uint64_t getHash() { return Hash; }
894 };
895 
896 } // end anonymous namespace
897 
898 // A function hash is calculated by considering only the number of arguments and
899 // whether a function is varargs, the order of basic blocks (given by the
900 // successors of each basic block in depth first order), and the order of
901 // opcodes of each instruction within each of these basic blocks. This mirrors
902 // the strategy compare() uses to compare functions by walking the BBs in depth
903 // first order and comparing each instruction in sequence. Because this hash
904 // does not look at the operands, it is insensitive to things such as the
905 // target of calls and the constants used in the function, which makes it useful
906 // when possibly merging functions which are the same modulo constants and call
907 // targets.
908 FunctionComparator::FunctionHash FunctionComparator::functionHash(Function &F) {
909   HashAccumulator64 H;
910   H.add(F.isVarArg());
911   H.add(F.arg_size());
912 
913   SmallVector<const BasicBlock *, 8> BBs;
914   SmallPtrSet<const BasicBlock *, 16> VisitedBBs;
915 
916   // Walk the blocks in the same order as FunctionComparator::cmpBasicBlocks(),
917   // accumulating the hash of the function "structure." (BB and opcode sequence)
918   BBs.push_back(&F.getEntryBlock());
919   VisitedBBs.insert(BBs[0]);
920   while (!BBs.empty()) {
921     const BasicBlock *BB = BBs.pop_back_val();
922     // This random value acts as a block header, as otherwise the partition of
923     // opcodes into BBs wouldn't affect the hash, only the order of the opcodes
924     H.add(45798);
925     for (auto &Inst : *BB) {
926       H.add(Inst.getOpcode());
927     }
928     const Instruction *Term = BB->getTerminator();
929     for (unsigned i = 0, e = Term->getNumSuccessors(); i != e; ++i) {
930       if (!VisitedBBs.insert(Term->getSuccessor(i)).second)
931         continue;
932       BBs.push_back(Term->getSuccessor(i));
933     }
934   }
935   return H.getHash();
936 }
937