Home
last modified time | relevance | path

Searched refs:NumInsts (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCodeMetrics.cpp120 unsigned NumInstsBeforeThisBB = NumInsts; in analyzeBasicBlock()
174 NumInsts += TTI.getUserCost(&I); in analyzeBasicBlock()
194 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB; in analyzeBasicBlock()
DModuleSummaryAnalysis.cpp252 unsigned NumInsts = 0; in computeFunctionSummary() local
276 ++NumInsts; in computeFunctionSummary()
473 Flags, NumInsts, FunFlags, /*EntryCount=*/0, std::move(Refs), in computeFunctionSummary()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Utils/
DARMBaseInfo.h114 inline static unsigned getARMVPTBlockMask(unsigned NumInsts) { in getARMVPTBlockMask() argument
115 switch (NumInsts) { in getARMVPTBlockMask()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DCodeMetrics.h53 unsigned NumInsts = false; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DADCE.cpp221 size_t NumInsts = 0; in initialize() local
226 NumInsts += BB.size(); in initialize()
234 InstInfo.reserve(NumInsts); in initialize()
DLoopDataPrefetch.cpp236 unsigned LoopSize = Metrics.NumInsts; in runOnLoop()
DLoopUnrollPass.cpp652 unsigned LoopSize = Metrics.NumInsts; in ApproximateLoopSize()
DLoopUnswitch.cpp303 Props.SizeEstimation = Metrics.NumInsts; in countLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopRotationUtils.cpp261 if (Metrics.NumInsts > MaxHeaderSize) in rotateLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModuleSummaryIndex.h595 FunctionSummary(GVFlags Flags, unsigned NumInsts, FFlags FunFlags,
604 InstCount(NumInsts), FunFlags(FunFlags), EntryCount(EntryCount),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMBaseInstrInfo.h279 unsigned NumInsts) const override;
DARMBaseInstrInfo.cpp2081 unsigned NumInsts) const { in extraSizeToPredicateInstructions()
2085 return Subtarget.isThumb2() ? divideCeil(NumInsts, 4) * 2 : 0; in extraSizeToPredicateInstructions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetInstrInfo.h803 unsigned NumInsts) const { in extraSizeToPredicateInstructions() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.cpp495 if (Metrics.NumInsts <= (6 * SchedModel.getIssueWidth())) in isHardwareLoopProfitable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIInstrInfo.cpp2138 int NumInsts = AMDGPU::getRegBitWidth(RC->getID()) / 32; in canInsertSelect() local
2139 CondCycles = TrueCycles = FalseCycles = NumInsts; // ??? in canInsertSelect()
2142 return RI.hasVGPRs(RC) && NumInsts <= 6; in canInsertSelect()
2152 int NumInsts = AMDGPU::getRegBitWidth(RC->getID()) / 32; in canInsertSelect() local
2155 if (NumInsts % 2 == 0) in canInsertSelect()
2156 NumInsts /= 2; in canInsertSelect()
2158 CondCycles = TrueCycles = FalseCycles = NumInsts; // ??? in canInsertSelect()