Home | History | Annotate | Download | only in Lex

Lines Matching refs:getBitWidth

42   unsigned getBitWidth() const { return Val.getBitWidth(); }
313 if (Result.Val.getBitWidth() > Val.getBitWidth()) {
314 Result.Val = Val.extend(Result.Val.getBitWidth());
316 assert(Result.Val.getBitWidth() == Val.getBitWidth() &&
495 PPValue RHS(LHS.getBitWidth());
538 llvm::APSInt Res(LHS.getBitWidth());
602 Overflow = ShAmt >= LHS.Val.getBitWidth();
604 ShAmt = LHS.Val.getBitWidth()-1;
614 if (ShAmt >= LHS.getBitWidth())
615 Overflow = true, ShAmt = LHS.getBitWidth()-1;
693 PPValue AfterColonVal(LHS.getBitWidth());