Lines Matching defs:CBI
3192 const CallBrInst *CBI = cast<CallBrInst>(&I);
3193 const Value *Callee = CBI->getCalledOperand();
3194 FunctionType *FTy = CBI->getFunctionType();
3196 if (CBI->hasOperandBundles())
3197 writeOperandBundles(*CBI, InstID);
3201 Vals.push_back(VE.getAttributeListID(CBI->getAttributes()));
3203 Vals.push_back(CBI->getCallingConv() << bitc::CALL_CCONV |
3206 Vals.push_back(VE.getValueID(CBI->getDefaultDest()));
3207 Vals.push_back(CBI->getNumIndirectDests());
3208 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i)
3209 Vals.push_back(VE.getValueID(CBI->getIndirectDest(i)));
3220 for (unsigned i = FTy->getNumParams(), e = CBI->arg_size(); i != e; ++i)