Home
last modified time | relevance | path

Searched refs:Int128Ty (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DBPF.cpp54 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyArgumentType()
74 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyReturnType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfoImpl.cpp37 ? Context.Int128Ty in classifyArgumentType()
59 ? getContext().Int128Ty in classifyReturnType()
H A DCodeGenTBAA.cpp145 return getTypeInfo(Context.Int128Ty); in getTypeInfoHelper()
H A DCGBuiltin.cpp411 llvm::Type *Int128Ty = llvm::IntegerType::get(CGF.getLLVMContext(), 128); in EmitAtomicCmpXchg128ForMSIntrin() local
412 Address DestAddr(DestPtr, Int128Ty, in EmitAtomicCmpXchg128ForMSIntrin()
414 ComparandAddr = ComparandAddr.withElementType(Int128Ty); in EmitAtomicCmpXchg128ForMSIntrin()
417 ExchangeHigh = CGF.Builder.CreateZExt(ExchangeHigh, Int128Ty); in EmitAtomicCmpXchg128ForMSIntrin()
418 ExchangeLow = CGF.Builder.CreateZExt(ExchangeLow, Int128Ty); in EmitAtomicCmpXchg128ForMSIntrin()
420 CGF.Builder.CreateShl(ExchangeHigh, llvm::ConstantInt::get(Int128Ty, 64)); in EmitAtomicCmpXchg128ForMSIntrin()
11132 llvm::Type *Int128Ty = llvm::IntegerType::get(getLLVMContext(), 128); in EmitAArch64BuiltinExpr() local
11133 Val0 = Builder.CreateZExt(Val0, Int128Ty); in EmitAArch64BuiltinExpr()
11134 Val1 = Builder.CreateZExt(Val1, Int128Ty); in EmitAArch64BuiltinExpr()
11136 Value *ShiftCst = llvm::ConstantInt::get(Int128Ty, 64); in EmitAArch64BuiltinExpr()
[all …]
H A DItaniumCXXABI.cpp4548 getContext().UnsignedLongLongTy, getContext().Int128Ty, in EmitFundamentalRTTIDescriptors()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.cpp45 Int16Ty(C, 16), Int32Ty(C, 32), Int64Ty(C, 64), Int128Ty(C, 128) {} in LLVMContextImpl()
H A DType.cpp256 IntegerType *Type::getInt128Ty(LLVMContext &C) { return &C.pImpl->Int128Ty; } in getInt128Ty()
H A DLLVMContextImpl.h1586 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty, Int128Ty;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def122 SIGNED_TYPE(Int128, Int128Ty)
H A DASTContext.h1127 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp780 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForEncodingAndBitSize()
781 return GetType(ast.Int128Ty); in GetBuiltinTypeForEncodingAndBitSize()
990 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
991 return GetType(ast.Int128Ty); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1005 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1006 return GetType(ast.Int128Ty); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2040 return ast->Int128Ty.getAsOpaquePtr(); in GetOpaqueCompilerType()
2351 if (bit_size == ast.getTypeSize(ast.Int128Ty)) in GetIntTypeFromBitSize()
2352 return GetType(ast.Int128Ty); in GetIntTypeFromBitSize()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp1201 Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t"); in getInt128Decl()
1294 InitBuiltinType(Int128Ty, BuiltinType::Int128); in InitBuiltinTypes()
7524 return 7 + (getIntWidth(Int128Ty) << 3); in getIntegerRank()
11607 return Int128Ty; in getCorrespondingSignedType()
11810 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty; in DecodeTypeFromStr()
12587 return Signed ? Int128Ty : UnsignedInt128Ty; in getIntTypeForBitwidth()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp1122 Result = Context.Int128Ty; in ConvertDeclSpecToType()
9680 &S.Context.LongTy, &S.Context.LongLongTy, &S.Context.Int128Ty}; in ChangeIntegralSignedness()
H A DSemaExpr.cpp12540 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) in GetSignedVectorType()
12541 return Context.getExtVectorType(Context.Int128Ty, VTy->getNumElements()); in GetSignedVectorType()
12549 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) in GetSignedVectorType()
12550 return Context.getVectorType(Context.Int128Ty, VTy->getNumElements(), in GetSignedVectorType()
H A DSemaOverload.cpp8824 ArithmeticTypes.push_back(S.Context.Int128Ty); in InitArithmeticTypes()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp7232 T = Context.Int128Ty; in GetType()