Home
last modified time | relevance | path

Searched refs:getUses (Results 1 – 25 of 56) sorted by relevance

123

/external/swiftshader/src/Reactor/
DOptimizer.cpp86 Optimizer::Uses *getUses(Ice::Operand *);
151 Uses uses = *getUses(address); // Hard copy in propagateAlloca()
164 Uses destUses = *getUses(dest); // Hard copy in propagateAlloca()
176 assert(getUses(dest)->size() == 1); in propagateAlloca()
248 Uses uses = *getUses(address); // Hard copy in performScalarReplacementOfAggregates()
257 getUses(newAddress[0])->insert(newAddress[0], use); in performScalarReplacementOfAggregates()
262 getUses(newAddress[0])->insert(newAddress[0], use); in performScalarReplacementOfAggregates()
345 const auto &addressUses = *getUses(address); in eliminateUnitializedLoads()
360 for(Ice::Inst *use : *getUses(loadData)) in eliminateUnitializedLoads()
416 if(getUses(address)->areOnlyLoadStore()) in optimizeSingleBasicBlockLoadsStores()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/
DInstruction.cpp149 for (const ReadState &RS : getUses()) { in computeCriticalRegDep()
192 if (!all_of(getUses(), [](const ReadState &Use) { return Use.isReady(); })) in updatePending()
206 if (!all_of(getUses(), [](const ReadState &Use) { in updateDispatched()
232 for (ReadState &Use : getUses()) in cycleEvent()
/external/llvm-project/llvm/lib/MCA/
DInstruction.cpp149 for (const ReadState &RS : getUses()) { in computeCriticalRegDep()
192 if (!all_of(getUses(), [](const ReadState &Use) { return Use.isReady(); })) in updatePending()
206 if (!all_of(getUses(), [](const ReadState &Use) { in updateDispatched()
232 for (ReadState &Use : getUses()) in cycleEvent()
/external/llvm-project/mlir/test/lib/IR/
DTestPrintDefUse.cpp53 << std::distance(result.getUses().begin(), in runOnOperation()
54 result.getUses().end()) in runOnOperation()
/external/llvm-project/llvm/lib/MCA/Stages/
DDispatchStage.cpp100 assert(IS.getUses().size() == 1 && "Expected a single output!"); in dispatch()
101 if (PRF.tryEliminateMove(IS.getDefs()[0], IS.getUses()[0])) in dispatch()
115 for (ReadState &RS : IS.getUses()) in dispatch()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
DDispatchStage.cpp100 assert(IS.getUses().size() == 1 && "Expected a single output!"); in dispatch()
101 if (PRF.tryEliminateMove(IS.getDefs()[0], IS.getUses()[0])) in dispatch()
115 for (ReadState &RS : IS.getUses()) in dispatch()
/external/llvm/lib/Target/AArch64/
DAArch64CollectLOH.cpp261 static SetOfMachineInstr &getUses(InstrToInstrs *sets, unsigned reg, in getUses() function
268 static const SetOfMachineInstr *getUses(const InstrToInstrs *sets, unsigned reg, in getUses() function
325 getUses(ColorOpToReachedUses, CurReg, *BBGen[CurReg]).insert(&MI); in initReachingDef()
385 getUses(ColorOpToReachedUses, CurReg, *BBGen[CurReg]).insert(DummyOp); in initReachingDef()
424 getUses(ColorOpToReachedUses, CurReg, *MI); in reachingDefAlgorithm()
752 getUses(DefsPerColorToUses, in registerADRCandidate()
835 getUses(DefsPerColorToUses, in computeOthers()
863 getUses(DefsPerColorToUses, in computeOthers()
/external/llvm-project/mlir/lib/Dialect/Linalg/Transforms/
DHoisting.cpp67 if (v && !llvm::all_of(v.getUses(), [&](OpOperand &operand) { in hoistViewAllocOps()
145 for (auto &use : transferRead.memref().getUses()) { in hoistRedundantVectorTransfers()
DVectorization.cpp377 for (auto &u : v.getUses()) { in mayExistInterleavedUses()
397 for (auto &u : v.getUses()) { in getSubViewUseIfUnique()
431 for (auto &u : subView.getUses()) { in matchAndRewrite()
448 for (auto &u : viewOrAlloc.getUses()) { in matchAndRewrite()
502 for (auto &u : subViewOp.getResult().getUses()) { in matchAndRewrite()
/external/llvm-project/llvm/tools/llvm-mca/Views/
DRegisterFileStatistics.cpp64 assert(Inst.getUses().size() == 1 && "Expected a single register use!"); in updateMoveElimInfo()
66 const ReadState &RS = Inst.getUses()[0]; in updateMoveElimInfo()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dfused_kernel_matcher.cc65 for (auto &use : op.getUses()) { in GetActivation()
76 for (auto &use : op.getUses()) { in GetBiasAdd()
Dconstant_op_device_assignment.cc53 llvm::make_early_inc_range(op.getResult().getUses())) { in runOnOperation()
Dtpu_compile_op_replication_pass.cc54 for (OpOperand &usage : compiled_program.getUses()) { in runOnOperation()
Dtpu_cluster_formation.cc289 for (auto& use : llvm::make_early_inc_range(old_ret.getUses())) { in CreateClusterOp()
444 for (auto& use : llvm::make_early_inc_range(result.getUses())) { in ReplicateCluster()
473 for (auto& use : input->getUses()) { in ReplicateCluster()
Dtpu_parallel_execute_sink_resource_write.cc52 OpOperand& use = *result.getUses().begin(); in GetSingleUseResourceWrite()
Dcluster_formation.cc109 for (auto& use : llvm::make_early_inc_range(from.getUses())) { in ReplaceLiveOutExternalUses()
/external/llvm-project/mlir/lib/IR/
DValue.cpp133 for (auto &use : llvm::make_early_inc_range(getUses())) { in replaceAllUsesExcept()
143 for (OpOperand &use : llvm::make_early_inc_range(getUses())) in replaceUsesWithIf()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/
DCertificateTrustBlock.java69 public Set<ASN1ObjectIdentifier> getUses() in getUses() method in CertificateTrustBlock
/external/llvm-project/llvm/include/llvm/MCA/
DInstruction.h416 SmallVectorImpl<ReadState> &getUses() { return Uses; } in getUses() function
417 const ArrayRef<ReadState> getUses() const { return Uses; } in getUses() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DInstruction.h416 SmallVectorImpl<ReadState> &getUses() { return Uses; } in getUses() function
417 const ArrayRef<ReadState> getUses() const { return Uses; } in getUses() function
/external/llvm-project/mlir/lib/Dialect/PDL/IR/
DPDL.cpp237 if (llvm::any_of(op.op().getUses(), canInferTypeFromUse)) in verifyResultTypesAreInferrable()
264 if (llvm::any_of(opResults[i].getUses(), canInferTypeFromUse)) in verifyResultTypesAreInferrable()
/external/llvm-project/mlir/lib/Dialect/Async/Transforms/
DAsyncRefCounting.cpp124 if (value.getUses().empty()) { in addAutomaticRefCounting()
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dmhlo_fusion.cc137 result.getUses(), in GetOutputsOfFusionPattern()
560 for (OpOperand& use : llvm::make_early_inc_range(output.getUses())) { in ApplyFusionPlan()
/external/tensorflow/tensorflow/compiler/mlir/xla/experimental/conv_emitter/
Dconv_emitter_transforms.cc116 llvm::make_early_inc_range(loop.getInductionVar().getUses())) { in TileLoop()
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Ddefault_quant_params.cc63 for (auto &use : value.getUses()) { in UsedAsBias()

123