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

/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2473 Value *ResultVal = local
2503 if (SrcField->getType() != ResultVal->getType())
2504 SrcField = new ZExtInst(SrcField, ResultVal->getType(), "", LI);
2522 if (!isa<Constant>(ResultVal) ||
2523 !cast<Constant>(ResultVal)->isNullValue())
2524 ResultVal = BinaryOperator::CreateOr(SrcField, ResultVal, "", LI);
2526 ResultVal = SrcField;
2531 ResultVal = new TruncInst(ResultVal, L
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp445 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
447 ResultVal <<= 8;
448 ResultVal |= RawBytes[BytesLoaded-1-i];
451 return ConstantInt::get(IntType->getContext(), ResultVal);
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp604 SVal ResultVal = cast<loc::ConcreteInt>(lhs).evalBinOp(BasicVals, op, local
606 if (Loc *Result = dyn_cast<Loc>(&ResultVal))
/external/clang/lib/Sema/
H A DSemaExpr.cpp2690 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
2691 if (Literal.GetIntegerValue(ResultVal))
2693 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
2777 llvm::APInt ResultVal(MaxWidth, 0);
2779 if (Literal.GetIntegerValue(ResultVal)) {
2783 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
2800 if (ResultVal.isIntN(IntSize)) {
2802 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
2815 if (ResultVal.isIntN(LongSize)) {
2817 if (!Literal.isUnsigned && ResultVal[LongSiz
[all...]

Completed in 203 milliseconds