Lines Matching refs:Opc
37 bool CSEConfigFull::shouldCSEOpc(unsigned Opc) { in shouldCSEOpc() argument
38 switch (Opc) { in shouldCSEOpc()
69 bool CSEConfigConstantOnly::shouldCSEOpc(unsigned Opc) { in shouldCSEOpc() argument
70 return Opc == TargetOpcode::G_CONSTANT || Opc == TargetOpcode::G_FCONSTANT || in shouldCSEOpc()
71 Opc == TargetOpcode::G_IMPLICIT_DEF; in shouldCSEOpc()
168 void GISelCSEInfo::countOpcodeHit(unsigned Opc) { in countOpcodeHit() argument
170 if (OpcodeHitTable.count(Opc)) in countOpcodeHit()
171 OpcodeHitTable[Opc] += 1; in countOpcodeHit()
173 OpcodeHitTable[Opc] = 1; in countOpcodeHit()
222 bool GISelCSEInfo::shouldCSE(unsigned Opc) const { in shouldCSE()
224 return CSEOpt->shouldCSEOpc(Opc); in shouldCSE()
329 GISelInstProfileBuilder::addNodeIDOpcode(unsigned Opc) const { in addNodeIDOpcode()
330 ID.AddInteger(Opc); in addNodeIDOpcode()