| 120 | m.insert_instruction(ins, wait_event{wait_id}); |
| 121 | } |
| 122 | void schedule_model::record(module& m, instruction_ref ins, std::size_t wait_id) const |
| 123 | { |
| 124 | m.insert_instruction(std::next(ins), record_event{wait_id}); |
| 125 | } |
| 126 | |
| 127 | static std::unordered_map<std::string, std::size_t> create_weight_map() |
| 128 | { |
no test coverage detected