/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64MachineScheduler.cpp | 42 if (!Base0.isIdenticalTo(Base1)) in mayOverlapWrite()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | GCNDPPCombine.cpp | 693 if ((Use == Src0 && ((Src1 && Src1->isIdenticalTo(*Src0)) || in combineDPPMov() 694 (Src2 && Src2->isIdenticalTo(*Src0)))) || in combineDPPMov() 695 (Use == Src1 && (Src1->isIdenticalTo(*Src0) || in combineDPPMov() 696 (Src2 && Src2->isIdenticalTo(*Src1))))) { in combineDPPMov()
|
H A D | SIPreEmitPeephole.cpp | 208 Found = Term.isIdenticalTo(MI); in optimizeVccBranch() 254 if (!MI.isIdenticalTo(First)) in optimizeSetGPR()
|
H A D | GCNVOPDUtils.cpp | 50 if (Literal->isIdenticalTo(Op)) in checkVOPDRegConstraints()
|
H A D | SILowerControlFlow.cpp | 606 if (Ops[0].isIdenticalTo(Ops[1])) UniqueOpndIdx = 2; in combineMasks() 607 else if (Ops[0].isIdenticalTo(Ops[2])) UniqueOpndIdx = 1; in combineMasks() 608 else if (Ops[1].isIdenticalTo(Ops[2])) UniqueOpndIdx = 1; in combineMasks()
|
H A D | SIFoldOperands.cpp | 621 (OpNo != 1 || !MI->getOperand(1).isIdenticalTo(MI->getOperand(2)))) { in tryAddToFoldList() 1318 if (!Src1->isIdenticalTo(*Src0)) { in tryFoldCndMask() 1321 if (!Src1Imm->isIdenticalTo(*Src0Imm)) in tryFoldCndMask() 1451 if (CurrentKnownM0Val && CurrentKnownM0Val->isIdenticalTo(NewM0Val)) { in tryFoldFoldableCopy()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | MVETPAndVPTOptimisationsPass.cpp | 596 if (CondOP1.isIdenticalTo(PrevOP1) && CondOP2.isIdenticalTo(PrevOP2)) in IsVPNOTEquivalent() 602 return ExpectedCode == GetCondCode(Prev) && CondOP1.isIdenticalTo(PrevOP2) && in IsVPNOTEquivalent() 603 CondOP2.isIdenticalTo(PrevOP1); in IsVPNOTEquivalent()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineLateInstrsCleanup.cpp | 48 return MI && MI->isIdenticalTo(*ArgMI); in hasIdentical()
|
H A D | BranchFolding.cpp | 342 if (!MBBI1->isIdenticalTo(*MBBI2) || in ComputeCommonTailLength() 793 assert(MBBICommon->isIdenticalTo(*MBBI) && "Expected matching MIIs!"); in mergeOperations() 843 assert(MI.isIdenticalTo(*Pos) && "Expected matching MIIs!"); in mergeCommonTails() 1438 if (!MBBIter->isIdenticalTo(*PrevBBIter)) in OptimizeBlock() 1959 if (!TIB->isIdenticalTo(*FIB, MachineInstr::CheckKillDead)) in HoistCommonCodeInSuccs()
|
H A D | MachineInstr.cpp | 649 bool MachineInstr::isIdenticalTo(const MachineInstr &Other, in isIdenticalTo() function in MachineInstr 669 if (!I1->isIdenticalTo(*I2, Check)) in isIdenticalTo() 683 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 696 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 699 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 705 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 738 if (!getDebugOperand(OpIdx).isIdenticalTo(Other.getDebugOperand(OpIdx))) in isEquivalentDbgInstr()
|
H A D | IfConversion.cpp | 744 if (!TIB->isIdenticalTo(*FIB)) in CountDuplicatedInstructions() 787 if (!RTIE->isIdenticalTo(*RFIE)) in CountDuplicatedInstructions() 851 assert(E1->isIdenticalTo(*E2) && in verifySameBranchInstructions()
|
H A D | TypePromotion.cpp | 421 if (InstTo && User->isIdenticalTo(InstTo)) { in ReplaceAllUsersOfWith()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | MacroInfo.cpp | 94 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, in isIdenticalTo() function in MacroInfo
|
H A D | PPDirectives.cpp | 3193 if (!OtherMI || !MI->isIdenticalTo(*OtherMI, *this, in HandleDefineDirective() 3221 !MI->isIdenticalTo(*OtherMI, *this, in HandleDefineDirective() 3245 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) { in HandleDefineDirective()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 758 bool isIdenticalTo(const MachineOperand &Other) const; 763 /// isIdenticalTo uses for comparison. It is thus suited for use in hash 765 /// stay exactly in sync with isIdenticalTo above. 1037 return LHS.isIdenticalTo(RHS);
|
H A D | MachineInstr.h | 1283 bool isIdenticalTo(const MachineInstr &Other, 2070 return LHS->isIdenticalTo(*RHS, MachineInstr::IgnoreVRegDefs);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MergedLoadStoreMotion.cpp | 236 return GEP0 && GEP1 && GEP0->isIdenticalTo(GEP1) && GEP0->hasOneUse() && in canSinkStoresAndGEPs()
|
H A D | Reassociate.cpp | 1071 if (I1->isIdenticalTo(I2)) in FindInOperandList() 1080 if (I1->isIdenticalTo(I2)) in FindInOperandList()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 339 if (!iter1->isIdenticalTo(&*iter2)) in CompareIfRegionBlock()
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | MacroInfo.h | 147 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCBranchCoalescing.cpp | 346 if (Op1.isIdenticalTo(Op2)) { in identicalOperands()
|
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/ |
H A D | ExtractAPIConsumer.cpp | 315 return MD.getMacroInfo()->isIdenticalTo(*PM.MD->getMacroInfo(), PP, in MacroUndefined()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instruction.h | 879 bool isIdenticalTo(const Instruction *I) const LLVM_READONLY;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86OptimizeLEAs.cpp | 203 return MO1.isIdenticalTo(MO2) && (!MO1.isReg() || !MO1.getReg().isPhysical()); in isIdenticalOp()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
H A D | LanaiInstrInfo.cpp | 108 if (BaseOpA->isIdenticalTo(*BaseOpB)) { in areMemAccessesTriviallyDisjoint()
|