Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1715 uint64_t ResSize = DL.getTypeAllocSize(ResElTy); in visitGetElementPtrInst() local
1717 if (ResSize && SrcSize % ResSize == 0) { in visitGetElementPtrInst()
1720 uint64_t Scale = SrcSize / ResSize; in visitGetElementPtrInst()
1753 uint64_t ResSize = DL.getTypeAllocSize(ResElTy); in visitGetElementPtrInst() local
1756 if (ResSize && ArrayEltSize % ResSize == 0) { in visitGetElementPtrInst()
1759 uint64_t Scale = ArrayEltSize / ResSize; in visitGetElementPtrInst()
/external/clang/lib/CodeGen/
DCGStmt.cpp2065 uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy); in EmitAsmStmt() local
2067 llvm::IntegerType::get(getLLVMContext(), (unsigned)ResSize)); in EmitAsmStmt()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp25369 unsigned ResSize = N1.getValueType().getScalarSizeInBits(); in VectorZextCombine() local
25371 if (SplatBitSize > ResSize || in VectorZextCombine()
25376 if (SrcSize >= ResSize || ResSize % SrcSize) in VectorZextCombine()
25382 unsigned ZextRatio = ResSize / SrcSize; in VectorZextCombine()