Lines Matching refs:InstCast
180 Ice::InstCast *cast = Ice::InstCast::create(function, Ice::InstCast::Trunc, to, from); in createTruncate()
1417 …auto bitcast = Ice::InstCast::create(::function, Ice::InstCast::Bitcast, result, vector.loadValue(… in createLoad()
1432 …auto bitcast = Ice::InstCast::create(::function, Ice::InstCast::Bitcast, result, vector.loadValue(… in createLoad()
1482 auto bitcast = Ice::InstCast::create(::function, Ice::InstCast::Bitcast, vector, value); in createStore()
1495 auto bitcast = Ice::InstCast::create(::function, Ice::InstCast::Bitcast, vector, value); in createStore()
1639 static Value *createCast(Ice::InstCast::OpKind op, Value *v, Type *destType) in createCast()
1647 Ice::InstCast *cast = Ice::InstCast::create(::function, op, result, v); in createCast()
1656 return createCast(Ice::InstCast::Trunc, v, destType); in createTrunc()
1662 return createCast(Ice::InstCast::Zext, v, destType); in createZExt()
1668 return createCast(Ice::InstCast::Sext, v, destType); in createSExt()
1674 return createCast(Ice::InstCast::Fptoui, v, destType); in createFPToUI()
1680 return createCast(Ice::InstCast::Fptosi, v, destType); in createFPToSI()
1686 return createCast(Ice::InstCast::Sitofp, v, destType); in createSIToFP()
1692 return createCast(Ice::InstCast::Fptrunc, v, destType); in createFPTrunc()
1698 return createCast(Ice::InstCast::Fpext, v, destType); in createFPExt()
1723 return createCast(Ice::InstCast::Bitcast, v, destType); in createBitCast()