Lines Matching refs:Const
328 auto Const = buildInstr(TargetOpcode::G_CONSTANT) in buildConstant() local
331 return buildSplatBuildVector(Res, Const); in buildConstant()
334 auto Const = buildInstr(TargetOpcode::G_CONSTANT); in buildConstant() local
335 Const->setDebugLoc(DebugLoc()); in buildConstant()
336 Res.addDefToMIB(*getMRI(), Const); in buildConstant()
337 Const.addCImm(&Val); in buildConstant()
338 return Const; in buildConstant()
364 auto Const = buildInstr(TargetOpcode::G_FCONSTANT) in buildFConstant() local
368 return buildSplatBuildVector(Res, Const); in buildFConstant()
371 auto Const = buildInstr(TargetOpcode::G_FCONSTANT); in buildFConstant() local
372 Const->setDebugLoc(DebugLoc()); in buildFConstant()
373 Res.addDefToMIB(*getMRI(), Const); in buildFConstant()
374 Const.addFPImm(&Val); in buildFConstant()
375 return Const; in buildFConstant()