Home
last modified time | relevance | path

Searched defs:OpcodeAndConfig (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/llvm/tools/llvm-exegesis/lib/
DClustering.cpp242 struct OpcodeAndConfig { in stabilize() struct
243 explicit OpcodeAndConfig(const InstructionBenchmark &IB) in stabilize() argument
245 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()