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

  /external/llvm/lib/IR/
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);
112 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
114 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
AutoUpgrade.cpp 97 Type *Tys[2] = { F->getReturnType(), F->arg_begin()->getType() };
98 if (F->getName() != Intrinsic::getName(Intrinsic::objectsize, Tys)) {
101 Intrinsic::objectsize, Tys);
188 Type *Tys[3] = {
194 StructType::get(GV->getContext(), Tys, /*isPacked=*/false);
  /external/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 200 Type *Tys[1];
207 Tys[0] = PointerType::get(I8Ty, i);
208 Name = Intrinsic::getName(Intrinsic::nvvm_reflect, Tys);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 140 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
142 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops);
154 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
156 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops);
243 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
245 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/lib/Analysis/
CostModel.cpp 507 SmallVector<Type*, 4> Tys;
509 Tys.push_back(II->getArgOperand(J)->getType());
512 Tys);
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 176 std::vector<Type*> Tys;
187 Tys.push_back(Ty);
202 StructType *MergedTy = StructType::get(M.getContext(), Tys);
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 613 Type *Tys[] = { Val->getType() };
616 Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 333 Type *Tys[3] = { VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context) };
334 Function *MemCpyFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 248 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
251 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
SLPVectorizer.cpp     [all...]
LoopVectorize.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 416 llvm::Type *Tys[] = { ResType, Builder.getInt8PtrTy(0) };
417 Value *F = CGM.getIntrinsic(Intrinsic::objectsize, Tys);
    [all...]
CGExpr.cpp 487 llvm::Type *Tys[2] = { IntPtrTy, Int8PtrTy };
488 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, Tys);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 332 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
333 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
334 return Tys;
382 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
383 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
384 return Tys;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 568 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
572 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
573 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
574 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
    [all...]

Completed in 436 milliseconds