| /freebsd-src/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | twl-charger.txt | 1 TWL BCI (Battery Charger Interface) 9 if there is a sibling of the BCI node which is compatible with 15 - "ti,twl4030-bci" 25 bci { 26 compatible = "ti,twl4030-bci";
|
| H A D | twl4030-charger.yaml | 7 title: TWL4030 BCI (Battery Charger Interface) 15 of the BCI node which is compatible with "ti,twl4030-usb", then that is used 26 const: ti,twl4030-bci 61 compatible = "ti,twl4030-bci";
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | BlockCoverageInference.cpp | 43 STATISTIC(NumFunctions, "Number of total functions that BCI has processed"); 45 "Number of functions for which BCI cannot run on"); 46 STATISTIC(NumBlocks, "Number of total basic blocks that BCI has processed"); 252 const BlockCoverageInference *BCI; member in llvm::DotFuncBCIInfo 256 DotFuncBCIInfo(const BlockCoverageInference *BCI, in DotFuncBCIInfo() argument 258 : BCI(BCI), Coverage(Coverage) {} in DotFuncBCIInfo() 260 const Function &getFunction() { return BCI->F; } in getFunction() 263 return BCI->shouldInstrumentBlock(*BB); in isInstrumented() 271 return BCI->getDependencies(*Src).count(Dest); in isDependent() 303 return "BCI CFG for " + Info->getFunction().getName().str(); in getGraphName() [all …]
|
| H A D | PGOInstrumentation.cpp | 555 const std::optional<BlockCoverageInference> BCI; in findBBInfo() 595 BCI(constructBCI(Func, HasSingleByteCoverage, InstrumentFuncEntry)) { in FuncPGOInstrumentation() 596 if (BCI && PGOViewBlockCoverageGraph) in FuncPGOInstrumentation() 597 BCI->viewBlockCoverageGraph(); in FuncPGOInstrumentation() 665 if (BCI) { in computeCFGHash() 666 updateJCH(BCI->getInstrumentedBlocksHash()); in computeCFGHash() 759 if (BCI) { in getInstrBB() 761 if (BCI->shouldInstrumentBlock(BB)) in getInstrBB() 1207 if (FuncInfo.BCI) in setInstrumentedCounts() 1434 if (FuncInfo.BCI in populateCoverage() 533 const std::optional<BlockCoverageInference> BCI; global() member in __anon44f3207d0111::FuncPGOInstrumentation [all...] |
| H A D | SanitizerBinaryMetadata.cpp | 342 } else if (auto *BCI = dyn_cast<BitCastInst>(U)) { in hasUseAfterReturnUnsafeUses() 343 if (!hasUseAfterReturnUnsafeUses(*BCI)) 334 } else if (auto *BCI = dyn_cast<BitCastInst>(U)) { hasUseAfterReturnUnsafeUses() local
|
| H A D | DataFlowSanitizer.cpp | 800 void visitBitCastInst(BitCastInst &BCI); 2755 void DFSanVisitor::visitBitCastInst(BitCastInst &BCI) { in visitCmpInst() 2759 if (auto *CI = dyn_cast<CallInst>(BCI.getOperand(0))) in visitCmpInst() 2762 visitInstOperands(BCI); in visitCmpInst() 2741 visitBitCastInst(BitCastInst & BCI) visitBitCastInst() argument
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerKernelAttributes.cpp | 114 auto *BCI = dyn_cast<BitCastInst>(U); in processUse() local 115 if (!Load && !BCI) { in processUse() 119 BCI = dyn_cast<BitCastInst>(*U->user_begin()); in processUse() 122 if (BCI) { in processUse() 123 if (!BCI->hasOneUse()) in processUse() 125 Load = dyn_cast<LoadInst>(*BCI->user_begin()); // Load from BCI? in processUse()
|
| H A D | AMDGPURewriteOutArguments.cpp | 125 if (auto *BCI = dyn_cast<BitCastInst>(U->getUser())) { in getStoredType() local 126 for (Use &U : BCI->uses()) in getStoredType()
|
| /freebsd-src/sys/contrib/device-tree/src/arm/ti/omap/ |
| H A D | twl4030.dtsi | 19 charger: bci { 20 compatible = "ti,twl4030-bci";
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 304 bool visitBitCastInst(BitCastInst &BCI); 881 bool ScalarizerVisitor::visitBitCastInst(BitCastInst &BCI) { in visitBitCastInst() argument 882 std::optional<VectorSplit> DstVS = getVectorSplit(BCI.getDestTy()); in visitBitCastInst() 883 std::optional<VectorSplit> SrcVS = getVectorSplit(BCI.getSrcTy()); in visitBitCastInst() 892 IRBuilder<> Builder(&BCI); in visitBitCastInst() 893 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0), *SrcVS); in visitBitCastInst() 904 BCI.getName() + ".i" + Twine(I)); in visitBitCastInst() 929 Scatterer Mid = scatter(&BCI, V, MidVS); in visitBitCastInst() 950 BCI in visitBitCastInst() [all...] |
| H A D | CallSiteSplitting.cpp | 244 BitCastInst* BCI = dyn_cast<BitCastInst>(&*II); in copyMustTailReturn() local 245 if (BCI) in copyMustTailReturn() 253 if (BCI) in copyMustTailReturn() 254 V = cloneInstForMustTail(BCI, TI, V); in copyMustTailReturn()
|
| /freebsd-src/sys/contrib/device-tree/Bindings/usb/ |
| H A D | twlxxxx-usb.txt | 33 If a sibling node is compatible "ti,twl4030-bci", then it will find
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroEarly.cpp | 96 auto *BCI = Builder.CreateBitCast(Operand, FramePtrTy); in lowerCoroDone() local 97 auto *Load = Builder.CreateLoad(FrameTy, BCI); in lowerCoroDone()
|
| H A D | Coroutines.cpp | 372 auto BCI = new BitCastInst(*SI, *RI, "", Suspend->getIterator()); in buildFrom() 373 SI->set(BCI); in buildFrom() 365 auto BCI = new BitCastInst(*SI, *RI, "", Suspend); buildFrom() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | InterleavedLoadCombinePass.cpp | 720 BitCastInst *BCI = dyn_cast<BitCastInst>(V); in compute() local 721 if (BCI) in compute() 722 return computeFromBCI(BCI, Result, DL); in compute() 728 /// \param BCI BitCastInst to operate on 732 static bool computeFromBCI(BitCastInst *BCI, VectorInfo &Result, in computeFromBCI() 734 Instruction *Op = dyn_cast<Instruction>(BCI->getOperand(0)); in computeFromBCI() 770 Result.Is.insert(BCI); in computeFromBCI()
|
| H A D | StackColoring.cpp | 972 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Use.get())) in remapInstructions() 973 if (BCI->isUsedByMetadata()) in remapInstructions() 974 ValueAsMetadata::handleRAUW(BCI, PoisonValue::get(BCI->getType())); in remapInstructions() 968 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Use.get())) remapInstructions() local
|
| H A D | CodeGenPrepare.cpp | 2636 BitCastInst *BCI = nullptr; in dupRetToEnableTailCallOpts() 2639 BCI = dyn_cast<BitCastInst>(V); in dupRetToEnableTailCallOpts() 2640 if (BCI) in dupRetToEnableTailCallOpts() 2641 V = BCI->getOperand(0); in dupRetToEnableTailCallOpts() 2670 while (isa<DbgInfoIntrinsic>(BI) || BI == BCI || BI == EVI || 7335 if (auto *BCI = dyn_cast<Instruction>(BC1)) in optimizeSwitchType() 7336 if (auto *Op = dyn_cast<Instruction>(BCI->getOperand(0))) in optimizeSwitchType() 7337 if (BCI->getParent() != Op->getParent() && !isa<PHINode>(Op) && in optimizeSwitchType() 7339 BCI->moveAfter(Op); in optimizeSwitchType() 2569 BitCastInst *BCI = nullptr; dupRetToEnableTailCallOpts() local 7221 if (auto *BCI = dyn_cast<Instruction>(BC1)) optimizeShuffleVectorInst() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | BypassSlowDivision.cpp | 395 if (auto *BCI = dyn_cast<BitCastInst>(Divisor)) in insertFastDivAndRem() local 396 if (BCI->getParent() == SlowDivOrRem->getParent() && in insertFastDivAndRem() 397 isa<ConstantInt>(BCI->getOperand(0))) in insertFastDivAndRem()
|
| H A D | PromoteMemoryToRegister.cpp | 84 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) { in isAllocaPromotable() 85 if (!onlyUsedByLifetimeMarkersOrDroppableInsts(BCI)) in isAllocaPromotable() 83 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) { isAllocaPromotable() local
|
| H A D | BasicBlockUtils.cpp | 1563 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) { in FoldReturnIntoUncondBranch() 1566 V = BCI->getOperand(0); in FoldReturnIntoUncondBranch() 1567 NewBC = BCI->clone(); in FoldReturnIntoUncondBranch() 1551 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) { FoldReturnIntoUncondBranch() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 2553 auto *BCI = dyn_cast<BitCastInst>(IncValue); in optimizeBitCastFromPhi() 2555 if (!BCI) in optimizeBitCastFromPhi() 2559 Type *TyA = BCI->getOperand(0)->getType(); in optimizeBitCastFromPhi() 2560 Type *TyB = BCI->getType(); in optimizeBitCastFromPhi() 2573 } else if (auto *BCI = dyn_cast<BitCastInst>(V)) { in optimizeBitCastFromPhi() 2575 Type *TyB = BCI->getOperand(0)->getType(); in optimizeBitCastFromPhi() 2576 Type *TyA = BCI->getType(); in optimizeBitCastFromPhi() 2616 } else if (auto *BCI = dyn_cast<BitCastInst>(V)) { in visitBitCast() 2617 NewV = BCI->getOperand(0); in visitBitCast() 2648 else if (auto *BCI in visitBitCast() 2463 auto *BCI = dyn_cast<BitCastInst>(IncValue); optimizeBitCastFromPhi() local 2483 } else if (auto *BCI = dyn_cast<BitCastInst>(V)) { optimizeBitCastFromPhi() local 2526 } else if (auto *BCI = dyn_cast<BitCastInst>(V)) { optimizeBitCastFromPhi() local 2558 else if (auto *BCI = dyn_cast<BitCastInst>(V)) { optimizeBitCastFromPhi() local [all...] |
| /freebsd-src/contrib/diff/src/ |
| H A D | cmp.c | 207 while ((c = getopt_long (argc, argv, "bci:ln:sv", long_options, 0)) in main()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | GlobalOpt.cpp | 1053 if (auto *BCI = dyn_cast<BitCastInst>(U)) { in valueIsOnlyUsedLocallyOrStoredToOneGlobal() 1054 Worklist.push_back(BCI); in valueIsOnlyUsedLocallyOrStoredToOneGlobal() 1042 if (auto *BCI = dyn_cast<BitCastInst>(U)) { valueIsOnlyUsedLocallyOrStoredToOneGlobal() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 1201 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) in handleDebugDeclare() 1202 Address = BCI->getOperand(0); in handleDebugDeclare() 1188 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) handleDebugDeclare() local
|