Home
last modified time | relevance | path

Searched refs:DstI (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp1518 CodeGenInstruction *DstI = &Target.getInstruction(DstOp); in createInstructionRenderer() local
1522 StringRef Name = DstI->TheDef->getName(); in createInstructionRenderer()
1524 DstI = &Target.getInstruction(RK.getDef("COPY")); in createInstructionRenderer()
1527 DstI); in createInstructionRenderer()
1533 const CodeGenInstruction *DstI = DstMIBuilder.getCGI(); in importExplicitDefRenderers() local
1535 const unsigned DstNumDefs = DstI->Operands.NumDefs; in importExplicitDefRenderers()
1540 std::string OpName = getMangledRootDefName(DstI->Operands[I].Name); in importExplicitDefRenderers()
1573 const CodeGenInstruction *DstI = DstMIBuilder.getCGI(); in importExplicitUseRenderers() local
1681 unsigned NumFixedOperands = DstI->Operands.size(); in importExplicitUseRenderers()
1699 CGP.operandHasDefault(DstI->Operands[NonOverridableOperands - 1].Rec)) in importExplicitUseRenderers()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp576 MachineInstr *DstI = Dst->getInstr(); in restoreLatency() local
578 for (unsigned OpNum = 0; OpNum < DstI->getNumOperands(); OpNum++) { in restoreLatency()
579 const MachineOperand &MO = DstI->getOperand(OpNum); in restoreLatency()
582 &InstrItins, *SrcI, DefIdx, *DstI, OpNum); in restoreLatency()
589 Latency = updateLatency(*SrcI, *DstI, IsArtificial, *Latency); in restoreLatency()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDDG.h454 for (auto *DstI : DstIList) in getDependencies()
456 const_cast<DependenceInfo *>(&DI)->depends(SrcI, DstI, true)) in getDependencies()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp185 for (inst_iterator DstI = SrcI, DstE = inst_end(F); in dumpExampleDependence() local
186 DstI != DstE; ++DstI) { in dumpExampleDependence()
187 if (DstI->mayReadOrWriteMemory()) { in dumpExampleDependence()
188 OS << "Src:" << *SrcI << " --> Dst:" << *DstI << "\n"; in dumpExampleDependence()
190 if (auto D = DA->depends(&*SrcI, &*DstI, true)) { in dumpExampleDependence()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1129 ExplodedNodeSet DstI; in ProcessStmt() local
1131 Visit(currStmt, I, DstI); in ProcessStmt()
1132 Dst.insert(DstI); in ProcessStmt()