Home
last modified time | relevance | path

Searched refs:MCDesc (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/
H A DInstrBuilder.cpp206 static void computeMaxLatency(InstrDesc &ID, const MCInstrDesc &MCDesc, in computeMaxLatency() argument
209 if (MCDesc.isCall()) { in computeMaxLatency()
221 static Error verifyOperands(const MCInstrDesc &MCDesc, const MCInst &MCI) { in verifyOperands() argument
224 unsigned NumExplicitDefs = MCDesc.getNumDefs(); in verifyOperands()
236 if (MCDesc.hasOptionalDef()) { in verifyOperands()
238 const MCOperand &Op = MCI.getOperand(MCDesc.getNumOperands() - 1); in verifyOperands()
252 const MCInstrDesc &MCDesc = MCII.get(MCI.getOpcode()); in populateWrites() local
299 unsigned NumExplicitDefs = MCDesc.getNumDefs(); in populateWrites()
300 unsigned NumImplicitDefs = MCDesc.getNumImplicitDefs(); in populateWrites()
303 if (MCDesc.hasOptionalDef()) in populateWrites()
[all …]
H A DSupport.cpp98 const MCProcResourceDesc &MCDesc = *SM.getProcResource(I); in computeBlockRThroughput() local
99 double Throughput = static_cast<double>(ResourceCycles) / MCDesc.NumUnits; in computeBlockRThroughput()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
H A DInstructionInfoView.cpp99 const MCInstrDesc &MCDesc = MCII.get(Inst.getOpcode()); in collectData() local
102 unsigned SchedClassID = MCDesc.getSchedClass(); in collectData()
117 IIVDEntry.mayLoad = MCDesc.mayLoad(); in collectData()
118 IIVDEntry.mayStore = MCDesc.mayStore(); in collectData()
119 IIVDEntry.hasUnmodeledSideEffects = MCDesc.hasUnmodeledSideEffects(); in collectData()
H A DTimelineView.cpp49 const MCProcResourceDesc &MCDesc = *SM.getProcResource(Buffer); in onReservedBuffers() local
50 if (!BufferInfo.first || BufferInfo.second > MCDesc.BufferSize) { in onReservedBuffers()
52 BufferInfo.second = MCDesc.BufferSize; in onReservedBuffers()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp1312 MCSchedClassDesc &MCDesc = SCTab[SCIdx]; in EmitSchedClassTables() local
1317 OS << MCDesc.NumMicroOps in EmitSchedClassTables()
1318 << ", " << ( MCDesc.BeginGroup ? "true" : "false" ) in EmitSchedClassTables()
1319 << ", " << ( MCDesc.EndGroup ? "true" : "false" ) in EmitSchedClassTables()
1320 << ", " << ( MCDesc.RetireOOO ? "true" : "false" ) in EmitSchedClassTables()
1321 << ", " << format("%2d", MCDesc.WriteProcResIdx) in EmitSchedClassTables()
1322 << ", " << MCDesc.NumWriteProcResEntries in EmitSchedClassTables()
1323 << ", " << format("%2d", MCDesc.WriteLatencyIdx) in EmitSchedClassTables()
1324 << ", " << MCDesc.NumWriteLatencyEntries in EmitSchedClassTables()
1325 << ", " << format("%2d", MCDesc.ReadAdvanceIdx) in EmitSchedClassTables()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp273 const MCInstrDesc &MCDesc = MII->get(Inst.getOpcode()); in dissassembleSymbol() local
285 if (MCDesc.isCall()) in dissassembleSymbol()
287 else if (MCDesc.isReturn()) in dissassembleSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRenameIndependentSubregs.cpp332 const MCInstrDesc &MCDesc = TII->get(TargetOpcode::IMPLICIT_DEF); in computeMainRangesFixFlags() local
334 DebugLoc(), MCDesc, Reg); in computeMainRangesFixFlags()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DWritingAnLLVMBackend.rst1010 Instruction itineraries can be queried using MCDesc::getSchedClass(). The