/external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/ |
D | MachineInstrTest.cpp | 130 ASSERT_FALSE(MI1->isIdenticalTo(*MI2, MachineInstr::CheckDefs)); in TEST() 131 ASSERT_FALSE(MI2->isIdenticalTo(*MI1, MachineInstr::CheckDefs)); in TEST() 133 ASSERT_TRUE(MI1->isIdenticalTo(*MI2, MachineInstr::IgnoreVRegDefs)); in TEST() 134 ASSERT_TRUE(MI2->isIdenticalTo(*MI1, MachineInstr::IgnoreVRegDefs)); in TEST() 149 ASSERT_FALSE(MI3->isIdenticalTo(*MI4, MachineInstr::CheckDefs)); in TEST() 150 ASSERT_FALSE(MI4->isIdenticalTo(*MI3, MachineInstr::CheckDefs)); in TEST() 152 ASSERT_FALSE(MI3->isIdenticalTo(*MI4, MachineInstr::IgnoreVRegDefs)); in TEST() 153 ASSERT_FALSE(MI4->isIdenticalTo(*MI3, MachineInstr::IgnoreVRegDefs)); in TEST()
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIInsertWaits.cpp | 250 if (Data && Op.isIdenticalTo(*Data)) in isOpRelevant() 256 if (Data0 && Op.isIdenticalTo(*Data0)) in isOpRelevant() 260 return Data1 && Op.isIdenticalTo(*Data1); in isOpRelevant() 269 return Op.isIdenticalTo(*I); in isOpRelevant()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | SILowerControlFlow.cpp | 476 if (Ops[0].isIdenticalTo(Ops[1])) UniqueOpndIdx = 2; in combineMasks() 477 else if (Ops[0].isIdenticalTo(Ops[2])) UniqueOpndIdx = 1; in combineMasks() 478 else if (Ops[1].isIdenticalTo(Ops[2])) UniqueOpndIdx = 1; in combineMasks()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 407 bool MachineInstr::isIdenticalTo(const MachineInstr &Other, in isIdenticalTo() function in MachineInstr 427 if (!I1->isIdenticalTo(*I2, Check)) in isIdenticalTo() 441 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 455 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 458 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 464 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo()
|
D | BranchFolding.cpp | 343 if (!I1->isIdenticalTo(*I2) || in ComputeCommonTailLength() 864 assert(MBBICommon->isIdenticalTo(*MBBI) && "Expected matching MIIs!"); in mergeOperations() 914 assert(MI.isIdenticalTo(*Pos) && "Expected matching MIIs!"); in mergeCommonTails() 1507 if (!MBBIter->isIdenticalTo(*PrevBBIter)) in OptimizeBlock() 2023 if (!TIB->isIdenticalTo(*FIB, MachineInstr::CheckKillDead)) in HoistCommonCodeInSuccs()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MergedLoadStoreMotion.cpp | 302 if (A0 && A1 && A0->isIdenticalTo(A1) && isSafeToHoist(A0) && in hoistLoad() 428 if (A0 && A1 && A0->isIdenticalTo(A1) && A0->hasOneUse() && in sinkStore()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 218 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { in isIdenticalTo() function in MachineOperand 970 bool MachineInstr::isIdenticalTo(const MachineInstr &Other, in isIdenticalTo() function in MachineInstr 986 if (I2 == E2 || !I2->isInsideBundle() || !I1->isIdenticalTo(*I2, Check)) in isIdenticalTo() 996 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 1013 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo() 1019 if (!MO.isIdenticalTo(OMO)) in isIdenticalTo()
|
D | BranchFolding.cpp | 365 if (!I1->isIdenticalTo(*I2) || in ComputeCommonTailLength() 809 assert(MBBICommon->isIdenticalTo(*MBBI) && "Expected matching MIIs!"); in mergeMMOsFromMemoryOperations() 1321 if (!MBBIter->isIdenticalTo(*PrevBBIter)) in OptimizeBlock() 1809 if (!TIB->isIdenticalTo(*FIB, MachineInstr::CheckKillDead)) in HoistCommonCodeInSuccs()
|
D | LiveDebugVariables.cpp | 199 if (LocMO.isIdenticalTo(locations[i])) in getLocationNo() 430 if (locations[KeepLoc].isIdenticalTo(locations[LocNo])) in coalesceLocation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 694 bool isIdenticalTo(const MachineOperand &Other) const; 943 return LHS.isIdenticalTo(RHS);
|
D | MachineInstr.h | 795 bool isIdenticalTo(const MachineInstr &Other, 1427 return LHS->isIdenticalTo(*RHS, MachineInstr::IgnoreVRegDefs);
|
/external/clang/lib/Lex/ |
D | MacroInfo.cpp | 72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, in isIdenticalTo() function in MacroInfo
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DbgValueHistoryCalculator.cpp | 45 Ranges.back().first->isIdenticalTo(MI)) { in startInstrRange()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 739 bool isIdenticalTo(const MachineInstr &Other, 1298 return LHS->isIdenticalTo(*RHS, MachineInstr::IgnoreVRegDefs);
|
D | MachineOperand.h | 552 bool isIdenticalTo(const MachineOperand &Other) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DbgValueHistoryCalculator.cpp | 52 Ranges.back().first->isIdenticalTo(MI)) { in startInstrRange()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.h | 475 bool isIdenticalTo(const Instruction *I) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | MergedLoadStoreMotion.cpp | 229 if (A0 && A1 && A0->isIdenticalTo(A1) && A0->hasOneUse() && in sinkStore()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 433 bool isIdenticalTo(const Instruction *I) const;
|
/external/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 340 if (!iter1->isIdenticalTo(&*iter2)) in CompareIfRegionBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Instruction.h | 582 bool isIdenticalTo(const Instruction *I) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 352 if (!iter1->isIdenticalTo(&*iter2)) in CompareIfRegionBlock()
|
/external/clang/include/clang/Lex/ |
D | MacroInfo.h | 142 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCBranchCoalescing.cpp | 346 if (Op1.isIdenticalTo(Op2)) { in identicalOperands()
|
/external/llvm/lib/Target/X86/ |
D | X86OptimizeLEAs.cpp | 183 return MO1.isIdenticalTo(MO2) && in isIdenticalOp()
|