Searched refs:Ty (Results 26 - 50 of 295) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/
H A DConstant.h138 static Constant *getNullValue(Type* Ty);
143 static Constant *getAllOnesValue(Type* Ty);
147 static Constant *getIntegerValue(Type* Ty, const APInt &V);
H A DConstants.h54 ConstantInt(IntegerType *Ty, const APInt& V);
64 static Constant *getTrue(Type *Ty);
65 static Constant *getFalse(Type *Ty);
67 /// If Ty is a vector type, return a Constant with a splat of the given
69 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false);
77 static ConstantInt *get(IntegerType *Ty, uint64_t V,
83 /// signed value for the type Ty.
85 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
86 static Constant *getSigned(Type *Ty, int64_t V);
94 static ConstantInt *get(IntegerType *Ty, StringRe
[all...]
H A DInstrTypes.h37 TerminatorInst(Type *Ty, Instruction::TermOps iType, argument
40 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {}
42 TerminatorInst(Type *Ty, Instruction::TermOps iType, argument
44 : Instruction(Ty, iType, Ops, NumOps, InsertAtEnd) {}
94 UnaryInstruction(Type *Ty, unsigned iType, Value *V, argument
96 : Instruction(Ty, iType, &Op<0>(), 1, IB) {
99 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) argument
100 : Instruction(Ty, iType, &Op<0>(), 1, IAE) {
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
146 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
394 CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr = Ó, Instruction *InsertBefore = 0) argument
400 CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/unittests/VMCore/
H A DVerifierTest.cpp50 Type *Ty = Type::getInt8Ty(C); local
51 Constant *Init = Constant::getNullValue(Ty);
52 GlobalVariable *Aliasee = new GlobalVariable(M, Ty, true,
/external/llvm/lib/VMCore/
H A DInstructions.cpp812 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, argument
814 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
815 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
817 assert(!Ty->isVoidTy() && "Cannot allocate void!");
821 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, argument
823 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
824 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
826 assert(!Ty->isVoidTy() && "Cannot allocate void!");
830 AllocaInst::AllocaInst(Type *Ty, const Twine &Name, argument
832 : UnaryInstruction(PointerType::getUnqual(Ty), Alloc
839 AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
848 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, Instruction *InsertBefore) argument
857 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, BasicBlock *InsertAtEnd) argument
1385 Type *Ty = Ptr->getType(); local
1725 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
1738 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2277 Create(Instruction::CastOps op, Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2298 Create(Instruction::CastOps op, Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2319 CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2327 CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2335 CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2343 CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2351 CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2359 CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2367 CreatePointerCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2380 CreatePointerCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2392 CreateIntegerCast(Value *C, Type *Ty, bool isSigned, const Twine &Name, Instruction *InsertBefore) argument
2406 CreateIntegerCast(Value *C, Type *Ty, bool isSigned, const Twine &Name, BasicBlock *InsertAtEnd) argument
2420 CreateFPCast(Value *C, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2433 CreateFPCast(Value *C, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2692 TruncInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2698 TruncInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2704 ZExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2710 ZExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2715 SExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2721 SExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2727 FPTruncInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2733 FPTruncInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2739 FPExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2745 FPExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2751 UIToFPInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2757 UIToFPInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2763 SIToFPInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2769 SIToFPInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2775 FPToUIInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2781 FPToUIInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2787 FPToSIInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2793 FPToSIInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2799 PtrToIntInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2805 PtrToIntInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2811 IntToPtrInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2817 IntToPtrInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2823 BitCastInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2829 BitCastInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
[all...]
H A DInlineAsm.cpp28 InlineAsm *InlineAsm::get(FunctionType *Ty, StringRef AsmString, argument
33 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
34 return pImpl->InlineAsms.getOrCreate(PointerType::getUnqual(Ty), Key);
37 InlineAsm::InlineAsm(PointerType *Ty, const std::string &asmString, argument
40 : Value(Ty, Value::InlineAsmVal),
246 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) { argument
247 if (Ty->isVarArg()) return false;
280 if (!Ty->getReturnType()->isVoidTy()) return false;
283 if (Ty->getReturnType()->isStructTy()) return false;
286 StructType *STy = dyn_cast<StructType>(Ty
[all...]
H A DGlobals.cpp83 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, argument
86 : GlobalValue(PointerType::get(Ty, AddressSpace),
92 assert(InitVal->getType() == Ty &&
100 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant, argument
105 : GlobalValue(PointerType::get(Ty, AddressSpace),
111 assert(InitVal->getType() == Ty &&
189 GlobalAlias::GlobalAlias(Type *Ty, LinkageTypes Link, argument
192 : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) {
196 assert(aliasee->getType() == Ty && "Alias and aliasee types should match!");
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp481 Type *Ty = cast<PointerType>(CE->getType())->getElementType(); local
482 unsigned NumBits = Ty->getPrimitiveSizeInBits();
486 (isa<IntegerType>(Ty) || Ty->isFloatingPointTy())) {
505 if (Ty->isFloatingPointTy())
506 Res = ConstantExpr::getBitCast(Res, Ty);
703 Type *Ty = Ptr->getType(); local
704 assert(Ty->isPointerTy() && "Forming regular GEP of non-pointer type");
707 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
720 IntegerType *IntPtrTy = TD->getIntPtrType(Ty
1155 ConstantFoldFP(double (*NativeFP)(double), double V, Type *Ty) argument
1171 ConstantFoldBinaryFP(double (*NativeFP)(double, double), double V, double W, Type *Ty) argument
1195 ConstantFoldConvertToInt(const APFloat &Val, bool roundTowardZero, Type *Ty) argument
1222 Type *Ty = F->getReturnType(); local
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp47 llvm::FunctionType *Ty = local
50 return GetOrCreateLLVMFunction(Name, Ty, D, /*ForVTable=*/false);
377 Value *Ty = EmitScalarExpr(E->getArg(1)); local
378 ConstantInt *CI = dyn_cast<ConstantInt>(Ty);
513 llvm::Type *Ty = ConvertType(E->getArg(5)->getType()); local
525 Value *IsZero = Builder.CreateFCmpOEQ(V, Constant::getNullValue(Ty),
715 llvm::IntegerType *Ty local
720 return RValue::get(llvm::UndefValue::get(Ty));
722 return RValue::get(llvm::ConstantInt::get(Ty, Column, true));
1464 Value *CodeGenFunction::EmitNeonShiftVector(Value *V, llvm::Type *Ty, argument
1537 llvm::Type *Ty = CGM.getTypes().ConvertType(FD->getType()); local
1681 llvm::Type *Ty; local
1703 llvm::Type *Ty = VTy; local
[all...]
H A DCGDebugInfo.cpp108 llvm::DIType Ty = getOrCreateType(CGM.getContext().getTypeDeclType(RDecl), local
110 return llvm::DIDescriptor(Ty);
447 llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) { argument
450 if (Ty->isComplexIntegerType())
453 uint64_t Size = CGM.getContext().getTypeSize(Ty);
454 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
463 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) { argument
465 const Type *T = Qc.strip(Ty);
498 llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty, argument
501 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
506 CreateType(const PointerType *Ty, llvm::DIFile Unit) argument
557 llvm::DIType Ty = getOrCreateLimitedType(CGM.getContext().getTypeDeclType(RD), local
595 CreatePointerLikeType(unsigned Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile Unit) argument
615 CreateType(const BlockPointerType *Ty, llvm::DIFile Unit) argument
678 CreateType(const TypedefType *Ty, llvm::DIFile Unit) argument
696 CreateType(const FunctionType *Ty, llvm::DIFile Unit) argument
1217 CreateType(const RecordType *Ty) argument
1289 CreateType(const ObjCObjectType *Ty, llvm::DIFile Unit) argument
1296 CreateType(const ObjCInterfaceType *Ty, llvm::DIFile Unit) argument
1456 CreateType(const VectorType *Ty, llvm::DIFile Unit) argument
1477 CreateType(const ArrayType *Ty, llvm::DIFile Unit) argument
1532 CreateType(const LValueReferenceType *Ty, llvm::DIFile Unit) argument
1538 CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit) argument
1544 CreateType(const MemberPointerType *Ty, llvm::DIFile U) argument
1580 CreateType(const AtomicType *Ty, llvm::DIFile U) argument
1673 getTypeOrNull(QualType Ty) argument
1692 getCompletedTypeOrNull(QualType Ty) argument
1712 getOrCreateType(QualType Ty, llvm::DIFile Unit) argument
1742 CreateTypeNode(QualType Ty, llvm::DIFile Unit) argument
1823 getOrCreateLimitedType(QualType Ty, llvm::DIFile Unit) argument
1851 CreateLimitedType(const RecordType *Ty) argument
1921 CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) argument
1946 llvm::DIType Ty = DBuilder.createMemberType(Unit, Name, Unit, 0, local
2265 llvm::DIType Ty; local
2412 llvm::DIType Ty; local
2689 llvm::DIType Ty = getOrCreateType(VD->getType(), Unit); local
2725 llvm::DIType Ty, RepTy; local
[all...]
H A DCGCXX.cpp294 llvm::Value *This, llvm::Type *Ty) {
295 Ty = Ty->getPointerTo()->getPointerTo();
297 llvm::Value *VTable = CGF.GetVTablePtr(This, Ty);
305 llvm::Type *Ty) {
309 return ::BuildVirtualCall(*this, VTableIndex, This, Ty);
318 llvm::Type *Ty) {
333 Ty = Ty->getPointerTo()->getPointerTo();
334 VTable = Builder.CreateBitCast(VTable, Ty);
293 BuildVirtualCall(CodeGenFunction &CGF, uint64_t VTableIndex, llvm::Value *This, llvm::Type *Ty) argument
304 BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This, llvm::Type *Ty) argument
316 BuildAppleKextVirtualCall(const CXXMethodDecl *MD, NestedNameSpecifier *Qual, llvm::Type *Ty) argument
364 llvm::Type *Ty = CGM.getTypes().GetFunctionType(FInfo); local
384 BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type, llvm::Value *This, llvm::Type *Ty) argument
[all...]
H A DCodeGenTypes.h137 bool isFuncTypeArgumentConvertible(QualType Ty);
193 const FunctionType *Ty);
203 const CGFunctionInfo &arrangeFreeFunctionType(CanQual<FunctionProtoType> Ty);
204 const CGFunctionInfo &arrangeFreeFunctionType(CanQual<FunctionNoProtoType> Ty);
221 llvm::StructType *Ty);
225 void addRecordTypeName(const RecordDecl *RD, llvm::StructType *Ty,
233 /// GetExpandedTypes - Expand the type \arg Ty into the LLVM
247 bool isRecordLayoutComplete(const Type *Ty) const;
251 bool isRecordBeingLaidOut(const Type *Ty) const {
252 return RecordsBeingLaidOut.count(Ty);
[all...]
H A DTargetInfo.h115 llvm::Type* Ty) const {
116 return Ty;
/external/llvm/lib/Transforms/Scalar/
H A DGlobalMerge.cpp140 Type *Ty = Globals[j]->getType()->getElementType(); local
141 MergedSize += TD->getTypeAllocSize(Ty);
145 Tys.push_back(Ty);
186 Type *Ty = I->getType()->getElementType(); local
187 if (Alignment > TD->getABITypeAlignment(Ty))
195 if (TD->getTypeAllocSize(Ty) < MaxOffset) {
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp59 bool cocoa::isCocoaObjectRef(QualType Ty) { argument
60 if (!Ty->isObjCObjectPointerType())
63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c90 CAMLprim value llvm_genericvalue_of_float(LLVMTypeRef Ty, value N) { argument
93 LLVMCreateGenericValueOfFloat(Ty, Double_val(N))));
103 CAMLprim value llvm_genericvalue_of_int(LLVMTypeRef Ty, value Int) { argument
104 return alloc_generic_value(LLVMCreateGenericValueOfInt(Ty, Int_val(Int), 1));
108 CAMLprim value llvm_genericvalue_of_int32(LLVMTypeRef Ty, value Int32) { argument
111 LLVMCreateGenericValueOfInt(Ty, Int32_val(Int32), 1)));
115 CAMLprim value llvm_genericvalue_of_nativeint(LLVMTypeRef Ty, value NatInt) { argument
118 LLVMCreateGenericValueOfInt(Ty, Nativeint_val(NatInt), 1)));
122 CAMLprim value llvm_genericvalue_of_int64(LLVMTypeRef Ty, value Int64) { argument
125 LLVMCreateGenericValueOfInt(Ty, Int64_va
129 llvm_genericvalue_as_float(LLVMTypeRef Ty, value GenVal) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h38 Type *Ty; member in class:llvm::MachineConstantPoolValue
41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {}
46 Type *getType() const { return Ty; }
H A DMachineFunction.h217 template<typename Ty>
218 Ty *getInfo() {
220 // This should be just `new (Allocator.Allocate<Ty>()) Ty(*this)', but
222 Ty *Loc = static_cast<Ty*>(Allocator.Allocate(sizeof(Ty),
223 AlignOf<Ty>::Alignment));
224 MFInfo = new (Loc) Ty(*this);
226 return static_cast<Ty*>(MFInf
[all...]
/external/llvm/include/llvm/Analysis/
H A DFindUsedTypes.h48 void IncorporateType(Type *Ty);
/external/clang/lib/AST/
H A DASTDiagnostic.cpp32 const Type *Ty = QC.strip(QT); local
35 if (const ElaboratedType *ET = dyn_cast<ElaboratedType>(Ty)) {
40 if (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
46 dyn_cast<SubstTemplateTypeParmType>(Ty)) {
51 if (const AttributedType *AT = dyn_cast<AttributedType>(Ty)) {
56 if (const AutoType *AT = dyn_cast<AutoType>(Ty)) {
65 = dyn_cast<TemplateSpecializationType>(Ty))
70 if (QualType(Ty,0) == Context.getObjCIdType() ||
71 QualType(Ty,0) == Context.getObjCClassType() ||
72 QualType(Ty,
158 ConvertTypeToDiagnosticString(ASTContext &Context, QualType Ty, const DiagnosticsEngine::ArgumentValue *PrevArgs, unsigned NumPrevArgs, ArrayRef<intptr_t> QualTypeVals) argument
724 GetTemplateSpecializationType( ASTContext &Context, QualType Ty) 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/Bitcode/Reader/
H A DBitcodeReader.h79 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
80 Value *getValueFwdRef(unsigned Idx, Type *Ty);
228 Value *getFnValueByID(unsigned ID, Type *Ty) {
229 if (Ty && Ty->isMetadataTy())
231 return ValueList.getValueFwdRef(ID, Ty);
264 Type *Ty, Value *&ResVal) {
267 ResVal = getFnValueByID(ValNo, Ty);
/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp75 Type *Ty = GV->getType()->getElementType(); local
76 return IsInSmallSection(TM.getTargetData()->getTypeAllocSize(Ty));
/external/llvm/lib/Target/MBlaze/
H A DMBlazeTargetObjectFile.cpp72 Type *Ty = GV->getType()->getElementType();
73 return IsInSmallSection(TM.getTargetData()->getTypeAllocSize(Ty));
/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp26 StructType *Ty = StructType::get( local
30 Ty, IRB.getInt32(Priority), F, NULL);

Completed in 417 milliseconds

1234567891011>>