Searched defs:Ty (Results 201 - 225 of 237) sorted by relevance

12345678910

/external/clang/lib/AST/
H A DExpr.cpp48 const RecordType *Ty = DerivedType->castAs<RecordType>(); local
49 Decl *D = Ty->getDecl();
760 StringKind Kind, bool Pascal, QualType Ty,
768 StringLiteral *SL = new (Mem) StringLiteral(Ty);
3515 if (const ObjCObjectType *Ty = T->getAs<ObjCObjectType>())
3516 return Ty->getInterface();
3629 DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty, argument
3636 : Expr(DesignatedInitExprClass, Ty,
759 Create(ASTContext &C, StringRef Str, StringKind Kind, bool Pascal, QualType Ty, const SourceLocation *Loc, unsigned NumStrs) argument
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp530 llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) { argument
533 if (Ty->isComplexIntegerType())
536 uint64_t Size = CGM.getContext().getTypeSize(Ty);
537 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
546 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit, argument
549 const Type *T = Qc.strip(Ty);
583 llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty, argument
589 if (Ty->isObjCQualifiedIdType())
593 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
594 Ty
598 CreateType(const PointerType *Ty, llvm::DIFile Unit) argument
645 llvm::DIType Ty = local
663 CreatePointerLikeType(unsigned Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile Unit) argument
694 CreateType(const BlockPointerType *Ty, llvm::DIFile Unit) argument
756 CreateType(const TypedefType *Ty, llvm::DIFile Unit, bool Declaration) argument
776 CreateType(const FunctionType *Ty, llvm::DIFile Unit) argument
1420 CreateType(const RecordType *Ty, bool Declaration) argument
1492 CreateType(const ObjCObjectType *Ty, llvm::DIFile Unit) argument
1524 CreateType(const ObjCInterfaceType *Ty, llvm::DIFile Unit) argument
1700 CreateType(const VectorType *Ty, llvm::DIFile Unit) argument
1717 CreateType(const ArrayType *Ty, llvm::DIFile Unit) argument
1772 CreateType(const LValueReferenceType *Ty, llvm::DIFile Unit) argument
1778 CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit) argument
1784 CreateType(const MemberPointerType *Ty, llvm::DIFile U) argument
1797 CreateType(const AtomicType *Ty, llvm::DIFile U) argument
1903 getTypeOrNull(QualType Ty) argument
1929 getCompletedTypeOrNull(QualType Ty) argument
1967 getCachedInterfaceTypeOrNull(QualType Ty) argument
1983 getOrCreateType(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
2056 getObjCInterfaceDecl(QualType Ty) argument
2069 CreateTypeNode(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
2158 getOrCreateLimitedType(QualType Ty, llvm::DIFile Unit) argument
2186 CreateLimitedType(const RecordType *Ty) argument
2257 CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) argument
2282 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0, local
2661 llvm::DIType Ty; local
2780 CreateSelfType(const QualType &QualTy, llvm::DIType Ty) argument
2802 llvm::DIType Ty; local
3112 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit); local
3204 llvm::DIType Ty, RepTy; local
[all...]
H A DCGExpr.cpp53 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty, argument
56 return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
57 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
67 llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty, argument
69 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
71 CharUnits Align = getContext().getTypeAlignInChars(Ty);
76 llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty, argument
78 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
80 CharUnits Align = getContext().getTypeAlignInChars(Ty);
413 QualType Ty local
441 EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, llvm::Value *Address, QualType Ty, CharUnits Alignment) argument
701 GetUndefRValue(QualType Ty) argument
736 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType())); local
993 hasBooleanRepresentation(QualType Ty) argument
1006 getRangeForType(CodeGenFunction &CGF, QualType Ty, llvm::APInt &Min, llvm::APInt &End, bool StrictEnums) argument
1040 getRangeForLoadFromType(QualType Ty) argument
1050 EmitLoadOfScalar(llvm::Value *Addr, bool Volatile, unsigned Alignment, QualType Ty, llvm::MDNode *TBAAInfo, QualType TBAABaseType, uint64_t TBAAOffset) argument
1139 EmitToMemory(llvm::Value *Value, QualType Ty) argument
1153 EmitFromMemory(llvm::Value *Value, QualType Ty) argument
1164 EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, bool Volatile, unsigned Alignment, QualType Ty, llvm::MDNode *TBAAInfo, bool isInit, QualType TBAABaseType, uint64_t TBAAOffset) argument
1897 GetAddrOfConstantWideString(StringRef Str, const char *GlobalName, ASTContext &Context, QualType Ty, SourceLocation Loc, CodeGenModule &CGM) argument
[all...]
H A DCGExprScalar.cpp46 QualType Ty; // Computation Type. member in struct:__anon15207::BinOpInfo
122 Value *EmitNullValue(QualType Ty);
408 if (Ops.Ty->isSignedIntegerOrEnumerationType()) {
421 if (Ops.Ty->isUnsignedIntegerType() && CGF.SanOpts->UnsignedIntegerOverflow)
830 Value *ScalarExprEmitter::EmitNullValue(QualType Ty) { argument
831 return CGF.EmitFromMemory(CGF.CGM.EmitNullConstant(Ty), Ty);
864 StaticData.push_back(CGF.EmitCheckTypeDescriptor(Info.Ty));
873 StaticData.push_back(CGF.EmitCheckTypeDescriptor(Info.Ty));
1444 BinOp.Ty
2040 llvm::IntegerType *Ty = cast<llvm::IntegerType>(Zero->getType()); local
2483 llvm::IntegerType *Ty; local
[all...]
H A DCGObjC.cpp1395 bool CodeGenFunction::IvarTypeWithAggrGCObjects(QualType Ty) { argument
1398 if (const RecordType *FDTTy = Ty.getTypePtr()->getAs<RecordType>())
2853 /// static void copyHelper(Ty *dest, const Ty *source) { *dest = *source; }
2861 QualType Ty = PID->getPropertyIvarDecl()->getType();
2862 if (!Ty->isRecordType())
2871 if ((HelperFn = CGM.getAtomicSetterHelperFnMap(Ty)))
2885 QualType DestTy = C.getPointerType(Ty);
2886 QualType SrcTy = Ty;
2933 CGM.setAtomicSetterHelperFnMap(Ty, HelperF
2944 QualType Ty = PD->getType(); local
3044 EmitBlockCopyAndAutorelease(llvm::Value *Block, QualType Ty) argument
[all...]
H A DCGObjCGNU.cpp194 llvm::GlobalVariable *MakeGlobal(llvm::StructType *Ty, argument
199 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
200 return new llvm::GlobalVariable(TheModule, Ty, false,
206 llvm::GlobalVariable *MakeGlobal(llvm::ArrayType *Ty, argument
211 llvm::Constant *C = llvm::ConstantArray::get(Ty, V);
212 return new llvm::GlobalVariable(TheModule, Ty, false,
217 llvm::GlobalVariable *MakeGlobalArray(llvm::Type *Ty, argument
222 llvm::ArrayType *ArrayTy = llvm::ArrayType::get(Ty, V.size());
276 llvm::Value* EnforceType(CGBuilderTy &B, llvm::Value *V, llvm::Type *Ty) { argument
277 if (V->getType() == Ty) retur
[all...]
H A DCGObjCMac.cpp2202 llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0)); local
2204 CGM.getDataLayout().getStructLayout(cast<llvm::StructType>(Ty));
3429 llvm::Type *Ty = Init->getType(); local
3431 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
4513 llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0)); local
4515 CGM.getDataLayout().getStructLayout(cast<llvm::StructType>(Ty));
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp2490 QualType Ty = Name.getCXXNameType(); local
2491 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2494 = Ty->getAs<InjectedClassNameType>())
H A DSemaDeclAttr.cpp65 QualType Ty; local
67 Ty = decl->getType();
69 Ty = decl->getType();
71 Ty = decl->getUnderlyingType();
75 if (Ty->isFunctionPointerType())
76 Ty = Ty->getAs<PointerType>()->getPointeeType();
77 else if (blocksToo && Ty->isBlockPointerType())
78 Ty = Ty
107 QualType Ty = V->getType(); local
375 checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr, QualType Ty) argument
2564 QualType Ty = V->getType(); local
2921 QualType Ty = S.Context.getPointerType(VD->getType()); local
2927 Attr.getParameterName() << ParamTy << Ty; local
3171 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx); local
3467 QualType Ty; local
[all...]
H A DSemaExprCXX.cpp616 QualType Ty = E->getType(); local
618 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
619 Ty = Ptr->getPointeeType();
622 if (!isPointer || !Ty->isVoidType()) {
623 if (RequireCompleteType(ThrowLoc, Ty,
663 const RecordType *RecordTy = Ty->getAs<RecordType>();
686 PDiag(diag::err_access_dtor_exception) << Ty);
829 QualType Ty = GetTypeFromParser(TypeRep, &TInfo); local
831 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
845 QualType Ty local
2404 BuildCXXCastArgument(Sema &S, SourceLocation CastLoc, QualType Ty, CastKind Kind, CXXMethodDecl *Method, DeclAccessPair FoundDecl, bool HadMultipleCandidates, Expr *From) argument
2947 ActOnUnaryTypeTrait(UnaryTypeTrait UTT, SourceLocation KWLoc, ParsedType Ty, SourceLocation RParen) argument
3813 ActOnArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, ParsedType Ty, Expr* DimExpr, SourceLocation RParen) argument
[all...]
H A DSemaExprObjC.cpp88 QualType Ty = Context.getObjCConstantStringInterface();
89 if (!Ty.isNull()) {
90 Ty = Context.getObjCObjectPointerType(Ty);
104 Ty = Context.getObjCConstantStringInterface();
105 Ty = Context.getObjCObjectPointerType(Ty);
111 Ty = Context.getObjCIdType();
119 Ty = Context.getObjCConstantStringInterface();
120 Ty
720 QualType Ty local
903 QualType Ty local
1017 QualType Ty = Context.getObjCSelType(); local
1033 QualType Ty = Context.getObjCProtoType(); local
[all...]
H A DSemaInit.cpp133 static void updateStringLiteralType(Expr *E, QualType Ty) { argument
135 E->setType(Ty);
2754 void InitializationSequence::AddQualificationConversionStep(QualType Ty, argument
2769 S.Type = Ty;
2773 void InitializationSequence::AddLValueToRValueStep(QualType Ty) { argument
2774 assert(!Ty.hasQualifiers() && "rvalues may not have qualifiers");
2778 S.Type = Ty;
5869 QualType Ty = Step->Type; local
5870 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty);
5871 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
6019 QualType Ty = Step->Type; local
[all...]
H A DSemaLookup.cpp2043 addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) { argument
2056 const Type *T = Ty->getCanonicalTypeInternal().getTypePtr();
H A DSemaType.cpp1231 T = BuildAtomicType(QualType(Split.Ty, 0),
1812 QualType Sema::GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo) { argument
1813 QualType QT = Ty.get();
2925 DynamicExceptions.push_back(FTI.Exceptions[I].Ty);
4145 const Type *Ty = T.getTypePtr(); local
4146 if (isa<FunctionType>(Ty)) {
4147 Fn = cast<FunctionType>(Ty);
4149 } else if (isa<ParenType>(Ty)) {
4150 T = cast<ParenType>(Ty)->getInnerType();
4152 } else if (isa<PointerType>(Ty)) {
4606 isPermittedNeonBaseType(QualType &Ty, VectorType::VectorKind VecKind, bool IsAArch64) argument
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c170 CAMLprim value llvm_classify_type(LLVMTypeRef Ty) { argument
171 return Val_int(LLVMGetTypeKind(Ty));
174 CAMLprim value llvm_type_is_sized(LLVMTypeRef Ty) { argument
175 return Val_bool(LLVMTypeIsSized(Ty));
179 CAMLprim LLVMContextRef llvm_type_context(LLVMTypeRef Ty) { argument
180 return LLVMGetTypeContext(Ty);
300 CAMLprim value llvm_struct_set_body(LLVMTypeRef Ty, argument
303 LLVMStructSetBody(Ty, (LLVMTypeRef *) ElementTypes,
309 CAMLprim value llvm_struct_name(LLVMTypeRef Ty) argument
312 const char *C = LLVMGetStructName(Ty);
392 LLVMTypeRef Ty = LLVMGetTypeByName(M, String_val(Name)); local
675 llvm_const_named_struct(LLVMTypeRef Ty, value ElementVals) argument
758 llvm_const_inline_asm(LLVMTypeRef Ty, value Asm, value Constraints, value HasSideEffects, value IsAlignStack) argument
870 llvm_declare_qualified_global(LLVMTypeRef Ty, value Name, value AddressSpace, LLVMModuleRef M) argument
961 llvm_add_alias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, value Name) argument
996 llvm_define_function(value Name, LLVMTypeRef Ty, LLVMModuleRef M) argument
1395 llvm_build_malloc(LLVMTypeRef Ty, value Name, value B) argument
1402 llvm_build_array_malloc(LLVMTypeRef Ty, LLVMValueRef Val, value Name, value B) argument
1456 llvm_build_landingpad(LLVMTypeRef Ty, LLVMValueRef PersFn, value NumClauses, value Name, value B) argument
1674 llvm_build_alloca(LLVMTypeRef Ty, value Name, value B) argument
1680 llvm_build_array_alloca(LLVMTypeRef Ty, LLVMValueRef Size, value Name, value B) argument
1738 llvm_build_trunc(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1744 llvm_build_zext(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1750 llvm_build_sext(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1756 llvm_build_fptoui(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1762 llvm_build_fptosi(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1768 llvm_build_uitofp(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1774 llvm_build_sitofp(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1780 llvm_build_fptrunc(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1786 llvm_build_fpext(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1792 llvm_build_prttoint(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1798 llvm_build_inttoptr(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1804 llvm_build_bitcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1810 llvm_build_zext_or_bitcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1816 llvm_build_sext_or_bitcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1822 llvm_build_trunc_or_bitcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1829 llvm_build_pointercast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1835 llvm_build_intcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1841 llvm_build_fpcast(LLVMValueRef X, LLVMTypeRef Ty, value Name, value B) argument
1902 llvm_build_va_arg(LLVMValueRef List, LLVMTypeRef Ty, value Name, value B) argument
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp77 SDValue MipsTargetLowering::getGlobalReg(SelectionDAG &DAG, EVT Ty) const {
79 return DAG.getRegister(FI->getGlobalBaseReg(), Ty);
83 EVT Ty = Op.getValueType(); local
86 return DAG.getTargetGlobalAddress(N->getGlobal(), SDLoc(Op), Ty, 0,
89 return DAG.getTargetExternalSymbol(N->getSymbol(), Ty, Flag);
91 return DAG.getTargetBlockAddress(N->getBlockAddress(), Ty, 0, Flag);
93 return DAG.getTargetJumpTable(N->getIndex(), Ty, Flag);
95 return DAG.getTargetConstantPool(N->getConstVal(), Ty, N->getAlignment(),
104 EVT Ty = Op.getValueType(); local
107 return DAG.getNode(ISD::ADD, DL, Ty,
115 EVT Ty = Op.getValueType(); local
130 EVT Ty = Op.getValueType(); local
141 EVT Ty = Op.getValueType(); local
1466 EVT Ty = Op.getOperand(0).getValueType(); local
1859 EVT Ty = IsN64 ? MVT::i64 : MVT::i32; local
2282 EVT Ty = IsN64 ? MVT::i64 : MVT::i32; local
3107 originalTypeIsF128(const Type *Ty, const SDNode *CallNode) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4368 Type *Ty = F.getType(); local
4369 if (!Ty)
4371 Ty = OpTy;
4372 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4374 Ty = OpTy;
4376 Type *IntTy = SE.getEffectiveSCEVType(Ty);
4420 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4435 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4445 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4481 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, I
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3619 Type *Ty = I->second; local
3622 HasIllegalType = HasIllegalType || !TTI.isTypeLegal(Ty);
3626 SwitchLookupTable::WouldFitInRegister(TD, TableSize, Ty);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1003 VectorType *Ty = cast<VectorType>(Val->getType()); local
1004 int VLen = Ty->getNumElements();
2658 static Type *convertPointerToIntegerType(DataLayout &DL, Type *Ty) { argument
2659 if (Ty->isPointerTy())
2660 return DL.getIntPtrType(Ty->getContext());
2661 return Ty;
3240 const Type *Ty = Ptr->getType(); local
3241 assert(Ty->isPointerTy() && "Unexpected non ptr");
3244 const PointerType *PtrTy = cast<PointerType>(Ty);
/external/clang/include/clang/AST/
H A DExpr.h1397 ImaginaryLiteral(Expr *val, QualType Ty) argument
1398 : Expr(ImaginaryLiteralClass, Ty, VK_RValue, OK_Ordinary, false, false,
1462 StringLiteral(QualType Ty) : argument
1463 Expr(StringLiteralClass, Ty, VK_LValue, OK_Ordinary, false, false, false,
1472 bool Pascal, QualType Ty,
1477 bool Pascal, QualType Ty,
1479 return Create(C, Str, Kind, Pascal, Ty, &Loc, 1);
1943 TypeSourceInfo *Ty;
1961 Argument.Ty = TInfo;
1994 return Argument.Ty;
1476 Create(ASTContext &C, StringRef Str, StringKind Kind, bool Pascal, QualType Ty, SourceLocation Loc) argument
3556 GNUNullExpr(QualType Ty, SourceLocation Loc) argument
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h941 /// \param Ty the type to which this conversion function is converting.
945 ParsedType Ty,
950 ConversionFunctionId = Ty;
1118 ParsedType Ty; member in struct:clang::DeclaratorChunk::TypeAndRange
944 setConversionFunctionId(SourceLocation OperatorLoc, ParsedType Ty, SourceLocation EndLoc) argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp498 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, argument
500 TypeSourceInfo *TInfo = Ctx->getTrivialTypeSourceInfo(Ty, SourceLocation());
501 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, 0, TInfo,
4296 QualType Ty = ND->getType(); local
4297 bool HasCopyAndDispose = Context->BlockRequiresCopying(Ty, ND);
4303 QualType T = Ty;
4318 if (Ty.isObjCGCWeak()) {
4325 QualType Ty = ND->getType(); local
4327 if (Ty->isBlockPointerType())
4367 if (Ty
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp863 Type *Ty = VT == MVT::iPTR ? local
867 return TM.getTargetLowering()->getDataLayout()->getABITypeAlignment(Ty);
1530 Type *Ty = VT.getTypeForEVT(*getContext()); local
1533 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign);
3645 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); local
3646 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
3756 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); local
3757 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
3832 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); local
3833 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
[all...]
H A DSelectionDAGBuilder.cpp615 unsigned Reg, Type *Ty) {
616 ComputeValueVTs(tli, Ty, ValueVTs);
2641 Type *Ty = I.getType(); local
2643 I.getOperand(0) == ConstantFP::getZeroValueForNegation(Ty)) {
3157 Type *Ty = I.getOperand(0)->getType()->getScalarType(); local
3162 if (StructType *StTy = dyn_cast<StructType>(Ty)) {
3171 Ty = StTy->getElementType(Field);
3173 Ty = cast<SequentialType>(Ty)->getElementType();
3180 TD->getTypeAllocSize(Ty)*cas
614 RegsForValue(LLVMContext &Context, const TargetLowering &tli, unsigned Reg, Type *Ty) argument
3288 Type *Ty = I.getType(); local
4984 EVT Ty = Arg.getValueType(); local
4992 EVT Ty = Arg.getValueType(); local
4999 EVT Ty = Arg.getValueType(); local
5045 EVT Ty = Arg.getValueType(); local
6017 Type *Ty = OpVal->getType(); local
6479 PointerType *Ty = cast<PointerType>(Args[i].Ty); local
6698 PointerType *Ty = cast<PointerType>(I->getType()); local
[all...]
/external/llvm/lib/IR/
H A DCore.cpp166 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) { argument
167 switch (unwrap(Ty)->getTypeID()) {
204 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty) argument
206 return unwrap(Ty)->isSized();
209 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) { argument
210 return wrap(&unwrap(Ty)->getContext());
325 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); local
326 for (FunctionType::param_iterator I = Ty->param_begin(),
327 E = Ty->param_end(); I != E; ++I)
350 const char *LLVMGetStructName(LLVMTypeRef Ty) argument
369 StructType *Ty = unwrap<StructType>(StructTy); local
401 LLVMGetElementType(LLVMTypeRef Ty) argument
523 LLVMConstNull(LLVMTypeRef Ty) argument
527 LLVMConstAllOnes(LLVMTypeRef Ty) argument
531 LLVMGetUndef(LLVMTypeRef Ty) argument
535 LLVMIsConstant(LLVMValueRef Ty) argument
549 LLVMConstPointerNull(LLVMTypeRef Ty) argument
635 IntegerType *Ty = unwrap<IntegerType>(IntTy); local
712 StructType *Ty = cast<StructType>(unwrap(StructTy)); local
750 LLVMAlignOf(LLVMTypeRef Ty) argument
754 LLVMSizeOf(LLVMTypeRef Ty) argument
1081 LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString, const char *Constraints, LLVMBool HasSideEffects, LLVMBool IsAlignStack) argument
1229 LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) argument
1234 LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name, unsigned AddressSpace) argument
1359 LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, const char *Name) argument
1925 LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef PersFn, unsigned NumClauses, const char *Name) argument
2117 LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) argument
2128 LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Val, const char *Name) argument
2139 LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) argument
2144 LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Val, const char *Name) argument
2328 LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) argument
2347 LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List, LLVMTypeRef Ty, const char *Name) argument
[all...]

Completed in 689 milliseconds

12345678910