Searched defs:OpcodeAndConfig (Results 1 – 1 of 1) sorted by relevance
255 struct OpcodeAndConfig { in stabilize() struct256 explicit OpcodeAndConfig(const InstructionBenchmark &IB) in stabilize() argument258 unsigned Opcode; in stabilize()259 const std::string *Config; in stabilize()261 auto Tie() const -> auto { return std::tie(Opcode, *Config); } in stabilize()263 bool operator<(const OpcodeAndConfig &O) const { return Tie() < O.Tie(); } in stabilize()264 bool operator!=(const OpcodeAndConfig &O) const { return Tie() != O.Tie(); } in stabilize()