Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DClustering.cpp255 struct OpcodeAndConfig { in stabilize() struct
256 explicit OpcodeAndConfig(const InstructionBenchmark &IB) in stabilize() argument
258 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()