Searched refs:ResultVal (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Analysis/
H A DConstantFolding.cpp456 APInt ResultVal = APInt(IntType->getBitWidth(), 0);
458 ResultVal = RawBytes[BytesLoaded - 1];
460 ResultVal <<= 8;
461 ResultVal |= RawBytes[BytesLoaded - 1 - i];
464 ResultVal = RawBytes[0];
466 ResultVal <<= 8;
467 ResultVal |= RawBytes[i];
471 return ConstantInt::get(IntType->getContext(), ResultVal);
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2464 Value *ResultVal = local
2494 if (SrcField->getType() != ResultVal->getType())
2495 SrcField = new ZExtInst(SrcField, ResultVal->getType(), "", LI);
2513 if (!isa<Constant>(ResultVal) ||
2514 !cast<Constant>(ResultVal)->isNullValue())
2515 ResultVal = BinaryOperator::CreateOr(SrcField, ResultVal, "", LI);
2517 ResultVal = SrcField;
2522 ResultVal = new TruncInst(ResultVal, L
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp659 SVal ResultVal = local
661 if (Optional<NonLoc> Result = ResultVal.getAs<NonLoc>())
664 assert(!ResultVal.getAs<Loc>() && "Loc-Loc ops should not produce Locs");
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1525 llvm::Value *ResultVal = MaskedVal; local
1532 ResultVal = Builder.CreateShl(ResultVal, HighBits, "bf.result.shl");
1533 ResultVal = Builder.CreateAShr(ResultVal, HighBits, "bf.result.ashr");
1537 ResultVal = Builder.CreateIntCast(ResultVal, ResLTy, Info.IsSigned,
1539 *Result = EmitFromMemory(ResultVal, Dst.getType());
/external/clang/lib/Sema/
H A DSemaExpr.cpp3118 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
3119 if (Literal.GetIntegerValue(ResultVal))
3121 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
3209 llvm::APInt ResultVal(MaxWidth, 0);
3211 if (Literal.GetIntegerValue(ResultVal)) {
3215 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
3247 if (ResultVal.isIntN(IntSize)) {
3249 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
3262 if (ResultVal.isIntN(LongSize)) {
3264 if (!Literal.isUnsigned && ResultVal[LongSiz
[all...]

Completed in 164 milliseconds