Lines Matching refs:Const
263 auto Const = buildInstr(TargetOpcode::G_CONSTANT) in buildConstant() local
266 return buildSplatVector(Res, Const); in buildConstant()
269 auto Const = buildInstr(TargetOpcode::G_CONSTANT); in buildConstant() local
270 Const->setDebugLoc(DebugLoc()); in buildConstant()
271 Res.addDefToMIB(*getMRI(), Const); in buildConstant()
272 Const.addCImm(&Val); in buildConstant()
273 return Const; in buildConstant()
296 auto Const = buildInstr(TargetOpcode::G_FCONSTANT) in buildFConstant() local
300 return buildSplatVector(Res, Const); in buildFConstant()
303 auto Const = buildInstr(TargetOpcode::G_FCONSTANT); in buildFConstant() local
304 Const->setDebugLoc(DebugLoc()); in buildFConstant()
305 Res.addDefToMIB(*getMRI(), Const); in buildFConstant()
306 Const.addFPImm(&Val); in buildFConstant()
307 return Const; in buildFConstant()