HomeSort by relevance Sort by last modified time
    Searched defs:Tys (Results 1 - 14 of 14) 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);
  /external/llvm/lib/Analysis/
CostModel.cpp 217 SmallVector<Type*, 4> Tys;
219 Tys.push_back(II->getArgOperand(J)->getType());
222 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));
244 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
246 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/Transforms/Scalar/
GlobalMerge.cpp 161 std::vector<Type*> Tys;
169 Tys.push_back(Ty);
173 StructType *MergedTy = StructType::get(M.getContext(), Tys);
LoopIdiomRecognize.cpp 617 Type *Tys[] = { Val->getType() };
620 Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 385 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
388 Tys);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 246 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
249 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [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/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 610 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
614 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
615 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
616 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
    [all...]

Completed in 490 milliseconds