Home
last modified time | relevance | path

Searched refs:ArgTys (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/libbcc/lib/
DRSScriptGroupFusion.cpp148 llvm::SmallVector<llvm::Type*, 8> ArgTys; in getFusedFuncType() local
151 ArgTys.push_back(firstF->arg_begin()->getType()); in getFusedFuncType()
156 ArgTys.push_back(I32Ty); in getFusedFuncType()
159 ArgTys.push_back(I32Ty); in getFusedFuncType()
162 ArgTys.push_back(I32Ty); in getFusedFuncType()
171 return llvm::FunctionType::get(retTy, ArgTys, false); in getFusedFuncType()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp1271 SmallVector<Type*, 8> ArgTys; in ParseTypeTableBody() local
1274 ArgTys.push_back(T); in ParseTypeTableBody()
1280 if (!ResultTy || ArgTys.size() < Record.size()-3) in ParseTypeTableBody()
1283 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody()
1290 SmallVector<Type*, 8> ArgTys; in ParseTypeTableBody() local
1293 ArgTys.push_back(T); in ParseTypeTableBody()
1299 if (!ResultTy || ArgTys.size() < Record.size()-2) in ParseTypeTableBody()
1302 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody()
1546 std::vector<Type*> ArgTys; in ParseOldTypeTable() local
1549 ArgTys.push_back(Elt); in ParseOldTypeTable()
[all …]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp995 SmallVector<Type*, 8> ArgTys; in ParseTypeTableBody() local
998 ArgTys.push_back(T); in ParseTypeTableBody()
1004 if (!ResultTy || ArgTys.size() < Record.size()-3) in ParseTypeTableBody()
1007 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody()
1251 std::vector<Type*> ArgTys; in ParseOldTypeTable() local
1254 ArgTys.push_back(Elt); in ParseOldTypeTable()
1258 if (ArgTys.size()+3 != Record.size()) in ParseOldTypeTable()
1261 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseOldTypeTable()