Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_handlers.cc466 bool DstSigned = DstTy.isSignedIntegerTy(); in handleImplicitConversion() local
473 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
506 << DstTy.getIntegerBitWidth() << (DstSigned ? "" : "un"); in handleImplicitConversion()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_handlers.cc462 bool DstSigned = DstTy.isSignedIntegerTy(); in handleImplicitConversion() local
469 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
496 << DstTy.getIntegerBitWidth() << (DstSigned ? "" : "un"); in handleImplicitConversion()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_handlers.cpp564 bool DstSigned = DstTy.isSignedIntegerTy(); in handleImplicitConversion() local
571 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
604 << DstTy.getIntegerBitWidth() << (DstSigned ? "" : "un"); in handleImplicitConversion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp979 bool DstSigned = DstType->isSignedIntegerOrEnumerationType(); in EmitIntegerTruncationCheckHelper() local
985 if (!SrcSigned && !DstSigned) { in EmitIntegerTruncationCheckHelper()
995 Check = Builder.CreateIntCast(Dst, SrcTy, DstSigned, "anyext"); in EmitIntegerTruncationCheckHelper()
1031 bool DstSigned = DstType->isSignedIntegerOrEnumerationType(); in EmitIntegerTruncationCheck() local
1033 (!SrcSigned && DstSigned)) in EmitIntegerTruncationCheck()
1069 bool DstSigned = DstType->isSignedIntegerOrEnumerationType(); in EmitIntegerSignChangeCheckHelper() local
1071 (void)DstSigned; // Only used in assert() in EmitIntegerSignChangeCheckHelper()
1077 assert(((SrcBits != DstBits) || (SrcSigned != DstSigned)) && in EmitIntegerSignChangeCheckHelper()
1132 bool DstSigned = DstType->isSignedIntegerOrEnumerationType(); in EmitIntegerSignChangeCheck() local
1141 if (SrcSigned == DstSigned && SrcBits == DstBits) in EmitIntegerSignChangeCheck()
[all …]