HomeSort by: relevance | last modified time | path
    Searched refs:CBI (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl2/groff/font/devhtml/
Makefile 6 FONTS= R I B BI CR CI CB CBI S
  /src/external/gpl2/groff/font/devlj4/
Makefile 12 ALBB ALBR AOB AOI AOR CB CBI CI CR GB GBI GI GR \
  /src/external/gpl2/groff/font/devps/
Makefile 10 CB CBI CI CR HB HBI HI HR HNB HNBI HNI HNR \
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Dominators.cpp 191 if (const auto *CBI = dyn_cast<CallBrInst>(Def)) {
192 BasicBlock *NormalDest = CBI->getDefaultDest();
308 if (const auto *CBI = dyn_cast<CallBrInst>(Def)) {
309 BasicBlock *NormalDest = CBI->getDefaultDest();
Instructions.cpp 932 CallBrInst::CallBrInst(const CallBrInst &CBI)
933 : CallBase(CBI.Attrs, CBI.FTy, CBI.getType(), Instruction::CallBr,
934 OperandTraits<CallBase>::op_end(this) - CBI.getNumOperands(),
935 CBI.getNumOperands()) {
936 setCallingConv(CBI.getCallingConv());
937 std::copy(CBI.op_begin(), CBI.op_end(), op_begin());
938 std::copy(CBI.bundle_op_info_begin(), CBI.bundle_op_info_end()
    [all...]
Verifier.cpp 514 void visitCallBrInst(CallBrInst &CBI);
2786 void Verifier::visitCallBrInst(CallBrInst &CBI) {
2787 Assert(CBI.isInlineAsm(), "Callbr is currently only used for asm-goto!",
2788 &CBI);
2789 const InlineAsm *IA = cast<InlineAsm>(CBI.getCalledOperand());
2791 for (unsigned i = 0, e = CBI.getNumSuccessors(); i != e; ++i)
2792 Assert(CBI.getSuccessor(i)->getType()->isLabelTy(),
2793 "Callbr successors must all have pointer type!", &CBI);
2794 for (unsigned i = 0, e = CBI.getNumOperands(); i != e; ++i) {
2795 Assert(i >= CBI.getNumArgOperands() || !isa<BasicBlock>(CBI.getOperand(i))
    [all...]
AsmWriter.cpp 4219 } else if (const CallBrInst *CBI = dyn_cast<CallBrInst>(&I)) {
4220 Operand = CBI->getCalledOperand();
4221 FunctionType *FTy = CBI->getFunctionType();
4223 const AttributeList &PAL = CBI->getAttributes();
4226 if (CBI->getCallingConv() != CallingConv::C) {
4228 PrintCallingConv(CBI->getCallingConv(), Out);
4243 for (unsigned op = 0, Eop = CBI->getNumArgOperands(); op < Eop; ++op) {
4246 writeParamOperand(CBI->getArgOperand(op), PAL.getParamAttributes(op));
4253 writeOperandBundles(CBI);
4256 writeOperand(CBI->getDefaultDest(), true)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 125 if (auto *CBI = dyn_cast<CallBrInst>((*PI)->getTerminator()))
126 for (unsigned i = 0, e = CBI->getNumSuccessors(); i != e; ++i)
127 if (RetBlock == CBI->getSuccessor(i)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
IROutliner.h 340 bool visitCallBrInst(CallBrInst &CBI) { return false; }
  /src/external/gpl2/groff/dist/font/devlj4/generate/
Makefile 52 CB CBI CI CR \
98 CBI: $(AUTOFONT)/9nb00063.tfm $(TEXTMAP)
  /src/external/gpl2/groff/dist/font/devps/generate/
Makefile 37 TEXTFONTS=AB ABI AI AR BMB BMBI BMI BMR CB CBI CI CR HB HBI HI HR HNB HNBI \
98 CBI:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
WinEHPrepare.cpp 576 for (auto CBI = CatchBlocks.rbegin(), CBE = CatchBlocks.rend();
577 CBI != CBE; ++CBI, FollowerState = CatchState) {
578 const BasicBlock *CatchBlock = *CBI;
CodeGenPrepare.cpp 811 if (auto *CBI = dyn_cast<CallBrInst>((Pred)->getTerminator()))
812 for (unsigned i = 0, e = CBI->getNumSuccessors(); i != e; ++i)
813 if (DestBB == CBI->getSuccessor(i))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 2002 Instruction *InstCombinerImpl::visitCallBrInst(CallBrInst &CBI) {
2003 return visitCallBase(CBI);
2689 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) {
2690 NewCall = Builder.CreateCallBr(Callee, CBI->getDefaultDest(),
2691 CBI->getIndirectDests(), Args, OpBundles);
2717 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(Caller)) {
2718 BasicBlock::iterator I = CBI->getDefaultDest()->getFirstInsertionPt();
2868 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(&Call)) {
2870 CallBrInst::Create(NewFTy, NewCallee, CBI->getDefaultDest(),
2871 CBI->getIndirectDests(), NewArgs, OpBundles)
    [all...]
InstCombineInternal.h 145 Instruction *visitCallBrInst(CallBrInst &CBI);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
IRSimilarityIdentifier.h 418 InstrType visitCallBrInst(CallBrInst &CBI) { return Illegal; }
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 2960 const CallBrInst *CBI = cast<CallBrInst>(&I);
2961 const Value *Callee = CBI->getCalledOperand();
2962 FunctionType *FTy = CBI->getFunctionType();
2964 if (CBI->hasOperandBundles())
2965 writeOperandBundles(*CBI, InstID);
2969 Vals.push_back(VE.getAttributeListID(CBI->getAttributes()));
2971 Vals.push_back(CBI->getCallingConv() << bitc::CALL_CCONV |
2974 Vals.push_back(VE.getValueID(CBI->getDefaultDest()));
2975 Vals.push_back(CBI->getNumIndirectDests());
2976 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SCCPSolver.cpp 317 void visitCallBrInst(CallBrInst &CBI) {
318 visitCallBase(CBI);
319 visitTerminator(CBI);
Local.cpp 1071 if (auto *CBI = dyn_cast<CallBrInst>(PredBB->getTerminator())) {
1072 if (Succ == CBI->getDefaultDest())
1074 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i)
1075 if (Succ == CBI->getIndirectDest(i))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.cpp 430 if (const auto *CBI = dyn_cast<VPInstruction>(CBV))
431 O << " (" << CBI->getParent()->getName() << ")";
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 174 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(V)) {
175 AttributeList AS = CBI->getAttributes();
181 CBI->setAttributes(AS);
6952 CallBrInst *CBI =
6955 CBI->setCallingConv(CC);
6956 CBI->setAttributes(PAL);
6957 ForwardRefAttrGroups[CBI] = FwdRefAttrGrps;
6958 Inst = CBI;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 4043 /// Create a clone of \p CBI with a different set of operand bundles and
4046 /// The returned callbr instruction is identical to \p CBI in every way
4049 static CallBrInst *Create(CallBrInst *CBI,

Completed in 86 milliseconds