Home
last modified time | relevance | path

Searched refs:UseIndex (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp381 unsigned UseIndex = in captured() local
384 assert(UseIndex < CS.data_operands_size() && in captured()
387 if (UseIndex >= CS.getNumArgOperands()) { in captured()
399 if (UseIndex >= F->arg_size()) { in captured()
405 Uses.push_back(&*std::next(F->arg_begin(), UseIndex)); in captured()
513 unsigned UseIndex = std::distance(CS.arg_begin(), U); in determinePointerReadAttrs() local
519 assert(UseIndex < CS.data_operands_size() && in determinePointerReadAttrs()
522 bool IsOperandBundleUse = UseIndex >= CS.getNumArgOperands(); in determinePointerReadAttrs()
524 if (UseIndex >= F->arg_size() && !IsOperandBundleUse) { in determinePointerReadAttrs()
529 Captures &= !CS.doesNotCapture(UseIndex); in determinePointerReadAttrs()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/
DInstrBuilder.cpp437 Read.UseIndex = I; in populateReads()
441 << ", UseIndex=" << Read.UseIndex << '\n'); in populateReads()
449 Read.UseIndex = NumExplicitUses + I; in populateReads()
453 << ", UseIndex=" << Read.UseIndex << ", RegisterID=" in populateReads()
473 Read.UseIndex = NumExplicitUses + NumImplicitUses + I; in populateReads()
477 << ", UseIndex=" << Read.UseIndex << '\n'); in populateReads()
666 if (Mask.getBitWidth() > RD.UseIndex) { in createInstruction()
668 if (Mask[RD.UseIndex]) in createInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp106 size_t const UseIndex = Mapping.blockToIndex(UseBB); in hasPathCrossingSuspendPoint() local
108 assert(Block[UseIndex].Consumes[DefIndex] && "use must consume def"); in hasPathCrossingSuspendPoint()
109 bool const Result = Block[UseIndex].Kills[DefIndex]; in hasPathCrossingSuspendPoint()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DInstruction.h72 unsigned UseIndex; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DRegisterFile.cpp422 int ReadAdvance = STI.getReadAdvanceCycles(SC, RD.UseIndex, WriteResID); in addRegisterRead()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrInfo.cpp2457 int UseIndex = in fixupIsDeadOrKill() local
2459 if (UseIndex != -1) { in fixupIsDeadOrKill()
2460 EndMI.getOperand(UseIndex).setIsKill(true); in fixupIsDeadOrKill()
2466 if (i != UseIndex) in fixupIsDeadOrKill()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp8634 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size(); in ReplaceAllUsesOfValuesWith() local
8635 UseIndex != UseIndexEnd; ) { in ReplaceAllUsesOfValuesWith()
8638 SDNode *User = Uses[UseIndex].User; in ReplaceAllUsesOfValuesWith()
8648 unsigned i = Uses[UseIndex].Index; in ReplaceAllUsesOfValuesWith()
8649 SDUse &Use = *Uses[UseIndex].Use; in ReplaceAllUsesOfValuesWith()
8650 ++UseIndex; in ReplaceAllUsesOfValuesWith()
8653 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User); in ReplaceAllUsesOfValuesWith()