Lines Matching refs:Const
321 auto Const = buildInstr(TargetOpcode::G_CONSTANT) in buildConstant() local
324 return buildSplatVector(Res, Const); in buildConstant()
327 auto Const = buildInstr(TargetOpcode::G_CONSTANT); in buildConstant() local
328 Const->setDebugLoc(DebugLoc()); in buildConstant()
329 Res.addDefToMIB(*getMRI(), Const); in buildConstant()
330 Const.addCImm(&Val); in buildConstant()
331 return Const; in buildConstant()
357 auto Const = buildInstr(TargetOpcode::G_FCONSTANT) in buildFConstant() local
361 return buildSplatVector(Res, Const); in buildFConstant()
364 auto Const = buildInstr(TargetOpcode::G_FCONSTANT); in buildFConstant() local
365 Const->setDebugLoc(DebugLoc()); in buildFConstant()
366 Res.addDefToMIB(*getMRI(), Const); in buildFConstant()
367 Const.addFPImm(&Val); in buildFConstant()
368 return Const; in buildFConstant()