Lines Matching refs:Const
291 auto Const = buildInstr(TargetOpcode::G_CONSTANT) in buildConstant() local
294 return buildSplatVector(Res, Const); in buildConstant()
297 auto Const = buildInstr(TargetOpcode::G_CONSTANT); in buildConstant() local
298 Const->setDebugLoc(DebugLoc()); in buildConstant()
299 Res.addDefToMIB(*getMRI(), Const); in buildConstant()
300 Const.addCImm(&Val); in buildConstant()
301 return Const; in buildConstant()
324 auto Const = buildInstr(TargetOpcode::G_FCONSTANT) in buildFConstant() local
328 return buildSplatVector(Res, Const); in buildFConstant()
331 auto Const = buildInstr(TargetOpcode::G_FCONSTANT); in buildFConstant() local
332 Const->setDebugLoc(DebugLoc()); in buildFConstant()
333 Res.addDefToMIB(*getMRI(), Const); in buildFConstant()
334 Const.addFPImm(&Val); in buildFConstant()
335 return Const; in buildFConstant()