reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/lib/Target/AArch64/AArch64GenGlobalISel.inc
 7274           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
 7295           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
 8012           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
 8033           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
 8720           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
 9376           GIM_CheckOpcode, /*MI*/1, TargetOpcode::G_IMPLICIT_DEF,
include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
  193     if (MachineInstr *DefMI = getOpcodeDef(TargetOpcode::G_IMPLICIT_DEF,
  201         if (isInstUnsupported({TargetOpcode::G_IMPLICIT_DEF, {DstTy}}))
  204         Builder.buildInstr(TargetOpcode::G_IMPLICIT_DEF, {DstReg}, {});
lib/CodeGen/GlobalISel/CombinerHelper.cpp
  131     case TargetOpcode::G_IMPLICIT_DEF: {
lib/CodeGen/GlobalISel/LegalizerHelper.cpp
  608   case TargetOpcode::G_IMPLICIT_DEF: {
 1713   case TargetOpcode::G_IMPLICIT_DEF: {
 2950   case G_IMPLICIT_DEF:
 3265   case TargetOpcode::G_IMPLICIT_DEF:
lib/CodeGen/GlobalISel/LegalizerInfo.cpp
  263       TargetOpcode::G_IMPLICIT_DEF, 0, narrowToSmallerAndUnsupportedIfTooSmall);
lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
  577   return buildInstr(TargetOpcode::G_IMPLICIT_DEF, {Res}, {});
lib/Target/AArch64/AArch64InstructionSelector.cpp
 2279   case TargetOpcode::G_IMPLICIT_DEF: {
 3594       getOpcodeDef(G_IMPLICIT_DEF, InsMI->getOperand(1).getReg(), MRI);
lib/Target/AArch64/AArch64LegalizerInfo.cpp
   61   getActionDefinitionsBuilder(G_IMPLICIT_DEF)
lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
 1715   case TargetOpcode::G_IMPLICIT_DEF:
lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
  309   getActionDefinitionsBuilder(G_IMPLICIT_DEF)
lib/Target/Mips/MipsInstructionSelector.cpp
  456   case G_IMPLICIT_DEF: {
lib/Target/Mips/MipsLegalizerInfo.cpp
   99   getActionDefinitionsBuilder(G_IMPLICIT_DEF)
lib/Target/Mips/MipsRegisterBankInfo.cpp
  164   case TargetOpcode::G_IMPLICIT_DEF:
  247   if (MI->getOpcode() == TargetOpcode::G_IMPLICIT_DEF)
  520   case G_IMPLICIT_DEF:
  636   case TargetOpcode::G_IMPLICIT_DEF: {
  679   case TargetOpcode::G_IMPLICIT_DEF: {
lib/Target/X86/X86InstructionSelector.cpp
  378   case TargetOpcode::G_IMPLICIT_DEF:
 1491   assert((I.getOpcode() == TargetOpcode::G_IMPLICIT_DEF ||
 1508   if (I.getOpcode() == TargetOpcode::G_IMPLICIT_DEF)
lib/Target/X86/X86LegalizerInfo.cpp
  117     setAction({G_IMPLICIT_DEF, Ty}, Legal);
  212   setAction({G_IMPLICIT_DEF, s64}, Legal);
  215   setAction({G_IMPLICIT_DEF, s128}, Legal);
lib/Target/X86/X86RegisterBankInfo.cpp
  287   case TargetOpcode::G_IMPLICIT_DEF: {
unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp
  232     LI.getActionDefinitionsBuilder(G_IMPLICIT_DEF)
  237     EXPECT_ACTION(Unsupported, 0, LLT(), LegalityQuery(G_IMPLICIT_DEF, {s32}));
  238     EXPECT_ACTION(Unsupported, 0, LLT(), LegalityQuery(G_IMPLICIT_DEF, {v2s32}));
  239     EXPECT_ACTION(MoreElements, 0, v4p0, LegalityQuery(G_IMPLICIT_DEF, {v3p0}));
  240     EXPECT_ACTION(MoreElements, 0, v4s32, LegalityQuery(G_IMPLICIT_DEF, {v3s32}));