Home
last modified time | relevance | path

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

/external/llvm-project/llvm/utils/TableGen/
DInfoByHwMode.h61 struct InfoByHwMode { struct
67 InfoByHwMode() = default; argument
68 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode() function
71 iterator begin() { return Map.begin(); } in begin()
73 iterator end() { return Map.end(); } in end()
75 const_iterator begin() const { return Map.begin(); } in begin()
77 const_iterator end() const { return Map.end(); } in end()
79 bool empty() const { return Map.empty(); } in empty()
82 bool hasMode(unsigned M) const { return Map.find(M) != Map.end(); } in hasMode()
84 bool hasDefault() const { return hasMode(DefaultMode); } in hasDefault()
[all …]