Searched defs:FTy (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp1164 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); local
1174 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
1178 if (FTy->isVarArg()) {
1179 for (unsigned i = FTy->getNumParams(), e = I.getNumOperands()-3;
1230 FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); local
1239 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
1243 if (FTy->isVarArg()) {
1244 for (unsigned i = FTy->getNumParams(), e = CI.getNumArgOperands();
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp1746 FunctionType *FTy =
1748 if (!FTy)
1751 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
2486 FunctionType *FTy = !CalleeTy ? 0 : local
2490 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
2491 Record.size() < OpNum+FTy->getNumParams())
2495 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
2496 Ops.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
2500 if (!FTy->isVarArg()) {
2650 FunctionType *FTy local
[all...]

Completed in 70 milliseconds