Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/CodeGen/
DCGExprConstant.cpp200 llvm::APInt BitsThisChar = Bits; in addBits() local
201 if (BitsThisChar.getBitWidth() < CharWidth) in addBits()
202 BitsThisChar = BitsThisChar.zext(CharWidth); in addBits()
208 BitsThisChar.lshrInPlace(Shift); in addBits()
210 BitsThisChar = BitsThisChar.shl(-Shift); in addBits()
212 BitsThisChar = BitsThisChar.shl(OffsetWithinChar); in addBits()
214 if (BitsThisChar.getBitWidth() > CharWidth) in addBits()
215 BitsThisChar = BitsThisChar.trunc(CharWidth); in addBits()
219 add(llvm::ConstantInt::get(CGM.getLLVMContext(), BitsThisChar), in addBits()
242 BitsThisChar &= UpdateMask; in addBits()
[all …]