Lines Matching refs:msg

42         std::stringstream msg;  in add_instruction()  local
43 msg << "program instruction limit of " << limit << " instruction(s) exceeded"; in add_instruction()
44 throw syntax_error(inst->location, msg.str()); in add_instruction()
47 std::stringstream msg; in add_instruction() local
48msg << "instruction requires 'side' to specify side set value for the instruction because non opti… in add_instruction()
49 throw syntax_error(inst->location, msg.str()); in add_instruction()
84 std::stringstream msg; in add_symbol() local
86msg << "'" << symbol->name << "' was already defined as a " << (existing->is_label ? "label" : "va… in add_symbol()
89 msg << "label '" << symbol->name << "' was already defined at " << existing->location; in add_symbol()
91 msg << "'" << symbol->name << "' was already defined at " << existing->location; in add_symbol()
93 throw syntax_error(symbol->location, msg.str()); in add_symbol()
154 std::stringstream msg; in set_wrap() local
155 msg << ".wrap was already specified at " << wrap->location; in set_wrap()
156 throw syntax_error(l, msg.str()); in set_wrap()
166 std::stringstream msg; in set_wrap_target() local
167 msg << ".wrap_target was already specified at " << wrap_target->location; in set_wrap_target()
168 throw syntax_error(l, msg.str()); in set_wrap_target()
229 std::stringstream msg; in finalize() local
231msg << "autopush is incompatible with your selected FIFO configuration specified at " << fifo_loc; in finalize()
232 throw syntax_error(in.location, msg.str()); in finalize()
241 std::stringstream msg; in resolve() local
242msg << "circular dependency in definition of '" << name << "'; detected at " << location << ")"; in resolve()
243 throw syntax_error(scope.location, msg.str()); in resolve()
255 std::stringstream msg; in resolve() local
256 msg << "undefined symbol '" << name << "'"; in resolve()
257 throw syntax_error(location, msg.str()); in resolve()
271 std::stringstream msg; in encode() local
272msg << "the instruction delay limit is " << program.delay_max << " because of the side set specifi… in encode()
274 throw syntax_error(delay->location, msg.str()); in encode()
284 std::stringstream msg; in encode() local
285msg << "the maximum side set value is " << program.sideset_max << " based on the configuration spe… in encode()
287 throw syntax_error(sideset->location, msg.str()); in encode()
363 std::stringstream msg; in raw_encode() local
364 msg << "jmp target address " << dest << " is beyond the end of the program"; in raw_encode()
365 throw syntax_error(target->location, msg.str()); in raw_encode()