Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h590 Constant *ConstantValue = nullptr;
595 : Expression(ET_Constant), ConstantValue(constantValue) {} in ConstantExpression()
603 Constant *getConstantValue() const { return ConstantValue; } in getConstantValue()
604 void setConstantValue(Constant *V) { ConstantValue = V; } in setConstantValue()
608 return ConstantValue == OC.ConstantValue; in equals()
613 ConstantValue->getType(), ConstantValue); in getHashValue()
621 OS << " constant = " << *ConstantValue; in printInternal()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DInstructions.cpp154 Value *ConstantValue = getIncomingValue(0); in hasConstantValue() local
156 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) { in hasConstantValue()
157 if (ConstantValue != this) in hasConstantValue()
160 ConstantValue = getIncomingValue(i); in hasConstantValue()
162 if (ConstantValue == this) in hasConstantValue()
164 return ConstantValue; in hasConstantValue()
173 Value *ConstantValue = nullptr; in hasConstantOrUndefValue() local
177 if (ConstantValue && ConstantValue != Incoming) in hasConstantOrUndefValue()
179 ConstantValue = Incoming; in hasConstantOrUndefValue()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DOverload.h364 APValue &ConstantValue, QualType &ConstantType,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOverload.cpp312 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue, in getNarrowingKind() argument
371 ConstantValue = APValue(*IntConstantValue); in getNarrowingKind()
396 if (Initializer->isCXX11ConstantExpr(Ctx, &ConstantValue)) { in getNarrowingKind()
398 assert(ConstantValue.isFloat()); in getNarrowingKind()
399 llvm::APFloat FloatVal = ConstantValue.getFloat(); in getNarrowingKind()
470 ConstantValue = APValue(InitializerValue); in getNarrowingKind()
DSemaInit.cpp9804 APValue ConstantValue; in DiagnoseNarrowingInInitList() local
9806 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue, in DiagnoseNarrowingInInitList()
9832 << ConstantValue.getAsString(S.getASTContext(), ConstantType) in DiagnoseNarrowingInInitList()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp10111 SDValue ConstantValue; in LowerBUILD_VECTOR() local
10127 if (!ConstantValue.getNode()) in LowerBUILD_VECTOR()
10128 ConstantValue = V; in LowerBUILD_VECTOR()
10129 else if (ConstantValue != V) in LowerBUILD_VECTOR()
10279 SDValue Vec = DAG.getSplatBuildVector(VT, dl, ConstantValue), in LowerBUILD_VECTOR()
10283 Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue); in LowerBUILD_VECTOR()