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

  /external/llvm/lib/Target/Blackfin/
BlackfinIntrinsicInfo.h 22 std::string getName(unsigned IntrID, Type **Tys = 0,
26 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
BlackfinIntrinsicInfo.cpp 37 std::string BlackfinIntrinsicInfo::getName(unsigned IntrID, Type **Tys,
97 Type **Tys,
  /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 40 std::string MBlazeIntrinsicInfo::getName(unsigned IntrID, Type **Tys,
106 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 337 std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
345 if (Tys.empty())
348 for (unsigned i = 0; i < Tys.size(); ++i) {
349 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) {
353 else if (Tys[i])
354 Result += "." + EVT::getEVT(Tys[i]).getEVTString();
360 ID id, ArrayRef<Type*> Tys) {
387 Function *Intrinsic::getDeclaration(Module *M, ID id, ArrayRef<Type*> Tys) {
391 cast<Function>(M->getOrInsertFunction(getName(id, Tys),
392 getType(M->getContext(), id, Tys)));
    [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 268 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
269 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
295 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
296 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
320 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
321 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 139 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
141 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
153 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
155 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
233 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
235 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 275 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
276 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
277 return Tys;
325 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
326 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
327 return Tys;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CodeGenModule.h 619 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys =
    [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 775 Type *Tys[3] = {VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context)};
778 Tys);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 219 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
222 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 414 milliseconds