Searched refs:BC (Results 26 - 50 of 81) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoads.cpp58 if (const BitCastOperator *BC = dyn_cast<BitCastOperator>(V)) {
59 if (BC->getSrcTy()->isPointerTy())
61 BC->getOperand(0), Alignment, Size, DL, CtxI, DT, Visited, MaxDepth);
/freebsd-13-stable/crypto/openssl/crypto/perlasm/
H A Dx86masm.pl83 sub ::BC { "@_"; }
H A Dx86nasm.pl83 sub ::BC { (($::mwerks)?"":"BYTE ")."@_"; }
H A Dx86gas.pl103 sub ::BC { @_; }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.h224 /// size of buffers with |BS| along with the buffer count with |BC|.
230 ErrorCode init(size_t BS, size_t BC);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCPreEmitPeephole.cpp248 if (Br->getOpcode() != PPC::BC && Br->getOpcode() != PPC::BCn)
270 (Br->getOpcode() == PPC::BC && CRSetOp == PPC::CRUNSET)) {
H A DPPCReduceCRLogicals.cpp158 OrigBROpcode == PPC::BC
161 ? PPC::BC
274 if (BROp == PPC::BC || BROp == PPC::BCLR) {
503 if (Opc == PPC::BC || Opc == PPC::BCn || Opc == PPC::BCLR ||
604 /// BC %vr9<kill>, <BB#2>; CRBITRC:%vr9
608 /// BC %vr6<kill>, <BB#2>; CRBITRC:%vr6
612 /// BC %vr9<kill>, <BB#2>; CRBITRC:%vr9
H A DPPCExpandISEL.cpp410 BuildMI(*MBB, BIL.back(), dl, TII->get(PPC::BC))
H A DPPCLoopInstrFormPrep.cpp258 while (BitCastInst *BC = dyn_cast<BitCastInst>(StrippedBasePtr))
259 StrippedBasePtr = BC->getOperand(0);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp70 if (auto *BC = dyn_cast<BitCastOperator>(U.getUser()))
71 findUses(BC, F, Uses, ConstantBCs);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp301 } else if (auto *BC = dyn_cast<BitCastInst>(I)) {
302 auto *V = getReplacement(BC->getOperand(0));
304 auto *NewT = PointerType::get(BC->getType()->getPointerElementType(),
307 IC.InsertNewInstWith(NewI, *BC);
308 NewI->takeName(BC);
309 WorkMap[BC] = NewI;
1110 if (auto *BC = dyn_cast<BitCastInst>(V)) {
1111 V = BC->getOperand(0);
H A DInstCombineVectorOps.cpp2117 if (BitCastInst *BC = dyn_cast<BitCastInst>(U))
2118 if (!BC->use_empty())
2120 BCs.push_back(BC);
2121 for (BitCastInst *BC : BCs) {
2123 Type *TgtTy = BC->getDestTy();
2160 replaceInstUsesWith(*BC, Ext);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp42 void ExprEngine::processCallEnter(NodeBuilderContext& BC, CallEnter CE, argument
68 processBeginOfFunction(BC, Node, DstBegin, Loc);
163 void ExprEngine::removeDeadOnEndOfFunction(NodeBuilderContext& BC, argument
180 SaveAndRestore<const NodeBuilderContext *> NodeContextRAII(currBldrCtx, &BC);
H A DSValBuilder.cpp263 const BlockCodeRegion *BC = local
265 const BlockDataRegion *BD = MemMgr.getBlockDataRegion(BC, locContext,
H A DCheckerManager.cpp449 void CheckerManager::runCheckersForEndFunction(NodeBuilderContext &BC, argument
457 NodeBuilder Bldr(Pred, Dst, BC);
H A DExprEngine.cpp2297 void ExprEngine::processBeginOfFunction(NodeBuilderContext &BC, argument
2301 SaveAndRestore<const NodeBuilderContext *> NodeContextRAII(currBldrCtx, &BC);
2307 void ExprEngine::processEndOfFunction(NodeBuilderContext& BC, argument
2348 NodeBuilder Bldr(Pred, PostCleanup, BC);
2367 removeDeadOnEndOfFunction(BC, Pred, AfterRemovedDead);
2371 getCheckerManager().runCheckersForEndFunction(BC, Dst, I, *this, RS);
2373 getCheckerManager().runCheckersForEndFunction(BC, Dst, Pred, *this, RS);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h362 void processBeginOfFunction(NodeBuilderContext &BC,
368 void processEndOfFunction(NodeBuilderContext& BC,
373 void removeDeadOnEndOfFunction(NodeBuilderContext& BC,
378 void processCallEnter(NodeBuilderContext& BC, CallEnter CE,
H A DMemRegion.h666 const BlockCodeRegion *BC; member in class:clang::ento::BlockDataRegion
674 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
688 const BlockCodeRegion *getCodeRegion() const { return BC; }
690 const BlockDecl *getDecl() const { return BC->getDecl(); }
692 QualType getLocationType() const override { return BC->getLocationType(); }
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp55 BlockCommandComment *BC = new (Allocator) BlockCommandComment(LocBegin, LocEnd, local
58 checkContainerDecl(BC);
59 return BC;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp710 Value *BC = Builder.CreateFMul(Op.LHS.second, Op.RHS.first, "mul_bc"); local
715 ResI = Builder.CreateFAdd(AD, BC, "mul_i");
832 llvm::Value *BC = Builder.CreateFMul(LHSi, RHSr); // b*c local
834 llvm::Value *BCmAD = Builder.CreateFSub(BC, AD); // bc-ad
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsBranchExpansion.cpp659 if (STI->hasMips32r6() && TII->isBranchOffsetInRange(Mips::BC, I.Offset)) {
666 TII->get(STI->inMicroMipsMode() ? Mips::BC_MMR6 : Mips::BC))
H A DMipsInstrInfo.cpp334 case Mips::BC:
478 return Mips::BC;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1060 unsigned BC = !!(MI->getOperand(BCN).getImm() & SISrcMods::OP_SEL_0); local
1061 if (FI || BC)
1062 O << " op_sel:[" << FI << ',' << BC << ']'; local
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1872 for (const BlockDecl::Capture &BC : BD->captures()) {
1873 VarDecl *VD = BC.getVariable();
1883 QualType CapType = BC.getVariable()->getType();
1886 S.checkNonTrivialCUnion(BC.getVariable()->getType(),
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h357 void runCheckersForEndFunction(NodeBuilderContext &BC,

Completed in 362 milliseconds

1234