Searched refs:isBitCastable (Results 1 – 9 of 9) sorted by relevance
/external/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 218 EXPECT_FALSE(CastInst::isBitCastable(V8x8Ty, X86MMXTy)); in TEST() 219 EXPECT_FALSE(CastInst::isBitCastable(X86MMXTy, V8x8Ty)); in TEST() 220 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, X86MMXTy)); in TEST() 221 EXPECT_FALSE(CastInst::isBitCastable(V8x64Ty, V8x8Ty)); in TEST() 222 EXPECT_FALSE(CastInst::isBitCastable(V8x8Ty, V8x64Ty)); in TEST() 225 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrTy, Int32PtrAS1Ty)); in TEST() 226 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrAS1Ty, Int32PtrTy)); in TEST() 227 EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, V2Int32PtrAS1Ty)); in TEST() 228 EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int32PtrTy)); in TEST() 229 EXPECT_TRUE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int64PtrAS1Ty)); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 230 EXPECT_FALSE(CastInst::isBitCastable(V8x8Ty, X86MMXTy)); in TEST() 231 EXPECT_FALSE(CastInst::isBitCastable(X86MMXTy, V8x8Ty)); in TEST() 232 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, X86MMXTy)); in TEST() 233 EXPECT_FALSE(CastInst::isBitCastable(V8x64Ty, V8x8Ty)); in TEST() 234 EXPECT_FALSE(CastInst::isBitCastable(V8x8Ty, V8x64Ty)); in TEST() 237 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrTy, Int32PtrAS1Ty)); in TEST() 238 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrAS1Ty, Int32PtrTy)); in TEST() 239 EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, V2Int32PtrAS1Ty)); in TEST() 240 EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int32PtrTy)); in TEST() 241 EXPECT_TRUE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int64PtrAS1Ty)); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | CallPromotionUtils.cpp | 329 if (!CastInst::isBitCastable(FuncRetTy, CallRetTy)) { in isLegalToPromote() 354 if (!CastInst::isBitCastable(ActualTy, FormalTy)) { in isLegalToPromote()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | IndirectCallPromotion.cpp | 226 !CastInst::isBitCastable(FuncRetType, CallRetType)) in isPromotionLegal()
|
/external/clang/lib/CodeGen/ |
D | CGAtomic.cpp | 1214 else if (llvm::CastInst::isBitCastable(IntVal->getType(), ValTy)) in ConvertIntToValueOrAtomic() 1399 else if (llvm::BitCastInst::isBitCastable(Value->getType(), InputIntTy)) in convertRValueToInt()
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 743 static bool isBitCastable(
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | InstrTypes.h | 769 static bool isBitCastable(
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instructions.cpp | 2736 bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) { in isBitCastable() function in CastInst 2788 return isBitCastable(SrcTy, DestTy); in isBitOrNoopPointerCastable()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2921 bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) { in isBitCastable() function in CastInst 2970 return isBitCastable(SrcTy, DestTy); in isBitOrNoopPointerCastable()
|