Searched refs:Tys (Results 1 - 19 of 19) sorted by relevance

/external/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.h22 std::string getName(unsigned IntrID, Type **Tys = 0,
27 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
H A DMBlazeIntrinsicInfo.cpp41 std::string MBlazeIntrinsicInfo::getName(unsigned IntrID, Type **Tys, argument
104 Type **Tys,
/external/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h37 /// The Tys and numTys parameters are for intrinsics with overloaded types
39 /// intrinsic, Tys should point to an array of numTys pointers to Type,
42 virtual std::string getName(unsigned IID, Type **Tys = 0,
56 /// and return it. The Tys and numTys are for intrinsics with overloaded
58 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
/external/llvm/include/llvm/
H A DIntrinsics.h48 std::string getName(ID id, ArrayRef<Type*> Tys = ArrayRef<Type*>());
53 ArrayRef<Type*> Tys = ArrayRef<Type*>());
66 /// The Tys and numTys parameters are for intrinsics with overloaded types
68 /// overloaded intrinsic, Tys should point to an array of numTys pointers to
72 ArrayRef<Type*> Tys = ArrayRef<Type*>());
/external/llvm/lib/VMCore/
H A DFunction.cpp338 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) { argument
346 if (Tys.empty())
349 for (unsigned i = 0; i < Tys.size(); ++i) {
350 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) {
354 else if (Tys[i])
355 Result += "." + EVT::getEVT(Tys[i]).getEVTString();
538 ArrayRef<Type*> Tys, LLVMContext &Context) {
553 return VectorType::get(DecodeFixedType(Infos, Tys, Context),D.Vector_Width);
555 return PointerType::get(DecodeFixedType(Infos, Tys, Context),
561 Elts[i] = DecodeFixedType(Infos, Tys, Contex
[all...]
H A DIRBuilder.cpp68 Type *Tys[] = { Ptr->getType(), Size->getType() }; local
70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() }; local
90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
108 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() }; local
110 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
H A DCore.cpp295 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
296 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
322 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
323 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
347 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
348 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
/external/llvm/lib/Transforms/Scalar/
H A DGlobalMerge.cpp137 std::vector<Type*> Tys; local
145 Tys.push_back(Ty);
149 StructType *MergedTy = StructType::get(M.getContext(), Tys);
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp142 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
144 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
156 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
158 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
236 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
238 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, Ops,
H A DX86ISelLowering.cpp4991 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other); local
4994 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
7816 SDVTList Tys; local
7819 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
7821 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
7840 Tys, Ops, array_lengthof(Ops),
7854 Tys = DAG.getVTList(MVT::Other);
7863 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8037 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other); local
8039 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Op
8123 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other); local
11146 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
11158 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
11374 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); local
11422 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
11465 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue); local
13428 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other); local
[all...]
/external/llvm/examples/BrainF/
H A DBrainF.cpp58 Type *Tys[] = { Type::getInt8PtrTy(C), Type::getInt32Ty(C) }; local
60 Tys);
/external/llvm/include/llvm-c/
H A DCore.h2665 inline LLVMContext **unwrap(LLVMContextRef* Tys) { argument
2666 return reinterpret_cast<LLVMContext**>(Tys);
2669 inline LLVMContextRef *wrap(const LLVMContext **Tys) { argument
2670 return reinterpret_cast<LLVMContextRef*>(const_cast<LLVMContext**>(Tys));
2675 inline Type **unwrap(LLVMTypeRef* Tys) { argument
2676 return reinterpret_cast<Type**>(Tys);
2679 inline LLVMTypeRef *wrap(Type **Tys) { argument
2680 return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c274 value Tys = alloc(LLVMCountParamTypes(FunTy), 0); local
275 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
276 return Tys;
324 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0); local
325 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
326 return Tys;
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp375 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)}; local
378 Tys);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1796 llvm::Type *Tys[2] = { FloatTy, Ty }; local
1799 Function *F = CGM.getIntrinsic(Int, Tys);
1808 llvm::Type *Tys[2] = { Ty, FloatTy }; local
1811 Function *F = CGM.getIntrinsic(Int, Tys);
2036 llvm::Type *Tys[2] = { Ty, NarrowTy }; local
2037 return EmitNeonCall(CGM.getIntrinsic(Int, Tys), Ops, "vpadal");
2050 llvm::Type *Tys[2] = { Ty, NarrowTy }; local
2051 return EmitNeonCall(CGM.getIntrinsic(Int, Tys), Ops, "vpaddl");
H A DCodeGenModule.h678 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys =
H A DCodeGenModule.cpp1974 ArrayRef<llvm::Type*> Tys) {
1976 Tys);
1973 getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp215 Type *Tys[3] = { CI.getArgOperand(0)->getType(), local
218 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp560 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8, local
564 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
565 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
566 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
5201 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); local
5203 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops.data(), Ops.size(), MVT::i64,
8268 EVT Tys[6]; local
8272 Tys[n] = VecTy;
8273 Tys[n++] = MVT::i32;
8274 Tys[
8350 EVT Tys[5]; local
[all...]

Completed in 381 milliseconds