14d6fb72aSErik Eckstein //===- FunctionComparator.h - Function Comparator -------------------------===//
24d6fb72aSErik Eckstein //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
64d6fb72aSErik Eckstein //
74d6fb72aSErik Eckstein //===----------------------------------------------------------------------===//
84d6fb72aSErik Eckstein //
94d6fb72aSErik Eckstein // This file implements the FunctionComparator and GlobalNumberState classes
104d6fb72aSErik Eckstein // which are used by the MergeFunctions pass for comparing functions.
114d6fb72aSErik Eckstein //
124d6fb72aSErik Eckstein //===----------------------------------------------------------------------===//
134d6fb72aSErik Eckstein 
144d6fb72aSErik Eckstein #include "llvm/Transforms/Utils/FunctionComparator.h"
15286d5897SEugene Zelenko #include "llvm/ADT/APFloat.h"
16286d5897SEugene Zelenko #include "llvm/ADT/APInt.h"
17286d5897SEugene Zelenko #include "llvm/ADT/ArrayRef.h"
18286d5897SEugene Zelenko #include "llvm/ADT/Hashing.h"
19286d5897SEugene Zelenko #include "llvm/ADT/SmallPtrSet.h"
20286d5897SEugene Zelenko #include "llvm/ADT/SmallVector.h"
21286d5897SEugene Zelenko #include "llvm/IR/Attributes.h"
22286d5897SEugene Zelenko #include "llvm/IR/BasicBlock.h"
23286d5897SEugene Zelenko #include "llvm/IR/Constant.h"
24286d5897SEugene Zelenko #include "llvm/IR/Constants.h"
25286d5897SEugene Zelenko #include "llvm/IR/DataLayout.h"
26286d5897SEugene Zelenko #include "llvm/IR/DerivedTypes.h"
27286d5897SEugene Zelenko #include "llvm/IR/Function.h"
28286d5897SEugene Zelenko #include "llvm/IR/GlobalValue.h"
294d6fb72aSErik Eckstein #include "llvm/IR/InlineAsm.h"
30286d5897SEugene Zelenko #include "llvm/IR/InstrTypes.h"
31286d5897SEugene Zelenko #include "llvm/IR/Instruction.h"
326bda14b3SChandler Carruth #include "llvm/IR/Instructions.h"
33286d5897SEugene Zelenko #include "llvm/IR/LLVMContext.h"
34286d5897SEugene Zelenko #include "llvm/IR/Metadata.h"
354d6fb72aSErik Eckstein #include "llvm/IR/Module.h"
36286d5897SEugene Zelenko #include "llvm/IR/Operator.h"
37286d5897SEugene Zelenko #include "llvm/IR/Type.h"
38286d5897SEugene Zelenko #include "llvm/IR/Value.h"
39286d5897SEugene Zelenko #include "llvm/Support/Casting.h"
40286d5897SEugene Zelenko #include "llvm/Support/Compiler.h"
414d6fb72aSErik Eckstein #include "llvm/Support/Debug.h"
42286d5897SEugene Zelenko #include "llvm/Support/ErrorHandling.h"
434d6fb72aSErik Eckstein #include "llvm/Support/raw_ostream.h"
44286d5897SEugene Zelenko #include <cassert>
45286d5897SEugene Zelenko #include <cstddef>
46286d5897SEugene Zelenko #include <cstdint>
47286d5897SEugene Zelenko #include <utility>
484d6fb72aSErik Eckstein 
494d6fb72aSErik Eckstein using namespace llvm;
504d6fb72aSErik Eckstein 
514d6fb72aSErik Eckstein #define DEBUG_TYPE "functioncomparator"
524d6fb72aSErik Eckstein 
534d6fb72aSErik Eckstein int FunctionComparator::cmpNumbers(uint64_t L, uint64_t R) const {
544213bc76SMircea Trofin   if (L < R)
554213bc76SMircea Trofin     return -1;
564213bc76SMircea Trofin   if (L > R)
574213bc76SMircea Trofin     return 1;
584d6fb72aSErik Eckstein   return 0;
594d6fb72aSErik Eckstein }
604d6fb72aSErik Eckstein 
614d6fb72aSErik Eckstein int FunctionComparator::cmpOrderings(AtomicOrdering L, AtomicOrdering R) const {
624213bc76SMircea Trofin   if ((int)L < (int)R)
634213bc76SMircea Trofin     return -1;
644213bc76SMircea Trofin   if ((int)L > (int)R)
654213bc76SMircea Trofin     return 1;
664d6fb72aSErik Eckstein   return 0;
674d6fb72aSErik Eckstein }
684d6fb72aSErik Eckstein 
694d6fb72aSErik Eckstein int FunctionComparator::cmpAPInts(const APInt &L, const APInt &R) const {
704d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth()))
714d6fb72aSErik Eckstein     return Res;
724213bc76SMircea Trofin   if (L.ugt(R))
734213bc76SMircea Trofin     return 1;
744213bc76SMircea Trofin   if (R.ugt(L))
754213bc76SMircea Trofin     return -1;
764d6fb72aSErik Eckstein   return 0;
774d6fb72aSErik Eckstein }
784d6fb72aSErik Eckstein 
794d6fb72aSErik Eckstein int FunctionComparator::cmpAPFloats(const APFloat &L, const APFloat &R) const {
804d6fb72aSErik Eckstein   // Floats are ordered first by semantics (i.e. float, double, half, etc.),
814d6fb72aSErik Eckstein   // then by value interpreted as a bitstring (aka APInt).
824d6fb72aSErik Eckstein   const fltSemantics &SL = L.getSemantics(), &SR = R.getSemantics();
834d6fb72aSErik Eckstein   if (int Res = cmpNumbers(APFloat::semanticsPrecision(SL),
844d6fb72aSErik Eckstein                            APFloat::semanticsPrecision(SR)))
854d6fb72aSErik Eckstein     return Res;
864d6fb72aSErik Eckstein   if (int Res = cmpNumbers(APFloat::semanticsMaxExponent(SL),
874d6fb72aSErik Eckstein                            APFloat::semanticsMaxExponent(SR)))
884d6fb72aSErik Eckstein     return Res;
894d6fb72aSErik Eckstein   if (int Res = cmpNumbers(APFloat::semanticsMinExponent(SL),
904d6fb72aSErik Eckstein                            APFloat::semanticsMinExponent(SR)))
914d6fb72aSErik Eckstein     return Res;
924d6fb72aSErik Eckstein   if (int Res = cmpNumbers(APFloat::semanticsSizeInBits(SL),
934d6fb72aSErik Eckstein                            APFloat::semanticsSizeInBits(SR)))
944d6fb72aSErik Eckstein     return Res;
954d6fb72aSErik Eckstein   return cmpAPInts(L.bitcastToAPInt(), R.bitcastToAPInt());
964d6fb72aSErik Eckstein }
974d6fb72aSErik Eckstein 
984d6fb72aSErik Eckstein int FunctionComparator::cmpMem(StringRef L, StringRef R) const {
994d6fb72aSErik Eckstein   // Prevent heavy comparison, compare sizes first.
1004d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L.size(), R.size()))
1014d6fb72aSErik Eckstein     return Res;
1024d6fb72aSErik Eckstein 
1034d6fb72aSErik Eckstein   // Compare strings lexicographically only when it is necessary: only when
1044d6fb72aSErik Eckstein   // strings are equal in size.
1054d6fb72aSErik Eckstein   return L.compare(R);
1064d6fb72aSErik Eckstein }
1074d6fb72aSErik Eckstein 
108b518054bSReid Kleckner int FunctionComparator::cmpAttrs(const AttributeList L,
109b518054bSReid Kleckner                                  const AttributeList R) const {
1108bf67fe9SReid Kleckner   if (int Res = cmpNumbers(L.getNumAttrSets(), R.getNumAttrSets()))
1114d6fb72aSErik Eckstein     return Res;
1124d6fb72aSErik Eckstein 
1138bf67fe9SReid Kleckner   for (unsigned i = L.index_begin(), e = L.index_end(); i != e; ++i) {
1148bf67fe9SReid Kleckner     AttributeSet LAS = L.getAttributes(i);
1158bf67fe9SReid Kleckner     AttributeSet RAS = R.getAttributes(i);
1168bf67fe9SReid Kleckner     AttributeSet::iterator LI = LAS.begin(), LE = LAS.end();
1178bf67fe9SReid Kleckner     AttributeSet::iterator RI = RAS.begin(), RE = RAS.end();
1184d6fb72aSErik Eckstein     for (; LI != LE && RI != RE; ++LI, ++RI) {
1194d6fb72aSErik Eckstein       Attribute LA = *LI;
1204d6fb72aSErik Eckstein       Attribute RA = *RI;
12122c96a96STim Northover       if (LA.isTypeAttribute() && RA.isTypeAttribute()) {
12222c96a96STim Northover         if (LA.getKindAsEnum() != RA.getKindAsEnum())
12322c96a96STim Northover           return cmpNumbers(LA.getKindAsEnum(), RA.getKindAsEnum());
12422c96a96STim Northover 
12522c96a96STim Northover         Type *TyL = LA.getValueAsType();
12622c96a96STim Northover         Type *TyR = RA.getValueAsType();
127*f7fe7ea2STim Northover         if (TyL && TyR) {
128*f7fe7ea2STim Northover           if (int Res = cmpTypes(TyL, TyR))
129*f7fe7ea2STim Northover             return Res;
130*f7fe7ea2STim Northover           continue;
131*f7fe7ea2STim Northover         }
13222c96a96STim Northover 
13322c96a96STim Northover         // Two pointers, at least one null, so the comparison result is
13422c96a96STim Northover         // independent of the value of a real pointer.
135*f7fe7ea2STim Northover         if (int Res = cmpNumbers((uint64_t)TyL, (uint64_t)TyR))
136*f7fe7ea2STim Northover           return Res;
137*f7fe7ea2STim Northover         continue;
13822c96a96STim Northover       }
1394d6fb72aSErik Eckstein       if (LA < RA)
1404d6fb72aSErik Eckstein         return -1;
1414d6fb72aSErik Eckstein       if (RA < LA)
1424d6fb72aSErik Eckstein         return 1;
1434d6fb72aSErik Eckstein     }
1444d6fb72aSErik Eckstein     if (LI != LE)
1454d6fb72aSErik Eckstein       return 1;
1464d6fb72aSErik Eckstein     if (RI != RE)
1474d6fb72aSErik Eckstein       return -1;
1484d6fb72aSErik Eckstein   }
1494d6fb72aSErik Eckstein   return 0;
1504d6fb72aSErik Eckstein }
1514d6fb72aSErik Eckstein 
1524d6fb72aSErik Eckstein int FunctionComparator::cmpRangeMetadata(const MDNode *L,
1534d6fb72aSErik Eckstein                                          const MDNode *R) const {
1544d6fb72aSErik Eckstein   if (L == R)
1554d6fb72aSErik Eckstein     return 0;
1564d6fb72aSErik Eckstein   if (!L)
1574d6fb72aSErik Eckstein     return -1;
1584d6fb72aSErik Eckstein   if (!R)
1594d6fb72aSErik Eckstein     return 1;
1604d6fb72aSErik Eckstein   // Range metadata is a sequence of numbers. Make sure they are the same
1614d6fb72aSErik Eckstein   // sequence.
1624d6fb72aSErik Eckstein   // TODO: Note that as this is metadata, it is possible to drop and/or merge
1634d6fb72aSErik Eckstein   // this data when considering functions to merge. Thus this comparison would
1644d6fb72aSErik Eckstein   // return 0 (i.e. equivalent), but merging would become more complicated
1654d6fb72aSErik Eckstein   // because the ranges would need to be unioned. It is not likely that
1664d6fb72aSErik Eckstein   // functions differ ONLY in this metadata if they are actually the same
1674d6fb72aSErik Eckstein   // function semantically.
1684d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
1694d6fb72aSErik Eckstein     return Res;
1704d6fb72aSErik Eckstein   for (size_t I = 0; I < L->getNumOperands(); ++I) {
1714d6fb72aSErik Eckstein     ConstantInt *LLow = mdconst::extract<ConstantInt>(L->getOperand(I));
1724d6fb72aSErik Eckstein     ConstantInt *RLow = mdconst::extract<ConstantInt>(R->getOperand(I));
1734d6fb72aSErik Eckstein     if (int Res = cmpAPInts(LLow->getValue(), RLow->getValue()))
1744d6fb72aSErik Eckstein       return Res;
1754d6fb72aSErik Eckstein   }
1764d6fb72aSErik Eckstein   return 0;
1774d6fb72aSErik Eckstein }
1784d6fb72aSErik Eckstein 
1793ab319b2SMircea Trofin int FunctionComparator::cmpOperandBundlesSchema(const CallBase &LCS,
1803ab319b2SMircea Trofin                                                 const CallBase &RCS) const {
1813ab319b2SMircea Trofin   assert(LCS.getOpcode() == RCS.getOpcode() && "Can't compare otherwise!");
1824d6fb72aSErik Eckstein 
1834d6fb72aSErik Eckstein   if (int Res =
1843ab319b2SMircea Trofin           cmpNumbers(LCS.getNumOperandBundles(), RCS.getNumOperandBundles()))
1854d6fb72aSErik Eckstein     return Res;
1864d6fb72aSErik Eckstein 
1873ab319b2SMircea Trofin   for (unsigned I = 0, E = LCS.getNumOperandBundles(); I != E; ++I) {
1883ab319b2SMircea Trofin     auto OBL = LCS.getOperandBundleAt(I);
1893ab319b2SMircea Trofin     auto OBR = RCS.getOperandBundleAt(I);
1904d6fb72aSErik Eckstein 
1914d6fb72aSErik Eckstein     if (int Res = OBL.getTagName().compare(OBR.getTagName()))
1924d6fb72aSErik Eckstein       return Res;
1934d6fb72aSErik Eckstein 
1944d6fb72aSErik Eckstein     if (int Res = cmpNumbers(OBL.Inputs.size(), OBR.Inputs.size()))
1954d6fb72aSErik Eckstein       return Res;
1964d6fb72aSErik Eckstein   }
1974d6fb72aSErik Eckstein 
1984d6fb72aSErik Eckstein   return 0;
1994d6fb72aSErik Eckstein }
2004d6fb72aSErik Eckstein 
2014d6fb72aSErik Eckstein /// Constants comparison:
2024d6fb72aSErik Eckstein /// 1. Check whether type of L constant could be losslessly bitcasted to R
2034d6fb72aSErik Eckstein /// type.
2044d6fb72aSErik Eckstein /// 2. Compare constant contents.
2054d6fb72aSErik Eckstein /// For more details see declaration comments.
2064d6fb72aSErik Eckstein int FunctionComparator::cmpConstants(const Constant *L,
2074d6fb72aSErik Eckstein                                      const Constant *R) const {
2084d6fb72aSErik Eckstein   Type *TyL = L->getType();
2094d6fb72aSErik Eckstein   Type *TyR = R->getType();
2104d6fb72aSErik Eckstein 
2114d6fb72aSErik Eckstein   // Check whether types are bitcastable. This part is just re-factored
2124d6fb72aSErik Eckstein   // Type::canLosslesslyBitCastTo method, but instead of returning true/false,
2134d6fb72aSErik Eckstein   // we also pack into result which type is "less" for us.
2144d6fb72aSErik Eckstein   int TypesRes = cmpTypes(TyL, TyR);
2154d6fb72aSErik Eckstein   if (TypesRes != 0) {
2164d6fb72aSErik Eckstein     // Types are different, but check whether we can bitcast them.
2174d6fb72aSErik Eckstein     if (!TyL->isFirstClassType()) {
2184d6fb72aSErik Eckstein       if (TyR->isFirstClassType())
2194d6fb72aSErik Eckstein         return -1;
2204d6fb72aSErik Eckstein       // Neither TyL nor TyR are values of first class type. Return the result
2214d6fb72aSErik Eckstein       // of comparing the types
2224d6fb72aSErik Eckstein       return TypesRes;
2234d6fb72aSErik Eckstein     }
2244d6fb72aSErik Eckstein     if (!TyR->isFirstClassType()) {
2254d6fb72aSErik Eckstein       if (TyL->isFirstClassType())
2264d6fb72aSErik Eckstein         return 1;
2274d6fb72aSErik Eckstein       return TypesRes;
2284d6fb72aSErik Eckstein     }
2294d6fb72aSErik Eckstein 
2304d6fb72aSErik Eckstein     // Vector -> Vector conversions are always lossless if the two vector types
2314d6fb72aSErik Eckstein     // have the same size, otherwise not.
2324d6fb72aSErik Eckstein     unsigned TyLWidth = 0;
2334d6fb72aSErik Eckstein     unsigned TyRWidth = 0;
2344d6fb72aSErik Eckstein 
2354d6fb72aSErik Eckstein     if (auto *VecTyL = dyn_cast<VectorType>(TyL))
2368226d599SChristopher Tetreault       TyLWidth = VecTyL->getPrimitiveSizeInBits().getFixedSize();
2374d6fb72aSErik Eckstein     if (auto *VecTyR = dyn_cast<VectorType>(TyR))
2388226d599SChristopher Tetreault       TyRWidth = VecTyR->getPrimitiveSizeInBits().getFixedSize();
2394d6fb72aSErik Eckstein 
2404d6fb72aSErik Eckstein     if (TyLWidth != TyRWidth)
2414d6fb72aSErik Eckstein       return cmpNumbers(TyLWidth, TyRWidth);
2424d6fb72aSErik Eckstein 
2434d6fb72aSErik Eckstein     // Zero bit-width means neither TyL nor TyR are vectors.
2444d6fb72aSErik Eckstein     if (!TyLWidth) {
2454d6fb72aSErik Eckstein       PointerType *PTyL = dyn_cast<PointerType>(TyL);
2464d6fb72aSErik Eckstein       PointerType *PTyR = dyn_cast<PointerType>(TyR);
2474d6fb72aSErik Eckstein       if (PTyL && PTyR) {
2484d6fb72aSErik Eckstein         unsigned AddrSpaceL = PTyL->getAddressSpace();
2494d6fb72aSErik Eckstein         unsigned AddrSpaceR = PTyR->getAddressSpace();
2504d6fb72aSErik Eckstein         if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR))
2514d6fb72aSErik Eckstein           return Res;
2524d6fb72aSErik Eckstein       }
2534d6fb72aSErik Eckstein       if (PTyL)
2544d6fb72aSErik Eckstein         return 1;
2554d6fb72aSErik Eckstein       if (PTyR)
2564d6fb72aSErik Eckstein         return -1;
2574d6fb72aSErik Eckstein 
2584d6fb72aSErik Eckstein       // TyL and TyR aren't vectors, nor pointers. We don't know how to
2594d6fb72aSErik Eckstein       // bitcast them.
2604d6fb72aSErik Eckstein       return TypesRes;
2614d6fb72aSErik Eckstein     }
2624d6fb72aSErik Eckstein   }
2634d6fb72aSErik Eckstein 
2644d6fb72aSErik Eckstein   // OK, types are bitcastable, now check constant contents.
2654d6fb72aSErik Eckstein 
2664d6fb72aSErik Eckstein   if (L->isNullValue() && R->isNullValue())
2674d6fb72aSErik Eckstein     return TypesRes;
2684d6fb72aSErik Eckstein   if (L->isNullValue() && !R->isNullValue())
2694d6fb72aSErik Eckstein     return 1;
2704d6fb72aSErik Eckstein   if (!L->isNullValue() && R->isNullValue())
2714d6fb72aSErik Eckstein     return -1;
2724d6fb72aSErik Eckstein 
2734d6fb72aSErik Eckstein   auto GlobalValueL = const_cast<GlobalValue *>(dyn_cast<GlobalValue>(L));
2744d6fb72aSErik Eckstein   auto GlobalValueR = const_cast<GlobalValue *>(dyn_cast<GlobalValue>(R));
2754d6fb72aSErik Eckstein   if (GlobalValueL && GlobalValueR) {
2764d6fb72aSErik Eckstein     return cmpGlobalValues(GlobalValueL, GlobalValueR);
2774d6fb72aSErik Eckstein   }
2784d6fb72aSErik Eckstein 
2794d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
2804d6fb72aSErik Eckstein     return Res;
2814d6fb72aSErik Eckstein 
2824d6fb72aSErik Eckstein   if (const auto *SeqL = dyn_cast<ConstantDataSequential>(L)) {
2834d6fb72aSErik Eckstein     const auto *SeqR = cast<ConstantDataSequential>(R);
2844d6fb72aSErik Eckstein     // This handles ConstantDataArray and ConstantDataVector. Note that we
2854d6fb72aSErik Eckstein     // compare the two raw data arrays, which might differ depending on the host
2864d6fb72aSErik Eckstein     // endianness. This isn't a problem though, because the endiness of a module
2874d6fb72aSErik Eckstein     // will affect the order of the constants, but this order is the same
2884d6fb72aSErik Eckstein     // for a given input module and host platform.
2894d6fb72aSErik Eckstein     return cmpMem(SeqL->getRawDataValues(), SeqR->getRawDataValues());
2904d6fb72aSErik Eckstein   }
2914d6fb72aSErik Eckstein 
2924d6fb72aSErik Eckstein   switch (L->getValueID()) {
2934d6fb72aSErik Eckstein   case Value::UndefValueVal:
2944d6fb72aSErik Eckstein   case Value::ConstantTokenNoneVal:
2954d6fb72aSErik Eckstein     return TypesRes;
2964d6fb72aSErik Eckstein   case Value::ConstantIntVal: {
2974d6fb72aSErik Eckstein     const APInt &LInt = cast<ConstantInt>(L)->getValue();
2984d6fb72aSErik Eckstein     const APInt &RInt = cast<ConstantInt>(R)->getValue();
2994d6fb72aSErik Eckstein     return cmpAPInts(LInt, RInt);
3004d6fb72aSErik Eckstein   }
3014d6fb72aSErik Eckstein   case Value::ConstantFPVal: {
3024d6fb72aSErik Eckstein     const APFloat &LAPF = cast<ConstantFP>(L)->getValueAPF();
3034d6fb72aSErik Eckstein     const APFloat &RAPF = cast<ConstantFP>(R)->getValueAPF();
3044d6fb72aSErik Eckstein     return cmpAPFloats(LAPF, RAPF);
3054d6fb72aSErik Eckstein   }
3064d6fb72aSErik Eckstein   case Value::ConstantArrayVal: {
3074d6fb72aSErik Eckstein     const ConstantArray *LA = cast<ConstantArray>(L);
3084d6fb72aSErik Eckstein     const ConstantArray *RA = cast<ConstantArray>(R);
3094d6fb72aSErik Eckstein     uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements();
3104d6fb72aSErik Eckstein     uint64_t NumElementsR = cast<ArrayType>(TyR)->getNumElements();
3114d6fb72aSErik Eckstein     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
3124d6fb72aSErik Eckstein       return Res;
3134d6fb72aSErik Eckstein     for (uint64_t i = 0; i < NumElementsL; ++i) {
3144d6fb72aSErik Eckstein       if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
3154d6fb72aSErik Eckstein                                  cast<Constant>(RA->getOperand(i))))
3164d6fb72aSErik Eckstein         return Res;
3174d6fb72aSErik Eckstein     }
3184d6fb72aSErik Eckstein     return 0;
3194d6fb72aSErik Eckstein   }
3204d6fb72aSErik Eckstein   case Value::ConstantStructVal: {
3214d6fb72aSErik Eckstein     const ConstantStruct *LS = cast<ConstantStruct>(L);
3224d6fb72aSErik Eckstein     const ConstantStruct *RS = cast<ConstantStruct>(R);
3234d6fb72aSErik Eckstein     unsigned NumElementsL = cast<StructType>(TyL)->getNumElements();
3244d6fb72aSErik Eckstein     unsigned NumElementsR = cast<StructType>(TyR)->getNumElements();
3254d6fb72aSErik Eckstein     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
3264d6fb72aSErik Eckstein       return Res;
3274d6fb72aSErik Eckstein     for (unsigned i = 0; i != NumElementsL; ++i) {
3284d6fb72aSErik Eckstein       if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
3294d6fb72aSErik Eckstein                                  cast<Constant>(RS->getOperand(i))))
3304d6fb72aSErik Eckstein         return Res;
3314d6fb72aSErik Eckstein     }
3324d6fb72aSErik Eckstein     return 0;
3334d6fb72aSErik Eckstein   }
3344d6fb72aSErik Eckstein   case Value::ConstantVectorVal: {
3354d6fb72aSErik Eckstein     const ConstantVector *LV = cast<ConstantVector>(L);
3364d6fb72aSErik Eckstein     const ConstantVector *RV = cast<ConstantVector>(R);
3378d11ec66SChristopher Tetreault     unsigned NumElementsL = cast<FixedVectorType>(TyL)->getNumElements();
3388d11ec66SChristopher Tetreault     unsigned NumElementsR = cast<FixedVectorType>(TyR)->getNumElements();
3394d6fb72aSErik Eckstein     if (int Res = cmpNumbers(NumElementsL, NumElementsR))
3404d6fb72aSErik Eckstein       return Res;
3414d6fb72aSErik Eckstein     for (uint64_t i = 0; i < NumElementsL; ++i) {
3424d6fb72aSErik Eckstein       if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
3434d6fb72aSErik Eckstein                                  cast<Constant>(RV->getOperand(i))))
3444d6fb72aSErik Eckstein         return Res;
3454d6fb72aSErik Eckstein     }
3464d6fb72aSErik Eckstein     return 0;
3474d6fb72aSErik Eckstein   }
3484d6fb72aSErik Eckstein   case Value::ConstantExprVal: {
3494d6fb72aSErik Eckstein     const ConstantExpr *LE = cast<ConstantExpr>(L);
3504d6fb72aSErik Eckstein     const ConstantExpr *RE = cast<ConstantExpr>(R);
3514d6fb72aSErik Eckstein     unsigned NumOperandsL = LE->getNumOperands();
3524d6fb72aSErik Eckstein     unsigned NumOperandsR = RE->getNumOperands();
3534d6fb72aSErik Eckstein     if (int Res = cmpNumbers(NumOperandsL, NumOperandsR))
3544d6fb72aSErik Eckstein       return Res;
3554d6fb72aSErik Eckstein     for (unsigned i = 0; i < NumOperandsL; ++i) {
3564d6fb72aSErik Eckstein       if (int Res = cmpConstants(cast<Constant>(LE->getOperand(i)),
3574d6fb72aSErik Eckstein                                  cast<Constant>(RE->getOperand(i))))
3584d6fb72aSErik Eckstein         return Res;
3594d6fb72aSErik Eckstein     }
3604d6fb72aSErik Eckstein     return 0;
3614d6fb72aSErik Eckstein   }
3624d6fb72aSErik Eckstein   case Value::BlockAddressVal: {
3634d6fb72aSErik Eckstein     const BlockAddress *LBA = cast<BlockAddress>(L);
3644d6fb72aSErik Eckstein     const BlockAddress *RBA = cast<BlockAddress>(R);
3654d6fb72aSErik Eckstein     if (int Res = cmpValues(LBA->getFunction(), RBA->getFunction()))
3664d6fb72aSErik Eckstein       return Res;
3674d6fb72aSErik Eckstein     if (LBA->getFunction() == RBA->getFunction()) {
3684d6fb72aSErik Eckstein       // They are BBs in the same function. Order by which comes first in the
3694d6fb72aSErik Eckstein       // BB order of the function. This order is deterministic.
3704d6fb72aSErik Eckstein       Function *F = LBA->getFunction();
3714d6fb72aSErik Eckstein       BasicBlock *LBB = LBA->getBasicBlock();
3724d6fb72aSErik Eckstein       BasicBlock *RBB = RBA->getBasicBlock();
3734d6fb72aSErik Eckstein       if (LBB == RBB)
3744d6fb72aSErik Eckstein         return 0;
3754d6fb72aSErik Eckstein       for (BasicBlock &BB : F->getBasicBlockList()) {
3764d6fb72aSErik Eckstein         if (&BB == LBB) {
3774d6fb72aSErik Eckstein           assert(&BB != RBB);
3784d6fb72aSErik Eckstein           return -1;
3794d6fb72aSErik Eckstein         }
3804d6fb72aSErik Eckstein         if (&BB == RBB)
3814d6fb72aSErik Eckstein           return 1;
3824d6fb72aSErik Eckstein       }
3834d6fb72aSErik Eckstein       llvm_unreachable("Basic Block Address does not point to a basic block in "
3844d6fb72aSErik Eckstein                        "its function.");
3854d6fb72aSErik Eckstein       return -1;
3864d6fb72aSErik Eckstein     } else {
3874d6fb72aSErik Eckstein       // cmpValues said the functions are the same. So because they aren't
3884d6fb72aSErik Eckstein       // literally the same pointer, they must respectively be the left and
3894d6fb72aSErik Eckstein       // right functions.
3904d6fb72aSErik Eckstein       assert(LBA->getFunction() == FnL && RBA->getFunction() == FnR);
3914d6fb72aSErik Eckstein       // cmpValues will tell us if these are equivalent BasicBlocks, in the
3924d6fb72aSErik Eckstein       // context of their respective functions.
3934d6fb72aSErik Eckstein       return cmpValues(LBA->getBasicBlock(), RBA->getBasicBlock());
3944d6fb72aSErik Eckstein     }
3954d6fb72aSErik Eckstein   }
3964d6fb72aSErik Eckstein   default: // Unknown constant, abort.
397d34e60caSNicola Zaghen     LLVM_DEBUG(dbgs() << "Looking at valueID " << L->getValueID() << "\n");
3984d6fb72aSErik Eckstein     llvm_unreachable("Constant ValueID not recognized.");
3994d6fb72aSErik Eckstein     return -1;
4004d6fb72aSErik Eckstein   }
4014d6fb72aSErik Eckstein }
4024d6fb72aSErik Eckstein 
4034d6fb72aSErik Eckstein int FunctionComparator::cmpGlobalValues(GlobalValue *L, GlobalValue *R) const {
404c1d52e5cSErik Eckstein   uint64_t LNumber = GlobalNumbers->getNumber(L);
405c1d52e5cSErik Eckstein   uint64_t RNumber = GlobalNumbers->getNumber(R);
406c1d52e5cSErik Eckstein   return cmpNumbers(LNumber, RNumber);
4074d6fb72aSErik Eckstein }
4084d6fb72aSErik Eckstein 
4094d6fb72aSErik Eckstein /// cmpType - compares two types,
4104d6fb72aSErik Eckstein /// defines total ordering among the types set.
4114d6fb72aSErik Eckstein /// See method declaration comments for more details.
4124d6fb72aSErik Eckstein int FunctionComparator::cmpTypes(Type *TyL, Type *TyR) const {
4134d6fb72aSErik Eckstein   PointerType *PTyL = dyn_cast<PointerType>(TyL);
4144d6fb72aSErik Eckstein   PointerType *PTyR = dyn_cast<PointerType>(TyR);
4154d6fb72aSErik Eckstein 
4164d6fb72aSErik Eckstein   const DataLayout &DL = FnL->getParent()->getDataLayout();
4174d6fb72aSErik Eckstein   if (PTyL && PTyL->getAddressSpace() == 0)
4184d6fb72aSErik Eckstein     TyL = DL.getIntPtrType(TyL);
4194d6fb72aSErik Eckstein   if (PTyR && PTyR->getAddressSpace() == 0)
4204d6fb72aSErik Eckstein     TyR = DL.getIntPtrType(TyR);
4214d6fb72aSErik Eckstein 
4224d6fb72aSErik Eckstein   if (TyL == TyR)
4234d6fb72aSErik Eckstein     return 0;
4244d6fb72aSErik Eckstein 
4254d6fb72aSErik Eckstein   if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
4264d6fb72aSErik Eckstein     return Res;
4274d6fb72aSErik Eckstein 
4284d6fb72aSErik Eckstein   switch (TyL->getTypeID()) {
4294d6fb72aSErik Eckstein   default:
4304d6fb72aSErik Eckstein     llvm_unreachable("Unknown type!");
4314d6fb72aSErik Eckstein   case Type::IntegerTyID:
4324d6fb72aSErik Eckstein     return cmpNumbers(cast<IntegerType>(TyL)->getBitWidth(),
4334d6fb72aSErik Eckstein                       cast<IntegerType>(TyR)->getBitWidth());
4344d6fb72aSErik Eckstein   // TyL == TyR would have returned true earlier, because types are uniqued.
4354d6fb72aSErik Eckstein   case Type::VoidTyID:
4364d6fb72aSErik Eckstein   case Type::FloatTyID:
4374d6fb72aSErik Eckstein   case Type::DoubleTyID:
4384d6fb72aSErik Eckstein   case Type::X86_FP80TyID:
4394d6fb72aSErik Eckstein   case Type::FP128TyID:
4404d6fb72aSErik Eckstein   case Type::PPC_FP128TyID:
4414d6fb72aSErik Eckstein   case Type::LabelTyID:
4424d6fb72aSErik Eckstein   case Type::MetadataTyID:
4434d6fb72aSErik Eckstein   case Type::TokenTyID:
4444d6fb72aSErik Eckstein     return 0;
4454d6fb72aSErik Eckstein 
446286d5897SEugene Zelenko   case Type::PointerTyID:
4474d6fb72aSErik Eckstein     assert(PTyL && PTyR && "Both types must be pointers here.");
4484d6fb72aSErik Eckstein     return cmpNumbers(PTyL->getAddressSpace(), PTyR->getAddressSpace());
4494d6fb72aSErik Eckstein 
4504d6fb72aSErik Eckstein   case Type::StructTyID: {
4514d6fb72aSErik Eckstein     StructType *STyL = cast<StructType>(TyL);
4524d6fb72aSErik Eckstein     StructType *STyR = cast<StructType>(TyR);
4534d6fb72aSErik Eckstein     if (STyL->getNumElements() != STyR->getNumElements())
4544d6fb72aSErik Eckstein       return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
4554d6fb72aSErik Eckstein 
4564d6fb72aSErik Eckstein     if (STyL->isPacked() != STyR->isPacked())
4574d6fb72aSErik Eckstein       return cmpNumbers(STyL->isPacked(), STyR->isPacked());
4584d6fb72aSErik Eckstein 
4594d6fb72aSErik Eckstein     for (unsigned i = 0, e = STyL->getNumElements(); i != e; ++i) {
4604d6fb72aSErik Eckstein       if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i)))
4614d6fb72aSErik Eckstein         return Res;
4624d6fb72aSErik Eckstein     }
4634d6fb72aSErik Eckstein     return 0;
4644d6fb72aSErik Eckstein   }
4654d6fb72aSErik Eckstein 
4664d6fb72aSErik Eckstein   case Type::FunctionTyID: {
4674d6fb72aSErik Eckstein     FunctionType *FTyL = cast<FunctionType>(TyL);
4684d6fb72aSErik Eckstein     FunctionType *FTyR = cast<FunctionType>(TyR);
4694d6fb72aSErik Eckstein     if (FTyL->getNumParams() != FTyR->getNumParams())
4704d6fb72aSErik Eckstein       return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams());
4714d6fb72aSErik Eckstein 
4724d6fb72aSErik Eckstein     if (FTyL->isVarArg() != FTyR->isVarArg())
4734d6fb72aSErik Eckstein       return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg());
4744d6fb72aSErik Eckstein 
4754d6fb72aSErik Eckstein     if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType()))
4764d6fb72aSErik Eckstein       return Res;
4774d6fb72aSErik Eckstein 
4784d6fb72aSErik Eckstein     for (unsigned i = 0, e = FTyL->getNumParams(); i != e; ++i) {
4794d6fb72aSErik Eckstein       if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i)))
4804d6fb72aSErik Eckstein         return Res;
4814d6fb72aSErik Eckstein     }
4824d6fb72aSErik Eckstein     return 0;
4834d6fb72aSErik Eckstein   }
4844d6fb72aSErik Eckstein 
48568b03aeeSEli Friedman   case Type::ArrayTyID: {
48668b03aeeSEli Friedman     auto *STyL = cast<ArrayType>(TyL);
48768b03aeeSEli Friedman     auto *STyR = cast<ArrayType>(TyR);
488bc070524SPeter Collingbourne     if (STyL->getNumElements() != STyR->getNumElements())
489bc070524SPeter Collingbourne       return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
490bc070524SPeter Collingbourne     return cmpTypes(STyL->getElementType(), STyR->getElementType());
4914d6fb72aSErik Eckstein   }
4922dea3f12SChristopher Tetreault   case Type::FixedVectorTyID:
4932dea3f12SChristopher Tetreault   case Type::ScalableVectorTyID: {
49468b03aeeSEli Friedman     auto *STyL = cast<VectorType>(TyL);
49568b03aeeSEli Friedman     auto *STyR = cast<VectorType>(TyR);
496f4257c58SDavid Sherwood     if (STyL->getElementCount().isScalable() !=
497f4257c58SDavid Sherwood         STyR->getElementCount().isScalable())
498f4257c58SDavid Sherwood       return cmpNumbers(STyL->getElementCount().isScalable(),
499f4257c58SDavid Sherwood                         STyR->getElementCount().isScalable());
500f4257c58SDavid Sherwood     if (STyL->getElementCount() != STyR->getElementCount())
501f4257c58SDavid Sherwood       return cmpNumbers(STyL->getElementCount().getKnownMinValue(),
502f4257c58SDavid Sherwood                         STyR->getElementCount().getKnownMinValue());
50368b03aeeSEli Friedman     return cmpTypes(STyL->getElementType(), STyR->getElementType());
50468b03aeeSEli Friedman   }
5054d6fb72aSErik Eckstein   }
5064d6fb72aSErik Eckstein }
5074d6fb72aSErik Eckstein 
5084d6fb72aSErik Eckstein // Determine whether the two operations are the same except that pointer-to-A
5094d6fb72aSErik Eckstein // and pointer-to-B are equivalent. This should be kept in sync with
5104d6fb72aSErik Eckstein // Instruction::isSameOperationAs.
5114d6fb72aSErik Eckstein // Read method declaration comments for more details.
5124d6fb72aSErik Eckstein int FunctionComparator::cmpOperations(const Instruction *L,
5134d6fb72aSErik Eckstein                                       const Instruction *R,
5144d6fb72aSErik Eckstein                                       bool &needToCmpOperands) const {
5154d6fb72aSErik Eckstein   needToCmpOperands = true;
5164d6fb72aSErik Eckstein   if (int Res = cmpValues(L, R))
5174d6fb72aSErik Eckstein     return Res;
5184d6fb72aSErik Eckstein 
5194d6fb72aSErik Eckstein   // Differences from Instruction::isSameOperationAs:
5204d6fb72aSErik Eckstein   //  * replace type comparison with calls to cmpTypes.
5214d6fb72aSErik Eckstein   //  * we test for I->getRawSubclassOptionalData (nuw/nsw/tail) at the top.
5224d6fb72aSErik Eckstein   //  * because of the above, we don't test for the tail bit on calls later on.
5234d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getOpcode(), R->getOpcode()))
5244d6fb72aSErik Eckstein     return Res;
5254d6fb72aSErik Eckstein 
5264d6fb72aSErik Eckstein   if (const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(L)) {
5274d6fb72aSErik Eckstein     needToCmpOperands = false;
5284d6fb72aSErik Eckstein     const GetElementPtrInst *GEPR = cast<GetElementPtrInst>(R);
5294d6fb72aSErik Eckstein     if (int Res =
5304d6fb72aSErik Eckstein             cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand()))
5314d6fb72aSErik Eckstein       return Res;
5324d6fb72aSErik Eckstein     return cmpGEPs(GEPL, GEPR);
5334d6fb72aSErik Eckstein   }
5344d6fb72aSErik Eckstein 
5354d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
5364d6fb72aSErik Eckstein     return Res;
5374d6fb72aSErik Eckstein 
5384d6fb72aSErik Eckstein   if (int Res = cmpTypes(L->getType(), R->getType()))
5394d6fb72aSErik Eckstein     return Res;
5404d6fb72aSErik Eckstein 
5414d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getRawSubclassOptionalData(),
5424d6fb72aSErik Eckstein                            R->getRawSubclassOptionalData()))
5434d6fb72aSErik Eckstein     return Res;
5444d6fb72aSErik Eckstein 
5454d6fb72aSErik Eckstein   // We have two instructions of identical opcode and #operands.  Check to see
5464d6fb72aSErik Eckstein   // if all operands are the same type
5474d6fb72aSErik Eckstein   for (unsigned i = 0, e = L->getNumOperands(); i != e; ++i) {
5484d6fb72aSErik Eckstein     if (int Res =
5494d6fb72aSErik Eckstein             cmpTypes(L->getOperand(i)->getType(), R->getOperand(i)->getType()))
5504d6fb72aSErik Eckstein       return Res;
5514d6fb72aSErik Eckstein   }
5524d6fb72aSErik Eckstein 
5534d6fb72aSErik Eckstein   // Check special state that is a part of some instructions.
5544d6fb72aSErik Eckstein   if (const AllocaInst *AI = dyn_cast<AllocaInst>(L)) {
5554d6fb72aSErik Eckstein     if (int Res = cmpTypes(AI->getAllocatedType(),
5564d6fb72aSErik Eckstein                            cast<AllocaInst>(R)->getAllocatedType()))
5574d6fb72aSErik Eckstein       return Res;
5584d6fb72aSErik Eckstein     return cmpNumbers(AI->getAlignment(), cast<AllocaInst>(R)->getAlignment());
5594d6fb72aSErik Eckstein   }
5604d6fb72aSErik Eckstein   if (const LoadInst *LI = dyn_cast<LoadInst>(L)) {
5614d6fb72aSErik Eckstein     if (int Res = cmpNumbers(LI->isVolatile(), cast<LoadInst>(R)->isVolatile()))
5624d6fb72aSErik Eckstein       return Res;
5634d6fb72aSErik Eckstein     if (int Res =
5644d6fb72aSErik Eckstein             cmpNumbers(LI->getAlignment(), cast<LoadInst>(R)->getAlignment()))
5654d6fb72aSErik Eckstein       return Res;
5664d6fb72aSErik Eckstein     if (int Res =
5674d6fb72aSErik Eckstein             cmpOrderings(LI->getOrdering(), cast<LoadInst>(R)->getOrdering()))
5684d6fb72aSErik Eckstein       return Res;
569bb80d3e1SKonstantin Zhuravlyov     if (int Res = cmpNumbers(LI->getSyncScopeID(),
570bb80d3e1SKonstantin Zhuravlyov                              cast<LoadInst>(R)->getSyncScopeID()))
5714d6fb72aSErik Eckstein       return Res;
5724213bc76SMircea Trofin     return cmpRangeMetadata(
5734213bc76SMircea Trofin         LI->getMetadata(LLVMContext::MD_range),
5744d6fb72aSErik Eckstein         cast<LoadInst>(R)->getMetadata(LLVMContext::MD_range));
5754d6fb72aSErik Eckstein   }
5764d6fb72aSErik Eckstein   if (const StoreInst *SI = dyn_cast<StoreInst>(L)) {
5774d6fb72aSErik Eckstein     if (int Res =
5784d6fb72aSErik Eckstein             cmpNumbers(SI->isVolatile(), cast<StoreInst>(R)->isVolatile()))
5794d6fb72aSErik Eckstein       return Res;
5804d6fb72aSErik Eckstein     if (int Res =
5814d6fb72aSErik Eckstein             cmpNumbers(SI->getAlignment(), cast<StoreInst>(R)->getAlignment()))
5824d6fb72aSErik Eckstein       return Res;
5834d6fb72aSErik Eckstein     if (int Res =
5844d6fb72aSErik Eckstein             cmpOrderings(SI->getOrdering(), cast<StoreInst>(R)->getOrdering()))
5854d6fb72aSErik Eckstein       return Res;
586bb80d3e1SKonstantin Zhuravlyov     return cmpNumbers(SI->getSyncScopeID(),
587bb80d3e1SKonstantin Zhuravlyov                       cast<StoreInst>(R)->getSyncScopeID());
5884d6fb72aSErik Eckstein   }
5894d6fb72aSErik Eckstein   if (const CmpInst *CI = dyn_cast<CmpInst>(L))
5904d6fb72aSErik Eckstein     return cmpNumbers(CI->getPredicate(), cast<CmpInst>(R)->getPredicate());
5914213bc76SMircea Trofin   if (auto *CBL = dyn_cast<CallBase>(L)) {
5924213bc76SMircea Trofin     auto *CBR = cast<CallBase>(R);
5934213bc76SMircea Trofin     if (int Res = cmpNumbers(CBL->getCallingConv(), CBR->getCallingConv()))
5944d6fb72aSErik Eckstein       return Res;
5954213bc76SMircea Trofin     if (int Res = cmpAttrs(CBL->getAttributes(), CBR->getAttributes()))
5964d6fb72aSErik Eckstein       return Res;
5973ab319b2SMircea Trofin     if (int Res = cmpOperandBundlesSchema(*CBL, *CBR))
5984d6fb72aSErik Eckstein       return Res;
599e21ab221SVedant Kumar     if (const CallInst *CI = dyn_cast<CallInst>(L))
600e21ab221SVedant Kumar       if (int Res = cmpNumbers(CI->getTailCallKind(),
601e21ab221SVedant Kumar                                cast<CallInst>(R)->getTailCallKind()))
6024d6fb72aSErik Eckstein         return Res;
603e21ab221SVedant Kumar     return cmpRangeMetadata(L->getMetadata(LLVMContext::MD_range),
604e21ab221SVedant Kumar                             R->getMetadata(LLVMContext::MD_range));
6054d6fb72aSErik Eckstein   }
6064d6fb72aSErik Eckstein   if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) {
6074d6fb72aSErik Eckstein     ArrayRef<unsigned> LIndices = IVI->getIndices();
6084d6fb72aSErik Eckstein     ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices();
6094d6fb72aSErik Eckstein     if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
6104d6fb72aSErik Eckstein       return Res;
6114d6fb72aSErik Eckstein     for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
6124d6fb72aSErik Eckstein       if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
6134d6fb72aSErik Eckstein         return Res;
6144d6fb72aSErik Eckstein     }
6154d6fb72aSErik Eckstein     return 0;
6164d6fb72aSErik Eckstein   }
6174d6fb72aSErik Eckstein   if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(L)) {
6184d6fb72aSErik Eckstein     ArrayRef<unsigned> LIndices = EVI->getIndices();
6194d6fb72aSErik Eckstein     ArrayRef<unsigned> RIndices = cast<ExtractValueInst>(R)->getIndices();
6204d6fb72aSErik Eckstein     if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
6214d6fb72aSErik Eckstein       return Res;
6224d6fb72aSErik Eckstein     for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
6234d6fb72aSErik Eckstein       if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
6244d6fb72aSErik Eckstein         return Res;
6254d6fb72aSErik Eckstein     }
6264d6fb72aSErik Eckstein   }
6274d6fb72aSErik Eckstein   if (const FenceInst *FI = dyn_cast<FenceInst>(L)) {
6284d6fb72aSErik Eckstein     if (int Res =
6294d6fb72aSErik Eckstein             cmpOrderings(FI->getOrdering(), cast<FenceInst>(R)->getOrdering()))
6304d6fb72aSErik Eckstein       return Res;
631bb80d3e1SKonstantin Zhuravlyov     return cmpNumbers(FI->getSyncScopeID(),
632bb80d3e1SKonstantin Zhuravlyov                       cast<FenceInst>(R)->getSyncScopeID());
6334d6fb72aSErik Eckstein   }
6344d6fb72aSErik Eckstein   if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(L)) {
6354d6fb72aSErik Eckstein     if (int Res = cmpNumbers(CXI->isVolatile(),
6364d6fb72aSErik Eckstein                              cast<AtomicCmpXchgInst>(R)->isVolatile()))
6374d6fb72aSErik Eckstein       return Res;
6384213bc76SMircea Trofin     if (int Res =
6394213bc76SMircea Trofin             cmpNumbers(CXI->isWeak(), cast<AtomicCmpXchgInst>(R)->isWeak()))
6404d6fb72aSErik Eckstein       return Res;
6414d6fb72aSErik Eckstein     if (int Res =
6424d6fb72aSErik Eckstein             cmpOrderings(CXI->getSuccessOrdering(),
6434d6fb72aSErik Eckstein                          cast<AtomicCmpXchgInst>(R)->getSuccessOrdering()))
6444d6fb72aSErik Eckstein       return Res;
6454d6fb72aSErik Eckstein     if (int Res =
6464d6fb72aSErik Eckstein             cmpOrderings(CXI->getFailureOrdering(),
6474d6fb72aSErik Eckstein                          cast<AtomicCmpXchgInst>(R)->getFailureOrdering()))
6484d6fb72aSErik Eckstein       return Res;
649bb80d3e1SKonstantin Zhuravlyov     return cmpNumbers(CXI->getSyncScopeID(),
650bb80d3e1SKonstantin Zhuravlyov                       cast<AtomicCmpXchgInst>(R)->getSyncScopeID());
6514d6fb72aSErik Eckstein   }
6524d6fb72aSErik Eckstein   if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(L)) {
6534d6fb72aSErik Eckstein     if (int Res = cmpNumbers(RMWI->getOperation(),
6544d6fb72aSErik Eckstein                              cast<AtomicRMWInst>(R)->getOperation()))
6554d6fb72aSErik Eckstein       return Res;
6564d6fb72aSErik Eckstein     if (int Res = cmpNumbers(RMWI->isVolatile(),
6574d6fb72aSErik Eckstein                              cast<AtomicRMWInst>(R)->isVolatile()))
6584d6fb72aSErik Eckstein       return Res;
6594d6fb72aSErik Eckstein     if (int Res = cmpOrderings(RMWI->getOrdering(),
6604d6fb72aSErik Eckstein                                cast<AtomicRMWInst>(R)->getOrdering()))
6614d6fb72aSErik Eckstein       return Res;
662bb80d3e1SKonstantin Zhuravlyov     return cmpNumbers(RMWI->getSyncScopeID(),
663bb80d3e1SKonstantin Zhuravlyov                       cast<AtomicRMWInst>(R)->getSyncScopeID());
6644d6fb72aSErik Eckstein   }
66560e9ee16SNikita Popov   if (const ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(L)) {
66660e9ee16SNikita Popov     ArrayRef<int> LMask = SVI->getShuffleMask();
66760e9ee16SNikita Popov     ArrayRef<int> RMask = cast<ShuffleVectorInst>(R)->getShuffleMask();
66860e9ee16SNikita Popov     if (int Res = cmpNumbers(LMask.size(), RMask.size()))
66960e9ee16SNikita Popov       return Res;
67060e9ee16SNikita Popov     for (size_t i = 0, e = LMask.size(); i != e; ++i) {
67160e9ee16SNikita Popov       if (int Res = cmpNumbers(LMask[i], RMask[i]))
67260e9ee16SNikita Popov         return Res;
67360e9ee16SNikita Popov     }
67460e9ee16SNikita Popov   }
6754d6fb72aSErik Eckstein   if (const PHINode *PNL = dyn_cast<PHINode>(L)) {
6764d6fb72aSErik Eckstein     const PHINode *PNR = cast<PHINode>(R);
6774d6fb72aSErik Eckstein     // Ensure that in addition to the incoming values being identical
6784d6fb72aSErik Eckstein     // (checked by the caller of this function), the incoming blocks
6794d6fb72aSErik Eckstein     // are also identical.
6804d6fb72aSErik Eckstein     for (unsigned i = 0, e = PNL->getNumIncomingValues(); i != e; ++i) {
6814d6fb72aSErik Eckstein       if (int Res =
6824d6fb72aSErik Eckstein               cmpValues(PNL->getIncomingBlock(i), PNR->getIncomingBlock(i)))
6834d6fb72aSErik Eckstein         return Res;
6844d6fb72aSErik Eckstein     }
6854d6fb72aSErik Eckstein   }
6864d6fb72aSErik Eckstein   return 0;
6874d6fb72aSErik Eckstein }
6884d6fb72aSErik Eckstein 
6894d6fb72aSErik Eckstein // Determine whether two GEP operations perform the same underlying arithmetic.
6904d6fb72aSErik Eckstein // Read method declaration comments for more details.
6914d6fb72aSErik Eckstein int FunctionComparator::cmpGEPs(const GEPOperator *GEPL,
6924d6fb72aSErik Eckstein                                 const GEPOperator *GEPR) const {
6934d6fb72aSErik Eckstein   unsigned int ASL = GEPL->getPointerAddressSpace();
6944d6fb72aSErik Eckstein   unsigned int ASR = GEPR->getPointerAddressSpace();
6954d6fb72aSErik Eckstein 
6964d6fb72aSErik Eckstein   if (int Res = cmpNumbers(ASL, ASR))
6974d6fb72aSErik Eckstein     return Res;
6984d6fb72aSErik Eckstein 
6994d6fb72aSErik Eckstein   // When we have target data, we can reduce the GEP down to the value in bytes
7004d6fb72aSErik Eckstein   // added to the address.
7014d6fb72aSErik Eckstein   const DataLayout &DL = FnL->getParent()->getDataLayout();
7024d6fb72aSErik Eckstein   unsigned BitWidth = DL.getPointerSizeInBits(ASL);
7034d6fb72aSErik Eckstein   APInt OffsetL(BitWidth, 0), OffsetR(BitWidth, 0);
7044d6fb72aSErik Eckstein   if (GEPL->accumulateConstantOffset(DL, OffsetL) &&
7054d6fb72aSErik Eckstein       GEPR->accumulateConstantOffset(DL, OffsetR))
7064d6fb72aSErik Eckstein     return cmpAPInts(OffsetL, OffsetR);
7074213bc76SMircea Trofin   if (int Res =
7084213bc76SMircea Trofin           cmpTypes(GEPL->getSourceElementType(), GEPR->getSourceElementType()))
7094d6fb72aSErik Eckstein     return Res;
7104d6fb72aSErik Eckstein 
7114d6fb72aSErik Eckstein   if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
7124d6fb72aSErik Eckstein     return Res;
7134d6fb72aSErik Eckstein 
7144d6fb72aSErik Eckstein   for (unsigned i = 0, e = GEPL->getNumOperands(); i != e; ++i) {
7154d6fb72aSErik Eckstein     if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))
7164d6fb72aSErik Eckstein       return Res;
7174d6fb72aSErik Eckstein   }
7184d6fb72aSErik Eckstein 
7194d6fb72aSErik Eckstein   return 0;
7204d6fb72aSErik Eckstein }
7214d6fb72aSErik Eckstein 
7224d6fb72aSErik Eckstein int FunctionComparator::cmpInlineAsm(const InlineAsm *L,
7234d6fb72aSErik Eckstein                                      const InlineAsm *R) const {
7244d6fb72aSErik Eckstein   // InlineAsm's are uniqued. If they are the same pointer, obviously they are
7254d6fb72aSErik Eckstein   // the same, otherwise compare the fields.
7264d6fb72aSErik Eckstein   if (L == R)
7274d6fb72aSErik Eckstein     return 0;
7284d6fb72aSErik Eckstein   if (int Res = cmpTypes(L->getFunctionType(), R->getFunctionType()))
7294d6fb72aSErik Eckstein     return Res;
7304d6fb72aSErik Eckstein   if (int Res = cmpMem(L->getAsmString(), R->getAsmString()))
7314d6fb72aSErik Eckstein     return Res;
7324d6fb72aSErik Eckstein   if (int Res = cmpMem(L->getConstraintString(), R->getConstraintString()))
7334d6fb72aSErik Eckstein     return Res;
7344d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->hasSideEffects(), R->hasSideEffects()))
7354d6fb72aSErik Eckstein     return Res;
7364d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->isAlignStack(), R->isAlignStack()))
7374d6fb72aSErik Eckstein     return Res;
7384d6fb72aSErik Eckstein   if (int Res = cmpNumbers(L->getDialect(), R->getDialect()))
7394d6fb72aSErik Eckstein     return Res;
74068403564Swhitequark   assert(L->getFunctionType() != R->getFunctionType());
7414d6fb72aSErik Eckstein   return 0;
7424d6fb72aSErik Eckstein }
7434d6fb72aSErik Eckstein 
7444d6fb72aSErik Eckstein /// Compare two values used by the two functions under pair-wise comparison. If
7454d6fb72aSErik Eckstein /// this is the first time the values are seen, they're added to the mapping so
7464d6fb72aSErik Eckstein /// that we will detect mismatches on next use.
7474d6fb72aSErik Eckstein /// See comments in declaration for more details.
7484d6fb72aSErik Eckstein int FunctionComparator::cmpValues(const Value *L, const Value *R) const {
7494d6fb72aSErik Eckstein   // Catch self-reference case.
7504d6fb72aSErik Eckstein   if (L == FnL) {
7514d6fb72aSErik Eckstein     if (R == FnR)
7524d6fb72aSErik Eckstein       return 0;
7534d6fb72aSErik Eckstein     return -1;
7544d6fb72aSErik Eckstein   }
7554d6fb72aSErik Eckstein   if (R == FnR) {
7564d6fb72aSErik Eckstein     if (L == FnL)
7574d6fb72aSErik Eckstein       return 0;
7584d6fb72aSErik Eckstein     return 1;
7594d6fb72aSErik Eckstein   }
7604d6fb72aSErik Eckstein 
7614d6fb72aSErik Eckstein   const Constant *ConstL = dyn_cast<Constant>(L);
7624d6fb72aSErik Eckstein   const Constant *ConstR = dyn_cast<Constant>(R);
7634d6fb72aSErik Eckstein   if (ConstL && ConstR) {
7644d6fb72aSErik Eckstein     if (L == R)
7654d6fb72aSErik Eckstein       return 0;
7664d6fb72aSErik Eckstein     return cmpConstants(ConstL, ConstR);
7674d6fb72aSErik Eckstein   }
7684d6fb72aSErik Eckstein 
7694d6fb72aSErik Eckstein   if (ConstL)
7704d6fb72aSErik Eckstein     return 1;
7714d6fb72aSErik Eckstein   if (ConstR)
7724d6fb72aSErik Eckstein     return -1;
7734d6fb72aSErik Eckstein 
7744d6fb72aSErik Eckstein   const InlineAsm *InlineAsmL = dyn_cast<InlineAsm>(L);
7754d6fb72aSErik Eckstein   const InlineAsm *InlineAsmR = dyn_cast<InlineAsm>(R);
7764d6fb72aSErik Eckstein 
7774d6fb72aSErik Eckstein   if (InlineAsmL && InlineAsmR)
7784d6fb72aSErik Eckstein     return cmpInlineAsm(InlineAsmL, InlineAsmR);
7794d6fb72aSErik Eckstein   if (InlineAsmL)
7804d6fb72aSErik Eckstein     return 1;
7814d6fb72aSErik Eckstein   if (InlineAsmR)
7824d6fb72aSErik Eckstein     return -1;
7834d6fb72aSErik Eckstein 
7844d6fb72aSErik Eckstein   auto LeftSN = sn_mapL.insert(std::make_pair(L, sn_mapL.size())),
7854d6fb72aSErik Eckstein        RightSN = sn_mapR.insert(std::make_pair(R, sn_mapR.size()));
7864d6fb72aSErik Eckstein 
7874d6fb72aSErik Eckstein   return cmpNumbers(LeftSN.first->second, RightSN.first->second);
7884d6fb72aSErik Eckstein }
7894d6fb72aSErik Eckstein 
7904d6fb72aSErik Eckstein // Test whether two basic blocks have equivalent behaviour.
7914d6fb72aSErik Eckstein int FunctionComparator::cmpBasicBlocks(const BasicBlock *BBL,
7924d6fb72aSErik Eckstein                                        const BasicBlock *BBR) const {
7934d6fb72aSErik Eckstein   BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end();
7944d6fb72aSErik Eckstein   BasicBlock::const_iterator InstR = BBR->begin(), InstRE = BBR->end();
7954d6fb72aSErik Eckstein 
7964d6fb72aSErik Eckstein   do {
7974d6fb72aSErik Eckstein     bool needToCmpOperands = true;
7984d6fb72aSErik Eckstein     if (int Res = cmpOperations(&*InstL, &*InstR, needToCmpOperands))
7994d6fb72aSErik Eckstein       return Res;
8004d6fb72aSErik Eckstein     if (needToCmpOperands) {
8014d6fb72aSErik Eckstein       assert(InstL->getNumOperands() == InstR->getNumOperands());
8024d6fb72aSErik Eckstein 
8034d6fb72aSErik Eckstein       for (unsigned i = 0, e = InstL->getNumOperands(); i != e; ++i) {
8044d6fb72aSErik Eckstein         Value *OpL = InstL->getOperand(i);
8054d6fb72aSErik Eckstein         Value *OpR = InstR->getOperand(i);
8064d6fb72aSErik Eckstein         if (int Res = cmpValues(OpL, OpR))
8074d6fb72aSErik Eckstein           return Res;
8084d6fb72aSErik Eckstein         // cmpValues should ensure this is true.
8094d6fb72aSErik Eckstein         assert(cmpTypes(OpL->getType(), OpR->getType()) == 0);
8104d6fb72aSErik Eckstein       }
8114d6fb72aSErik Eckstein     }
8124d6fb72aSErik Eckstein 
8134d6fb72aSErik Eckstein     ++InstL;
8144d6fb72aSErik Eckstein     ++InstR;
8154d6fb72aSErik Eckstein   } while (InstL != InstLE && InstR != InstRE);
8164d6fb72aSErik Eckstein 
8174d6fb72aSErik Eckstein   if (InstL != InstLE && InstR == InstRE)
8184d6fb72aSErik Eckstein     return 1;
8194d6fb72aSErik Eckstein   if (InstL == InstLE && InstR != InstRE)
8204d6fb72aSErik Eckstein     return -1;
8214d6fb72aSErik Eckstein   return 0;
8224d6fb72aSErik Eckstein }
8234d6fb72aSErik Eckstein 
8244d6fb72aSErik Eckstein int FunctionComparator::compareSignature() const {
8254d6fb72aSErik Eckstein   if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes()))
8264d6fb72aSErik Eckstein     return Res;
8274d6fb72aSErik Eckstein 
8284d6fb72aSErik Eckstein   if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC()))
8294d6fb72aSErik Eckstein     return Res;
8304d6fb72aSErik Eckstein 
8314d6fb72aSErik Eckstein   if (FnL->hasGC()) {
8324d6fb72aSErik Eckstein     if (int Res = cmpMem(FnL->getGC(), FnR->getGC()))
8334d6fb72aSErik Eckstein       return Res;
8344d6fb72aSErik Eckstein   }
8354d6fb72aSErik Eckstein 
8364d6fb72aSErik Eckstein   if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection()))
8374d6fb72aSErik Eckstein     return Res;
8384d6fb72aSErik Eckstein 
8394d6fb72aSErik Eckstein   if (FnL->hasSection()) {
8404d6fb72aSErik Eckstein     if (int Res = cmpMem(FnL->getSection(), FnR->getSection()))
8414d6fb72aSErik Eckstein       return Res;
8424d6fb72aSErik Eckstein   }
8434d6fb72aSErik Eckstein 
8444d6fb72aSErik Eckstein   if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg()))
8454d6fb72aSErik Eckstein     return Res;
8464d6fb72aSErik Eckstein 
8474d6fb72aSErik Eckstein   // TODO: if it's internal and only used in direct calls, we could handle this
8484d6fb72aSErik Eckstein   // case too.
8494d6fb72aSErik Eckstein   if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv()))
8504d6fb72aSErik Eckstein     return Res;
8514d6fb72aSErik Eckstein 
8524d6fb72aSErik Eckstein   if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType()))
8534d6fb72aSErik Eckstein     return Res;
8544d6fb72aSErik Eckstein 
8554d6fb72aSErik Eckstein   assert(FnL->arg_size() == FnR->arg_size() &&
8564d6fb72aSErik Eckstein          "Identically typed functions have different numbers of args!");
8574d6fb72aSErik Eckstein 
8584d6fb72aSErik Eckstein   // Visit the arguments so that they get enumerated in the order they're
8594d6fb72aSErik Eckstein   // passed in.
8604d6fb72aSErik Eckstein   for (Function::const_arg_iterator ArgLI = FnL->arg_begin(),
8614d6fb72aSErik Eckstein                                     ArgRI = FnR->arg_begin(),
8624d6fb72aSErik Eckstein                                     ArgLE = FnL->arg_end();
8634d6fb72aSErik Eckstein        ArgLI != ArgLE; ++ArgLI, ++ArgRI) {
8644d6fb72aSErik Eckstein     if (cmpValues(&*ArgLI, &*ArgRI) != 0)
8654d6fb72aSErik Eckstein       llvm_unreachable("Arguments repeat!");
8664d6fb72aSErik Eckstein   }
8674d6fb72aSErik Eckstein   return 0;
8684d6fb72aSErik Eckstein }
8694d6fb72aSErik Eckstein 
8704d6fb72aSErik Eckstein // Test whether the two functions have equivalent behaviour.
8714d6fb72aSErik Eckstein int FunctionComparator::compare() {
8724d6fb72aSErik Eckstein   beginCompare();
8734d6fb72aSErik Eckstein 
8744d6fb72aSErik Eckstein   if (int Res = compareSignature())
8754d6fb72aSErik Eckstein     return Res;
8764d6fb72aSErik Eckstein 
8774d6fb72aSErik Eckstein   // We do a CFG-ordered walk since the actual ordering of the blocks in the
8784d6fb72aSErik Eckstein   // linked list is immaterial. Our walk starts at the entry block for both
8794d6fb72aSErik Eckstein   // functions, then takes each block from each terminator in order. As an
8804d6fb72aSErik Eckstein   // artifact, this also means that unreachable blocks are ignored.
8814d6fb72aSErik Eckstein   SmallVector<const BasicBlock *, 8> FnLBBs, FnRBBs;
8824d6fb72aSErik Eckstein   SmallPtrSet<const BasicBlock *, 32> VisitedBBs; // in terms of F1.
8834d6fb72aSErik Eckstein 
8844d6fb72aSErik Eckstein   FnLBBs.push_back(&FnL->getEntryBlock());
8854d6fb72aSErik Eckstein   FnRBBs.push_back(&FnR->getEntryBlock());
8864d6fb72aSErik Eckstein 
8874d6fb72aSErik Eckstein   VisitedBBs.insert(FnLBBs[0]);
8884d6fb72aSErik Eckstein   while (!FnLBBs.empty()) {
8894d6fb72aSErik Eckstein     const BasicBlock *BBL = FnLBBs.pop_back_val();
8904d6fb72aSErik Eckstein     const BasicBlock *BBR = FnRBBs.pop_back_val();
8914d6fb72aSErik Eckstein 
8924d6fb72aSErik Eckstein     if (int Res = cmpValues(BBL, BBR))
8934d6fb72aSErik Eckstein       return Res;
8944d6fb72aSErik Eckstein 
8954d6fb72aSErik Eckstein     if (int Res = cmpBasicBlocks(BBL, BBR))
8964d6fb72aSErik Eckstein       return Res;
8974d6fb72aSErik Eckstein 
898edb12a83SChandler Carruth     const Instruction *TermL = BBL->getTerminator();
899edb12a83SChandler Carruth     const Instruction *TermR = BBR->getTerminator();
9004d6fb72aSErik Eckstein 
9014d6fb72aSErik Eckstein     assert(TermL->getNumSuccessors() == TermR->getNumSuccessors());
9024d6fb72aSErik Eckstein     for (unsigned i = 0, e = TermL->getNumSuccessors(); i != e; ++i) {
9034d6fb72aSErik Eckstein       if (!VisitedBBs.insert(TermL->getSuccessor(i)).second)
9044d6fb72aSErik Eckstein         continue;
9054d6fb72aSErik Eckstein 
9064d6fb72aSErik Eckstein       FnLBBs.push_back(TermL->getSuccessor(i));
9074d6fb72aSErik Eckstein       FnRBBs.push_back(TermR->getSuccessor(i));
9084d6fb72aSErik Eckstein     }
9094d6fb72aSErik Eckstein   }
9104d6fb72aSErik Eckstein   return 0;
9114d6fb72aSErik Eckstein }
9124d6fb72aSErik Eckstein 
9134d6fb72aSErik Eckstein namespace {
9144d6fb72aSErik Eckstein 
9154d6fb72aSErik Eckstein // Accumulate the hash of a sequence of 64-bit integers. This is similar to a
9164d6fb72aSErik Eckstein // hash of a sequence of 64bit ints, but the entire input does not need to be
9174d6fb72aSErik Eckstein // available at once. This interface is necessary for functionHash because it
9184d6fb72aSErik Eckstein // needs to accumulate the hash as the structure of the function is traversed
9194d6fb72aSErik Eckstein // without saving these values to an intermediate buffer. This form of hashing
9204d6fb72aSErik Eckstein // is not often needed, as usually the object to hash is just read from a
9214d6fb72aSErik Eckstein // buffer.
9224d6fb72aSErik Eckstein class HashAccumulator64 {
9234d6fb72aSErik Eckstein   uint64_t Hash;
924286d5897SEugene Zelenko 
9254d6fb72aSErik Eckstein public:
9264d6fb72aSErik Eckstein   // Initialize to random constant, so the state isn't zero.
9274d6fb72aSErik Eckstein   HashAccumulator64() { Hash = 0x6acaa36bef8325c5ULL; }
928286d5897SEugene Zelenko 
9294213bc76SMircea Trofin   void add(uint64_t V) { Hash = hashing::detail::hash_16_bytes(Hash, V); }
930286d5897SEugene Zelenko 
9314d6fb72aSErik Eckstein   // No finishing is required, because the entire hash value is used.
9324d6fb72aSErik Eckstein   uint64_t getHash() { return Hash; }
9334d6fb72aSErik Eckstein };
934286d5897SEugene Zelenko 
9354d6fb72aSErik Eckstein } // end anonymous namespace
9364d6fb72aSErik Eckstein 
9374d6fb72aSErik Eckstein // A function hash is calculated by considering only the number of arguments and
9384d6fb72aSErik Eckstein // whether a function is varargs, the order of basic blocks (given by the
9394d6fb72aSErik Eckstein // successors of each basic block in depth first order), and the order of
9404d6fb72aSErik Eckstein // opcodes of each instruction within each of these basic blocks. This mirrors
9414d6fb72aSErik Eckstein // the strategy compare() uses to compare functions by walking the BBs in depth
9424d6fb72aSErik Eckstein // first order and comparing each instruction in sequence. Because this hash
9434d6fb72aSErik Eckstein // does not look at the operands, it is insensitive to things such as the
9444d6fb72aSErik Eckstein // target of calls and the constants used in the function, which makes it useful
9454d6fb72aSErik Eckstein // when possibly merging functions which are the same modulo constants and call
9464d6fb72aSErik Eckstein // targets.
9474d6fb72aSErik Eckstein FunctionComparator::FunctionHash FunctionComparator::functionHash(Function &F) {
9484d6fb72aSErik Eckstein   HashAccumulator64 H;
9494d6fb72aSErik Eckstein   H.add(F.isVarArg());
9504d6fb72aSErik Eckstein   H.add(F.arg_size());
9514d6fb72aSErik Eckstein 
9524d6fb72aSErik Eckstein   SmallVector<const BasicBlock *, 8> BBs;
953a1cc8483SFlorian Hahn   SmallPtrSet<const BasicBlock *, 16> VisitedBBs;
9544d6fb72aSErik Eckstein 
9554d6fb72aSErik Eckstein   // Walk the blocks in the same order as FunctionComparator::cmpBasicBlocks(),
9564d6fb72aSErik Eckstein   // accumulating the hash of the function "structure." (BB and opcode sequence)
9574d6fb72aSErik Eckstein   BBs.push_back(&F.getEntryBlock());
9584d6fb72aSErik Eckstein   VisitedBBs.insert(BBs[0]);
9594d6fb72aSErik Eckstein   while (!BBs.empty()) {
9604d6fb72aSErik Eckstein     const BasicBlock *BB = BBs.pop_back_val();
9614d6fb72aSErik Eckstein     // This random value acts as a block header, as otherwise the partition of
9624d6fb72aSErik Eckstein     // opcodes into BBs wouldn't affect the hash, only the order of the opcodes
9634d6fb72aSErik Eckstein     H.add(45798);
9644d6fb72aSErik Eckstein     for (auto &Inst : *BB) {
9654d6fb72aSErik Eckstein       H.add(Inst.getOpcode());
9664d6fb72aSErik Eckstein     }
967edb12a83SChandler Carruth     const Instruction *Term = BB->getTerminator();
9684d6fb72aSErik Eckstein     for (unsigned i = 0, e = Term->getNumSuccessors(); i != e; ++i) {
9694d6fb72aSErik Eckstein       if (!VisitedBBs.insert(Term->getSuccessor(i)).second)
9704d6fb72aSErik Eckstein         continue;
9714d6fb72aSErik Eckstein       BBs.push_back(Term->getSuccessor(i));
9724d6fb72aSErik Eckstein     }
9734d6fb72aSErik Eckstein   }
9744d6fb72aSErik Eckstein   return H.getHash();
9754d6fb72aSErik Eckstein }
976