HomeSort by: relevance | last modified time | path
    Searched refs:ConstantValue (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 590 Constant *ConstantValue = nullptr;
594 ConstantExpression(Constant *constantValue)
595 : Expression(ET_Constant), ConstantValue(constantValue) {}
603 Constant *getConstantValue() const { return ConstantValue; }
604 void setConstantValue(Constant *V) { ConstantValue = V; }
608 return ConstantValue == OC.ConstantValue;
613 ConstantValue->getType(), ConstantValue);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 150 Value *ConstantValue = getIncomingValue(0);
152 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) {
153 if (ConstantValue != this)
156 ConstantValue = getIncomingValue(i);
158 if (ConstantValue == this)
160 return ConstantValue;
169 Value *ConstantValue = nullptr;
173 if (ConstantValue && ConstantValue != Incoming)
175 ConstantValue = Incoming
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Overload.h 364 APValue &ConstantValue, QualType &ConstantType,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOverload.cpp 305 /// \param ConstantValue If this is an NK_Constant_Narrowing conversion, the
312 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue,
371 ConstantValue = APValue(*IntConstantValue);
396 if (Initializer->isCXX11ConstantExpr(Ctx, &ConstantValue)) {
398 assert(ConstantValue.isFloat());
399 llvm::APFloat FloatVal = ConstantValue.getFloat();
470 ConstantValue = APValue(InitializerValue);
SemaInit.cpp 9803 APValue ConstantValue;
9805 switch (SCS->getNarrowingKind(S.Context, PostInit, ConstantValue,
9831 << ConstantValue.getAsString(S.getASTContext(), ConstantType)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 9772 SDValue ConstantValue;
9788 if (!ConstantValue.getNode())
9789 ConstantValue = V;
9790 else if (ConstantValue != V)
9940 SDValue Vec = DAG.getSplatBuildVector(VT, dl, ConstantValue),
9944 Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue);

Completed in 54 milliseconds