HomeSort by relevance Sort by last modified time
    Searched defs:ParamTys (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 32 std::vector<Type *> ParamTys;
34 ParamTys.push_back(I->getType());
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
72 std::vector<Type *> ParamTys;
74 ParamTys.push_back((*I)->getType());
76 FunctionType::get(RetTy, ParamTys, false));
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 345 const std::vector<Record*> &ParamTys = ArgTypes.second;
349 << ParamTys.size();
380 for (unsigned j = 0, je = ParamTys.size(); j != je; ++j) {
381 Record *ArgType = ParamTys[j];
442 const std::vector<Record*> &ParamTys = ArgTypes.second;
444 unsigned N = ParamTys.size();
447 getValueType(ParamTys[N - 1]->getValueAsDef("VT")) == MVT::isVoid) {
459 EmitTypeGenerate(OS, ParamTys[j], ArgNo);
  /frameworks/compile/libbcc/lib/Transforms/
ForEachExpand.cpp 171 llvm::SmallVector<llvm::Type*, 8> ParamTys;
172 ParamTys.push_back(ForEachStubPtrTy); // const RsForEachStubParamStruct *p
173 ParamTys.push_back(Int32Ty); // uint32_t x1
174 ParamTys.push_back(Int32Ty); // uint32_t x2
175 ParamTys.push_back(Int32Ty); // uint32_t instep
176 ParamTys.push_back(Int32Ty); // uint32_t outstep
179 llvm::FunctionType::get(llvm::Type::getVoidTy(*C), ParamTys, false);

Completed in 1054 milliseconds