Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/IR/
H A DLLVMContextImpl.cpp49 Int16Ty(C, 16), Int32Ty(C, 32), Int64Ty(C, 64), Int128Ty(C, 128) { in LLVMContextImpl()
H A DType.cpp241 IntegerType *Type::getInt128Ty(LLVMContext &C) { return &C.pImpl->Int128Ty; } in getInt128Ty()
H A DLLVMContextImpl.h1467 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty, Int128Ty;
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp142 return getTypeInfo(Context.Int128Ty); in getTypeInfoHelper()
H A DCGBuiltin.cpp375 llvm::Type *Int128PtrTy = Int128Ty->getPointerTo(); in EmitAtomicCmpXchg128ForMSIntrin()
381 ExchangeHigh = CGF.Builder.CreateZExt(ExchangeHigh, Int128Ty); in EmitAtomicCmpXchg128ForMSIntrin()
382 ExchangeLow = CGF.Builder.CreateZExt(ExchangeLow, Int128Ty); in EmitAtomicCmpXchg128ForMSIntrin()
9629 Val0 = Builder.CreateZExt(Val0, Int128Ty); in EmitAArch64BuiltinExpr()
9630 Val1 = Builder.CreateZExt(Val1, Int128Ty); in EmitAArch64BuiltinExpr()
9632 Value *ShiftCst = llvm::ConstantInt::get(Int128Ty, 64); in EmitAArch64BuiltinExpr()
10105 return Builder.CreateBitCast(Ops[0], Int128Ty); in EmitAArch64BuiltinExpr()
10109 llvm::Type *Int128PTy = llvm::PointerType::get(Int128Ty, 0); in EmitAArch64BuiltinExpr()
10111 return Builder.CreateAlignedLoad(Int128Ty, Ptr, in EmitAArch64BuiltinExpr()
14976 Value *LHS = Builder.CreateIntCast(Ops[0], Int128Ty, IsSigned); in EmitX86BuiltinExpr()
[all …]
H A DItaniumCXXABI.cpp4171 getContext().UnsignedLongLongTy, getContext().Int128Ty, in EmitFundamentalRTTIDescriptors()
H A DTargetInfo.cpp781 ? Context.Int128Ty in classifyArgumentType()
803 ? getContext().Int128Ty in classifyReturnType()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DConstantsTest.cpp122 IntegerType *Int128Ty = Type::getIntNTy(Context, 128); in TEST() local
123 Constant *Zero128 = Constant::getNullValue(Int128Ty); in TEST()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DBuiltinTypes.def122 SIGNED_TYPE(Int128, Int128Ty)
H A DASTContext.h1115 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp830 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForEncodingAndBitSize()
831 return GetType(ast.Int128Ty); in GetBuiltinTypeForEncodingAndBitSize()
1045 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1046 return GetType(ast.Int128Ty); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1060 if (QualTypeMatchesBitSize(bit_size, ast, ast.Int128Ty)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1061 return GetType(ast.Int128Ty); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2048 return ast->Int128Ty.getAsOpaquePtr(); in GetOpaqueCompilerType()
2358 if (bit_size == ast.getTypeSize(ast.Int128Ty)) in GetIntTypeFromBitSize()
2359 return GetType(ast.Int128Ty); in GetIntTypeFromBitSize()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp75 context.Int128Ty)); in TEST_F()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp1263 Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t"); in getInt128Decl()
1357 InitBuiltinType(Int128Ty, BuiltinType::Int128); in InitBuiltinTypes()
6978 return 7 + (getIntWidth(Int128Ty) << 3); in getIntegerRank()
10879 return Int128Ty; in getCorrespondingSignedType()
11079 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty; in DecodeTypeFromStr()
11818 return Signed ? Int128Ty : UnsignedInt128Ty; in getIntTypeForBitwidth()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp12838 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) in GetSignedVectorType()
12839 return Context.getExtVectorType(Context.Int128Ty, VTy->getNumElements()); in GetSignedVectorType()
12847 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) in GetSignedVectorType()
12848 return Context.getVectorType(Context.Int128Ty, VTy->getNumElements(), in GetSignedVectorType()
H A DSemaType.cpp1494 Result = Context.Int128Ty; in ConvertDeclSpecToType()
H A DSemaOverload.cpp8316 ArithmeticTypes.push_back(S.Context.Int128Ty); in InitArithmeticTypes()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp6943 T = Context.Int128Ty; in GetType()