Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp5783 IntegerType *IntCastTy = in createAtomicRead() local
5786 Builder.CreateLoad(IntCastTy, X.Var, X.IsVolatile, "omp.atomic.load"); in createAtomicRead()
5818 IntegerType *IntCastTy = in createAtomicWrite() local
5821 Builder.CreateBitCast(Expr, IntCastTy, "atomic.src.int.cast"); in createAtomicWrite()
5925 IntegerType *IntCastTy = in emitAtomicUpdate() local
5928 Builder.CreateLoad(IntCastTy, X, X->getName() + ".atomic.load"); in emitAtomicUpdate()
5963 LoadInst *DesiredVal = Builder.CreateLoad(IntCastTy, NewAtomicAddr); in emitAtomicUpdate()
6057 IntegerType *IntCastTy = in createAtomicCompare() local
6059 Value *EBCast = Builder.CreateBitCast(E, IntCastTy); in createAtomicCompare()
6060 Value *DBCast = Builder.CreateBitCast(D, IntCastTy); in createAtomicCompare()