Searched defs:CI (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp385 llvm::CallInst *CI = IB->CreateCall(F, Params); local
387 CI->setCallingConv(F->getCallingConv());
392 IB->CreateRet(CI);
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp1249 const CallInst &CI = cast<CallInst>(I); local
1250 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType());
1255 Vals.push_back(VE.getAttributeID(CI.getAttributes()));
1256 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall()));
1257 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee
1261 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param.
1265 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
1267 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp1266 const CallInst &CI = cast<CallInst>(I); local
1267 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType());
1272 Vals.push_back(VE.getAttributeID(CI.getAttributes()));
1273 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall()));
1274 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee
1278 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param.
1282 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
1284 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp84 CallInst *CI = cast<CallInst>(Declare->use_back()); local
85 CI->eraseFromParent();
2887 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2888 UpgradeIntrinsicCall(CI, I->second);
2936 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2937 UpgradeIntrinsicCall(CI, I->second);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp51 if (CallInst *CI = dyn_cast<CallInst>(I)) {
52 switch (CI->getCalledFunction()->getIntrinsicID()) {
56 Exn = CI;
60 Sel = CI;
86 if (const ConstantInt *CI = dyn_cast<ConstantInt>(EHSel->getArgOperand(i))){
87 unsigned FilterLength = CI->getZExtValue();
326 CallInst *CI = cast<CallInst>(Declare->use_back()); local
327 CI->eraseFromParent();
3223 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3224 UpgradeIntrinsicCall(CI,
[all...]
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp1362 const CallInst &CI = cast<CallInst>(I); local
1363 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType());
1368 Vals.push_back(VE.getAttributeID(CI.getAttributes()));
1369 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall()));
1370 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee
1374 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param.
1378 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
1380 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs

Completed in 136 milliseconds