/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | CallSite.h | 65 CallSiteBase(CallBrTy *CBI) : I(CBI, 2) { assert(CBI); } in CallSiteBase() argument 680 CallSite(CallBrInst *CBI) : CallSiteBase(CBI) {} in CallSite() argument 702 ImmutableCallSite(const CallBrInst *CBI) : CallSiteBase(CBI) {}
|
D | Instructions.h | 4061 static CallBrInst *Create(CallBrInst *CBI,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 831 CallBrInst::CallBrInst(const CallBrInst &CBI) in CallBrInst() argument 832 : CallBase(CBI.Attrs, CBI.FTy, CBI.getType(), Instruction::CallBr, in CallBrInst() 833 OperandTraits<CallBase>::op_end(this) - CBI.getNumOperands(), in CallBrInst() 834 CBI.getNumOperands()) { in CallBrInst() 835 setCallingConv(CBI.getCallingConv()); in CallBrInst() 836 std::copy(CBI.op_begin(), CBI.op_end(), op_begin()); in CallBrInst() 837 std::copy(CBI.bundle_op_info_begin(), CBI.bundle_op_info_end(), in CallBrInst() 839 SubclassOptionalData = CBI.SubclassOptionalData; in CallBrInst() 840 NumIndirectDests = CBI.NumIndirectDests; in CallBrInst() 843 CallBrInst *CallBrInst::Create(CallBrInst *CBI, ArrayRef<OperandBundleDef> OpB, in Create() argument [all …]
|
D | Verifier.cpp | 474 void visitCallBrInst(CallBrInst &CBI); 2522 void Verifier::visitCallBrInst(CallBrInst &CBI) { in visitCallBrInst() argument 2523 Assert(CBI.isInlineAsm(), "Callbr is currently only used for asm-goto!", in visitCallBrInst() 2524 &CBI); in visitCallBrInst() 2525 Assert(CBI.getType()->isVoidTy(), "Callbr return value is not supported!", in visitCallBrInst() 2526 &CBI); in visitCallBrInst() 2527 for (unsigned i = 0, e = CBI.getNumSuccessors(); i != e; ++i) in visitCallBrInst() 2528 Assert(CBI.getSuccessor(i)->getType()->isLabelTy(), in visitCallBrInst() 2529 "Callbr successors must all have pointer type!", &CBI); in visitCallBrInst() 2530 for (unsigned i = 0, e = CBI.getNumOperands(); i != e; ++i) { in visitCallBrInst() [all …]
|
D | AsmWriter.cpp | 3936 } else if (const CallBrInst *CBI = dyn_cast<CallBrInst>(&I)) { in printInstruction() local 3937 Operand = CBI->getCalledValue(); in printInstruction() 3938 FunctionType *FTy = CBI->getFunctionType(); in printInstruction() 3940 const AttributeList &PAL = CBI->getAttributes(); in printInstruction() 3943 if (CBI->getCallingConv() != CallingConv::C) { in printInstruction() 3945 PrintCallingConv(CBI->getCallingConv(), Out); in printInstruction() 3960 for (unsigned op = 0, Eop = CBI->getNumArgOperands(); op < Eop; ++op) { in printInstruction() 3963 writeParamOperand(CBI->getArgOperand(op), PAL.getParamAttributes(op)); in printInstruction() 3970 writeOperandBundles(CBI); in printInstruction() 3973 writeOperand(CBI->getDefaultDest(), true); in printInstruction() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlan.cpp | 622 if (const VPInstruction *CBI = dyn_cast<VPInstruction>(CBV)) { in dumpBasicBlock() local 623 CBI->printAsOperand(OS); in dumpBasicBlock() 624 OS << " (" << DOT::EscapeString(CBI->getParent()->getName()) << ")\\l\""; in dumpBasicBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 554 for (auto CBI = CatchBlocks.rbegin(), CBE = CatchBlocks.rend(); in calculateClrEHStateNumbers() local 555 CBI != CBE; ++CBI, FollowerState = CatchState) { in calculateClrEHStateNumbers() 556 const BasicBlock *CatchBlock = *CBI; in calculateClrEHStateNumbers()
|
D | CodeGenPrepare.cpp | 689 if (auto *CBI = dyn_cast<CallBrInst>((*PI)->getTerminator())) in isMergingEmptyBlockProfitable() local 690 for (unsigned i = 0, e = CBI->getNumSuccessors(); i != e; ++i) in isMergingEmptyBlockProfitable() 691 if (DestBB == CBI->getSuccessor(i)) in isMergingEmptyBlockProfitable()
|
/third_party/boost/boost/fusion/functional/invocation/ |
D | invoke.hpp | 63 bool CBI = ft::is_callable_builtin<Function>::value,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 4217 Instruction *InstCombiner::visitCallBrInst(CallBrInst &CBI) { in visitCallBrInst() argument 4218 return visitCallBase(CBI); in visitCallBrInst() 4765 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) { in transformConstExprCastCall() local 4766 NewCall = Builder.CreateCallBr(Callee, CBI->getDefaultDest(), in transformConstExprCastCall() 4767 CBI->getIndirectDests(), Args, OpBundles); in transformConstExprCastCall() 4796 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) { in transformConstExprCastCall() local 4797 BasicBlock::iterator I = CBI->getDefaultDest()->getFirstInsertionPt(); in transformConstExprCastCall() 4947 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(&Call)) { in transformCallThroughTrampoline() local 4949 CallBrInst::Create(NewFTy, NewCallee, CBI->getDefaultDest(), in transformCallThroughTrampoline() 4950 CBI->getIndirectDests(), NewArgs, OpBundles); in transformCallThroughTrampoline() [all …]
|
D | InstCombineInternal.h | 427 Instruction *visitCallBrInst(CallBrInst &CBI);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 2834 const CallBrInst *CBI = cast<CallBrInst>(&I); in writeInstruction() local 2835 const Value *Callee = CBI->getCalledValue(); in writeInstruction() 2836 FunctionType *FTy = CBI->getFunctionType(); in writeInstruction() 2838 if (CBI->hasOperandBundles()) in writeInstruction() 2839 writeOperandBundles(CBI, InstID); in writeInstruction() 2843 Vals.push_back(VE.getAttributeListID(CBI->getAttributes())); in writeInstruction() 2845 Vals.push_back(CBI->getCallingConv() << bitc::CALL_CCONV | in writeInstruction() 2848 Vals.push_back(VE.getValueID(CBI->getDefaultDest())); in writeInstruction() 2849 Vals.push_back(CBI->getNumIndirectDests()); in writeInstruction() 2850 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i) in writeInstruction() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 645 void visitCallBrInst (CallBrInst &CBI) { in visitCallBrInst() argument 646 visitCallSite(&CBI); in visitCallBrInst() 647 visitTerminator(CBI); in visitCallBrInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 992 if (auto *CBI = dyn_cast<CallBrInst>((*I)->getTerminator())) { in TryToSimplifyUncondBranchFromEmptyBlock() local 993 if (Succ == CBI->getDefaultDest()) in TryToSimplifyUncondBranchFromEmptyBlock() 995 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i) in TryToSimplifyUncondBranchFromEmptyBlock() 996 if (Succ == CBI->getIndirectDest(i)) in TryToSimplifyUncondBranchFromEmptyBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
D | AVRInstrFormats.td | 358 // t = type (1 for SBI, 0 for CBI)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 166 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(V)) { in ValidateEndOfModule() local 167 AttributeList AS = CBI->getAttributes(); in ValidateEndOfModule() 173 CBI->setAttributes(AS); in ValidateEndOfModule() 6459 CallBrInst *CBI = in ParseCallBr() local 6462 CBI->setCallingConv(CC); in ParseCallBr() 6463 CBI->setAttributes(PAL); in ParseCallBr() 6464 ForwardRefAttrGroups[CBI] = FwdRefAttrGrps; in ParseCallBr() 6465 Inst = CBI; in ParseCallBr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZScheduleZ13.td | 1297 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "VSB(I|IQ|CBI|CBIQ)?$")>;
|
D | SystemZScheduleZ14.td | 1319 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "VSB(I|IQ|CBI|CBIQ)?$")>;
|
D | SystemZScheduleZ15.td | 1357 def : InstRW<[WLat2, VecXsPm, NormalGr], (instregex "VSB(I|IQ|CBI|CBIQ)?$")>;
|
/third_party/eudev/hwdb/ |
D | 20-acpi-vendor.hwdb | 1260 acpi:CBI*:
|