/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | BPF.cpp | 54 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 D | ABIInfoImpl.cpp | 37 ? Context.Int128Ty in classifyArgumentType() 59 ? getContext().Int128Ty in classifyReturnType()
|
H A D | CodeGenTBAA.cpp | 145 return getTypeInfo(Context.Int128Ty); in getTypeInfoHelper()
|
H A D | CGBuiltin.cpp | 411 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 D | ItaniumCXXABI.cpp | 4548 getContext().UnsignedLongLongTy, getContext().Int128Ty, in EmitFundamentalRTTIDescriptors()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.cpp | 45 Int16Ty(C, 16), Int32Ty(C, 32), Int64Ty(C, 64), Int128Ty(C, 128) {} in LLVMContextImpl()
|
H A D | Type.cpp | 256 IntegerType *Type::getInt128Ty(LLVMContext &C) { return &C.pImpl->Int128Ty; } in getInt128Ty()
|
H A D | LLVMContextImpl.h | 1586 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty, Int128Ty;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | BuiltinTypes.def | 122 SIGNED_TYPE(Int128, Int128Ty)
|
H A D | ASTContext.h | 1127 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 780 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 D | ASTContext.cpp | 1201 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 D | SemaType.cpp | 1122 Result = Context.Int128Ty; in ConvertDeclSpecToType() 9680 &S.Context.LongTy, &S.Context.LongLongTy, &S.Context.Int128Ty}; in ChangeIntegralSignedness()
|
H A D | SemaExpr.cpp | 12540 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 D | SemaOverload.cpp | 8824 ArithmeticTypes.push_back(S.Context.Int128Ty); in InitArithmeticTypes()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 7232 T = Context.Int128Ty; in GetType()
|