Searched refs:VSize (Results 1 – 8 of 8) sorted by relevance
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 507 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local 511 if ((Ran->Rand() & 1) && VSize == DestSize) { in Act() 519 if (VSize > DestSize) { in Act() 523 assert(VSize < DestSize && "Different int types with the same size?"); in Act() 553 if (VSize > DestSize) { in Act() 556 } else if (VSize < DestSize) { in Act()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 563 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local 567 if ((getRandom() & 1) && VSize == DestSize) { in Act() 574 if (VSize > DestSize) { in Act() 578 assert(VSize < DestSize && "Different int types with the same size?"); in Act() 604 if (VSize > DestSize) { in Act() 607 } else if (VSize < DestSize) { in Act()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMCodeGenPrepare.cpp | 543 unsigned VSize = 0; in isLegalToPromote() local 546 VSize = PtrTy->getElementType()->getPrimitiveSizeInBits(); in isLegalToPromote() 548 VSize = ZExt->getOperand(0)->getType()->getPrimitiveSizeInBits(); in isLegalToPromote() 550 VSize = V->getType()->getPrimitiveSizeInBits(); in isLegalToPromote() 553 if (VSize > TypeSize) in isLegalToPromote()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCAssembler.cpp | 572 unsigned VSize = FF.getValueSize(); in writeFragment() local 577 for (unsigned I = 0; I != VSize; ++I) { in writeFragment() 578 unsigned index = Endian == support::little ? I : (VSize - I - 1); in writeFragment() 581 for (unsigned I = VSize; I < MaxChunkSize; ++I) in writeFragment() 582 Data[I] = Data[I - VSize]; in writeFragment() 585 const unsigned NumPerChunk = MaxChunkSize / VSize; in writeFragment() 587 const unsigned ChunkSize = VSize * NumPerChunk; in writeFragment()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCFragment.h | 439 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, 441 : MCFragment(FT_Fill, false, Sec), Value(Value), ValueSize(VSize), in MCFragment()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 694 unsigned VSize = V->getType()->getScalarSizeInBits(); in CanEvaluateZExtd() local 696 APInt::getHighBitsSet(VSize, BitsToClear))) in CanEvaluateZExtd()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 768 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local 770 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 978 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local 980 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
|