Lines Matching refs:OnlyIfReduced
1526 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()
2167 bool OnlyIfReduced = false) { in getFoldedCast() argument
2173 if (OnlyIfReduced) in getFoldedCast()
2185 bool OnlyIfReduced) { in getCast() argument
2197 return getTrunc(C, Ty, OnlyIfReduced); in getCast()
2199 return getPtrToInt(C, Ty, OnlyIfReduced); in getCast()
2201 return getIntToPtr(C, Ty, OnlyIfReduced); in getCast()
2203 return getBitCast(C, Ty, OnlyIfReduced); in getCast()
2205 return getAddrSpaceCast(C, Ty, OnlyIfReduced); in getCast()
2241 Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) { in getTrunc() argument
2252 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced); in getTrunc()
2256 bool OnlyIfReduced) { in getPtrToInt() argument
2266 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced); in getPtrToInt()
2270 bool OnlyIfReduced) { in getIntToPtr() argument
2280 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced); in getIntToPtr()
2284 bool OnlyIfReduced) { in getBitCast() argument
2292 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced); in getBitCast()
2296 bool OnlyIfReduced) { in getAddrSpaceCast() argument
2299 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced); in getAddrSpaceCast()