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

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp373 llvm::CallInst *CI = IB->CreateCall(F, Params); local
375 CI->setCallingConv(F->getCallingConv());
380 IB->CreateRet(CI);
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp1253 const CallInst &CI = cast<CallInst>(I); local
1254 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType());
1259 Vals.push_back(VE.getAttributeID(CI.getAttributes()));
1260 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall()));
1261 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee
1265 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param.
1269 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
1271 PushValueAndType(CI.getArgOperand(i), InstID, Vals, VE); // varargs
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp1270 const CallInst &CI = cast<CallInst>(I); local
1271 PointerType *PTy = cast<PointerType>(CI.getCalledValue()->getType());
1276 Vals.push_back(VE.getAttributeID(CI.getAttributes()));
1277 Vals.push_back((CI.getCallingConv() << 1) | unsigned(CI.isTailCall()));
1278 PushValueAndType(CI.getCalledValue(), InstID, Vals, VE); // Callee
1282 Vals.push_back(VE.getValueID(CI.getArgOperand(i))); // fixed param.
1286 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
1288 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 146 milliseconds