Home
last modified time | relevance | path

Searched refs:getDesc (Results 1 – 25 of 84) sorted by relevance

1234

/external/llvm/lib/CodeGen/
DTargetInstrInfo.cpp120 const MCInstrDesc &MCID = MI->getDesc(); in commuteInstruction()
146 MI->getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) { in commuteInstruction()
151 MI->getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) { in commuteInstruction()
185 const MCInstrDesc &MCID = MI->getDesc(); in findCommutedOpIndices()
220 const MCInstrDesc &MCID = MI->getDesc(); in PredicateInstruction()
611 unsigned Class = MI->getDesc().getSchedClass(); in getNumMicroOps()
642 return ItinData->getStageLatency(MI->getDesc().getSchedClass()); in getInstrLatency()
651 unsigned DefClass = DefMI->getDesc().getSchedClass(); in hasLowDefLatency()
662 unsigned DefClass = DefMI->getDesc().getSchedClass(); in getOperandLatency()
663 unsigned UseClass = UseMI->getDesc().getSchedClass(); in getOperandLatency()
[all …]
DPeepholeOptimizer.cpp313 unsigned NumDefs = MI->getDesc().getNumDefs(); in optimizeBitcastInstr()
314 unsigned NumSrcs = MI->getDesc().getNumOperands() - NumDefs; in optimizeBitcastInstr()
343 NumDefs = DefMI->getDesc().getNumDefs(); in optimizeBitcastInstr()
344 NumSrcs = DefMI->getDesc().getNumOperands() - NumDefs; in optimizeBitcastInstr()
421 const MCInstrDesc &MCID = MI->getDesc(); in isLoadFoldable()
441 const MCInstrDesc &MCID = MI->getDesc(); in isMoveImmediate()
462 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) { in foldImmediate()
DTargetSchedule.cpp80 int UOps = InstrItins.getNumMicroOps(MI->getDesc().getSchedClass()); in getNumMicroOps()
106 unsigned SchedClass = MI->getDesc().getSchedClass(); in resolveSchedClass()
169 unsigned DefClass = DefMI->getDesc().getSchedClass(); in computeOperandLatency()
213 && !DefMI->getDesc().OpInfo[DefOperIdx].isOptionalDef()) { in computeOperandLatency()
DErlangGC.cpp68 if (MI->getDesc().isCall()) { in findCustomSafePoints()
71 if (MI->getDesc().isTerminator()) in findCustomSafePoints()
DExecutionDepsFix.cpp455 const MCInstrDesc &MCID = MI->getDesc(); in processDefs()
511 for (unsigned i = mi->getDesc().getNumDefs(), in visitHardInstr()
512 e = mi->getDesc().getNumOperands(); i != e; ++i) { in visitHardInstr()
521 for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) { in visitHardInstr()
540 for (unsigned i = mi->getDesc().getNumDefs(), in visitSoftInstr()
541 e = mi->getDesc().getNumOperands(); i != e; ++i) { in visitSoftInstr()
DDFAPacketizer.cpp92 const llvm::MCInstrDesc &MID = MI->getDesc(); in canReserveResources()
99 const llvm::MCInstrDesc &MID = MI->getDesc(); in reserveResources()
DCriticalAntiDepBreaker.cpp176 if (i < MI->getDesc().getNumOperands()) in PrescanInstruction()
177 NewRC = TII->getRegClass(MI->getDesc(), i, TRI, MF); in PrescanInstruction()
271 if (i < MI->getDesc().getNumOperands()) in ScanInstruction()
272 NewRC = TII->getRegClass(MI->getDesc(), i, TRI, MF); in ScanInstruction()
/external/llvm/lib/Target/ARM/
DARMHazardRecognizer.cpp22 const MCInstrDesc &MCID = MI->getDesc(); in hasRAWHazard()
43 const MCInstrDesc &MCID = MI->getDesc(); in getHazardType()
46 const MCInstrDesc &LastMCID = LastMI->getDesc(); in getHazardType()
DARMCodeEmitter.cpp281 const MCInstrDesc &MCID = MI.getDesc(); in getHiLo16ImmOpValue()
487 const MCInstrDesc &MCID = MI.getDesc(); in getMachineOpValue()
569 switch (MI.getDesc().TSFlags & ARMII::FormMask) { in emitInstruction()
823 const MCInstrDesc &MCID = MI.getDesc(); in emitLEApcrelInstruction()
850 const MCInstrDesc &MCID = MI.getDesc(); in emitLEApcrelJTInstruction()
875 unsigned Opcode = MI.getDesc().Opcode; in emitPseudoMoveInstruction()
920 unsigned Opcode = MI.getDesc().Opcode; in emitPseudoInstruction()
1099 const MCInstrDesc &MCID = MI.getDesc(); in emitDataProcessingInstruction()
1202 const MCInstrDesc &MCID = MI.getDesc(); in emitLoadStoreInstruction()
1286 const MCInstrDesc &MCID = MI.getDesc(); in emitMiscLoadStoreInstruction()
[all …]
DARMBaseInstrInfo.cpp131 uint64_t TSFlags = MI->getDesc().TSFlags; in convertToThreeAddress()
151 const MCInstrDesc &MCID = MI->getDesc(); in convertToThreeAddress()
523 if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) { in isPredicable()
548 const MCInstrDesc &MCID = MI->getDesc(); in GetInstSizeInBytes()
1700 DefMI->getDesc(), in optimizeSelect()
1704 const MCInstrDesc &DefDesc = DefMI->getDesc(); in optimizeSelect()
1811 const MCInstrDesc &Desc = MI.getDesc(); in rewriteARMFrameIndex()
2287 const MCInstrDesc &DefMCID = DefMI->getDesc(); in FoldImmediate()
2297 const MCInstrDesc &UseMCID = UseMI->getDesc(); in FoldImmediate()
2393 const MCInstrDesc &Desc = MI->getDesc(); in getNumMicroOpsSwiftLdSt()
[all …]
DARMBaseRegisterInfo.cpp427 const MCInstrDesc &Desc = MI->getDesc(); in getFrameIndexInstrOffset()
619 const MCInstrDesc &Desc = MI->getDesc(); in isFrameOffsetLegal()
736 (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode4 || in eliminateFrameIndex()
737 (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode6) && in eliminateFrameIndex()
/external/llvm/lib/Support/
DStatistic.cpp95 return std::strcmp(LHS->getDesc(), RHS->getDesc()) < 0; in operator ()()
139 Stats.Stats[i]->getDesc()); in PrintStatistics()
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.cpp584 const MCInstrDesc &MID = MI->getDesc(); in isExtendable()
606 const uint64_t F = MI->getDesc().TSFlags; in isExtended()
620 return MI->getDesc().isBranch(); in isBranch()
638 bool isPred = MI->getDesc().isPredicable(); in isPredicable()
752 const uint64_t F = MI->getDesc().TSFlags; in isNewValueStore()
978 const uint64_t F = MI->getDesc().TSFlags; in isPredicated()
990 const uint64_t F = MI->getDesc().TSFlags; in isPredicatedTrue()
1007 const uint64_t F = MI->getDesc().TSFlags; in isPredicatedNew()
1023 const uint64_t F = MI->getDesc().TSFlags; in mayBeNewStore()
1512 const uint64_t F = MI->getDesc().TSFlags; in isNewValue()
[all …]
DHexagonVLIWPacketizer.cpp382 return (MI->getDesc().isTerminator() || MI->getDesc().isCall()); in IsControlFlow()
414 const MCInstrDesc& TID = MI->getDesc(); in isCondInst()
496 if (MI->getDesc().mayLoad()) { in GetPostIncrementOperand()
502 if (MI->getDesc().mayStore()) { in GetPostIncrementOperand()
553 const MCInstrDesc& MCID = PacketMI->getDesc(); in CanPromoteToNewValueStore()
564 if (PacketSU->getInstr()->getDesc().mayStore() || in CanPromoteToNewValueStore()
581 MI->getDesc().mayStore() && in CanPromoteToNewValueStore()
587 PacketMI->getDesc().mayLoad() && in CanPromoteToNewValueStore()
967 const MCInstrDesc& TID = MI->getDesc(); in ignorePseudoInstruction()
1003 const MCInstrDesc &MCIDI = I->getDesc(); in isLegalToPacketizeTogether()
[all …]
/external/skia/src/gpu/gl/
DGrGpuGL_program.cpp33 return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc()); in operator ()()
38 return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc); in operator ()()
107 if (NULL != hashedEntry && hashedEntry->fProgram->getDesc() == desc) { in getProgram()
146 int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1); in getProgram()
178 const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc(); in getProgram()
179 const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc(); in getProgram()
/external/chromium_org/third_party/skia/src/gpu/gl/
DGrGpuGL_program.cpp33 return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc()); in operator ()()
38 return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc); in operator ()()
107 if (NULL != hashedEntry && hashedEntry->fProgram->getDesc() == desc) { in getProgram()
146 int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1); in getProgram()
178 const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc(); in getProgram()
179 const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc(); in getProgram()
/external/smack/src/org/jivesoftware/smackx/packet/
DStreamInitiation.java303 public String getDesc() { in getDesc() method in StreamInitiation.File
359 if (getDesc() != null && desc.length() > 0) { in toXML()
360 … buffer.append("<desc>").append(StringUtils.escapeForXML(getDesc())).append("</desc>"); in toXML()
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.cpp71 (MI.getDesc().TSFlags & NVPTX::SimpleMoveMask) >> NVPTX::SimpleMoveShift; in isMoveInstr()
113 (MI.getDesc().TSFlags & NVPTX::isLoadMask) >> NVPTX::isLoadShift; in isLoadInstr()
124 (MI.getDesc().TSFlags & NVPTX::isStoreMask) >> NVPTX::isStoreShift; in isStoreInstr()
/external/llvm/include/llvm/Support/
DRegistry.h33 const char *getDesc() const { return Desc; } in getDesc() function
50 static const char *descof(const entry &Entry) { return Entry.getDesc(); } in descof()
/external/smack/src/org/jivesoftware/smackx/filetransfer/
DFileTransferRequest.java74 return streamInitiation.getFile().getDesc(); in getDescription()
/external/llvm/lib/Target/SystemZ/
DSystemZInstrBuilder.h31 const MCInstrDesc &MCID = MI->getDesc(); in addFrameReference()
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInst.h51 const MCInstrDesc& getDesc(void) const { return *MCID; }; in getDesc() function
/external/llvm/include/llvm/Target/
DTargetInstrInfo.h71 (MI->getDesc().isRematerializable() &&
441 assert(MI && MI->getDesc().isSelect() && "MI must be a select instruction"); in analyzeSelect()
687 return MI->getDesc().isPredicable(); in isPredicable()
/external/llvm/lib/Target/Mips/
DMipsInstrInfo.cpp268 return MI->getDesc().getSize(); in GetInstSizeInBytes()
283 for (unsigned J = 0, E = I->getDesc().getNumOperands(); J < E; ++J) in genInstrWithNewOpc()
/external/llvm/lib/Target/R600/
DSIInsertWaits.cpp132 (MI.getOpcode() == AMDGPU::EXP || MI.getDesc().mayStore())); in getHwCounts()
169 if (!MI.getDesc().mayStore()) in isOpRelevant()

1234