Searched defs:OpcodeAndConfig (Results 1 – 1 of 1) sorted by relevance
256 struct OpcodeAndConfig { in stabilize() struct257 explicit OpcodeAndConfig(const InstructionBenchmark &IB) in stabilize() function259 unsigned Opcode; in stabilize()260 const std::string *Config; in stabilize()262 auto Tie() const -> auto { return std::tie(Opcode, *Config); } in stabilize()264 bool operator<(const OpcodeAndConfig &O) const { return Tie() < O.Tie(); } in stabilize()265 bool operator!=(const OpcodeAndConfig &O) const { return Tie() != O.Tie(); } in stabilize()