HomeSort by relevance Sort by last modified time
    Searched refs:Tys (Results 1 - 19 of 19) sorted by null

  /external/llvm/lib/Target/MBlaze/
MBlazeIntrinsicInfo.h 22 std::string getName(unsigned IntrID, Type **Tys = 0,
27 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
MBlazeIntrinsicInfo.cpp 41 std::string MBlazeIntrinsicInfo::getName(unsigned IntrID, Type **Tys,
104 Type **Tys,
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 37 /// 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/
Intrinsics.h 48 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/
Function.cpp 338 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
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, Context)
    [all...]
IRBuilder.cpp 68 Type *Tys[] = { Ptr->getType(), Size->getType() };
70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
108 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
110 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
Core.cpp 295 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);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 137 std::vector<Type*> Tys;
145 Tys.push_back(Ty);
149 StructType *MergedTy = StructType::get(M.getContext(), Tys);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 142 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
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);
238 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, Ops,
X86ISelLowering.cpp     [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 58 Type *Tys[] = { Type::getInt8PtrTy(C), Type::getInt32Ty(C) };
60 Tys);
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 274 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
275 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
276 return Tys;
324 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
325 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
326 return Tys;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CodeGenModule.h 678 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys =
    [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 375 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
378 Tys);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 215 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
218 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 560 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
564 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
565 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
566 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
    [all...]

Completed in 658 milliseconds