Home
last modified time | relevance | path

Searched refs:OnlyIfReduced (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DConstants.h1000 static Constant *getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1001 static Constant *getSExt(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1002 static Constant *getZExt(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1004 bool OnlyIfReduced = false);
1006 bool OnlyIfReduced = false);
1007 static Constant *getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1008 static Constant *getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1009 static Constant *getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1010 static Constant *getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced = false);
1012 bool OnlyIfReduced = false);
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstants.cpp1526 bool OnlyIfReduced, Type *SrcTy) const { in getWithOperands() argument
1533 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr; in getWithOperands()
1548 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced); in getWithOperands()
1959 bool OnlyIfReduced = false) { in getFoldedCast() argument
1965 if (OnlyIfReduced) in getFoldedCast()
1977 bool OnlyIfReduced) { in getCast() argument
1987 return getTrunc(C, Ty, OnlyIfReduced); in getCast()
1989 return getZExt(C, Ty, OnlyIfReduced); in getCast()
1991 return getSExt(C, Ty, OnlyIfReduced); in getCast()
1993 return getFPTrunc(C, Ty, OnlyIfReduced); in getCast()
[all …]