Searched defs:OpcodeAndConfig (Results 1 – 1 of 1) sorted by relevance
242 struct OpcodeAndConfig { in stabilize() struct243 explicit OpcodeAndConfig(const InstructionBenchmark &IB) in stabilize() argument245 unsigned Opcode; in stabilize()246 const std::string *Config; in stabilize()248 auto Tie() const -> auto { return std::tie(Opcode, *Config); } in stabilize()250 bool operator<(const OpcodeAndConfig &O) const { return Tie() < O.Tie(); } in stabilize()251 bool operator!=(const OpcodeAndConfig &O) const { return Tie() != O.Tie(); } in stabilize()