Skip to content

Commit 2f3ed10

Browse files
committed
Avoid evaluation-order warnings with Visual Studio
Constructing the arguments in place triggers a warning with Visual Studio. Just construct them in a fixed order upfront and move each of them.
1 parent 5ccb6dc commit 2f3ed10

9 files changed

+102
-62
lines changed

src/analyses/ai.cpp

+9-5
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,15 @@ jsont ai_baset::output_json(
9595
std::ostringstream out;
9696
i_it->output(out);
9797

98-
json_objectt location{
99-
{"locationNumber", json_numbert(std::to_string(i_it->location_number))},
100-
{"sourceLocation", json_stringt(i_it->source_location().as_string())},
101-
{"abstractState", abstract_state_before(i_it)->output_json(*this, ns)},
102-
{"instruction", json_stringt(out.str())}};
98+
json_numbert location_number_json(std::to_string(i_it->location_number));
99+
json_stringt source_location_json(i_it->source_location.as_string());
100+
jsont abstract_state_json(abstract_state_before(i_it)->output_json(*this, ns));
101+
json_stringt instruction_json(out.str());
102+
json_objectt location(
103+
{{"locationNumber", std::move(location_number_json)},
104+
{"sourceLocation", std::move(source_location_json)},
105+
{"abstractState", std::move(abstract_state_json)},
106+
{"instruction", std::move(instruction_json)}});
103107

104108
contents.push_back(std::move(location));
105109
}

src/goto-analyzer/unreachable_instructions.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,11 @@ static void add_to_json(
151151
s.erase(s.size()-1);
152152

153153
// print info for file actually with full path
154-
const source_locationt &l = it->second->source_location();
155-
json_objectt i_entry{{"sourceLocation", json(l)},
156-
{"statement", json_stringt(s)}};
154+
const source_locationt &l=it->second->source_location;
155+
jsont source_location_json(json(l));
156+
json_stringt statement_json(s);
157+
json_objectt i_entry{
158+
{{"sourceLocation", std::move(source_location_json)}, {"statement", std::move(statement_json)}}};
157159
dead_ins.push_back(std::move(i_entry));
158160
}
159161

src/goto-checker/properties.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ std::string as_string(property_statust status)
6161

6262
property_infot::property_infot(
6363
goto_programt::const_targett pc,
64-
std::string description,
64+
const std::string &description,
6565
property_statust status)
66-
: pc(pc), description(std::move(description)), status(status)
66+
: pc(pc), description(description), status(status)
6767
{
6868
}
6969

@@ -93,9 +93,8 @@ void update_properties_from_goto_model(
9393
id2string(i_it->source_location().get_comment());
9494
if(description.empty())
9595
description = "assertion";
96-
properties.emplace(
97-
i_it->source_location().get_property_id(),
98-
property_infot{i_it, description, property_statust::NOT_CHECKED});
96+
property_infot info{i_it, description, property_statust::NOT_CHECKED};
97+
properties.emplace(i_it->source_location.get_property_id(), std::move(info));
9998
}
10099
}
101100
}

src/goto-checker/properties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct property_infot
5959
{
6060
property_infot(
6161
goto_programt::const_targett pc,
62-
std::string description,
62+
const std::string &description,
6363
property_statust status);
6464

6565
/// A pointer to the corresponding goto instruction

src/goto-diff/goto_diff_base.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ void goto_difft::output_functions() const
3838
}
3939
case ui_message_handlert::uit::JSON_UI:
4040
{
41+
json_stringt total_number_of_functions_json{std::to_string(total_functions_count)};
4142
json_objectt json_result{
42-
{"totalNumberOfFunctions",
43-
json_stringt(std::to_string(total_functions_count))}};
43+
{{"totalNumberOfFunctions", std::move(total_number_of_functions_json)}}};
4444
convert_function_group_json(
4545
json_result["newFunctions"].make_array(), new_functions, goto_model2);
4646
convert_function_group_json(

src/goto-programs/loop_ids.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ void show_loop_ids_json(
8585
std::string id =
8686
id2string(goto_programt::loop_id(function_id, instruction));
8787

88-
loops.push_back(json_objectt(
89-
{{"name", json_stringt(id)},
90-
{"sourceLocation", json(instruction.source_location())}}));
88+
json_stringt name_json{id};
89+
jsont source_location_json{json(it->source_location)};
90+
loops.push_back(
91+
json_objectt{{{"name", std::move(name_json)},
92+
{"sourceLocation", std::move(source_location_json)}}});
9193
}
9294
}
9395
}

src/goto-programs/show_goto_functions_json.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ json_objectt show_goto_functions_jsont::convert(
6161
for(const goto_programt::instructiont &instruction :
6262
function.body.instructions)
6363
{
64+
json_stringt instruction_id{instruction.to_string()};
6465
json_objectt instruction_entry{
65-
{"instructionId", json_stringt(instruction.to_string())}};
66+
{{"instructionId", std::move(instruction_id)}}};
6667

6768
if(instruction.code().source_location().is_not_nil())
6869
{

src/goto-programs/show_properties.cpp

+10-5
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,17 @@ void convert_properties_json(
143143

144144
irep_idt property_id=source_location.get_property_id();
145145

146+
json_stringt name_json{property_id};
147+
json_stringt class_json{property_class};
148+
jsont source_location_json{json(source_location)};
149+
json_stringt description_json{description};
150+
json_stringt expression_json{from_expr(ns, identifier, ins.guard)};
146151
json_objectt json_property{
147-
{"name", json_stringt(property_id)},
148-
{"class", json_stringt(property_class)},
149-
{"sourceLocation", json(source_location)},
150-
{"description", json_stringt(description)},
151-
{"expression", json_stringt(from_expr(ns, identifier, ins.condition()))}};
152+
{{"name", std::move(name_json)},
153+
{"class", std::move(class_json)},
154+
{"sourceLocation", std::move(source_location_json)},
155+
{"description", std::move(description_json)},
156+
{"expression", std::move(expression_json)}}};
152157

153158
const irept &basic_block_lines =
154159
source_location.get_basic_block_source_lines();

src/goto-programs/show_symbol_table.cpp

+64-37
Original file line numberDiff line numberDiff line change
@@ -165,36 +165,59 @@ static void show_symbol_table_json_ui(
165165
if(symbol.value.is_not_nil())
166166
ptr->from_expr(symbol.value, value_str, ns);
167167

168+
json_stringt pretty_name_json{symbol.pretty_name};
169+
json_stringt name_json{symbol.name};
170+
json_stringt base_name_json{symbol.base_name};
171+
json_stringt mode_json{symbol.mode};
172+
json_stringt module_json{symbol.module};
173+
json_stringt pretty_type_json{type_str};
174+
json_stringt pretty_value_json{value_str};
175+
jsont type_json{irep_converter.convert_from_irep(symbol.type)};
176+
jsont value_json{irep_converter.convert_from_irep(symbol.value)};
177+
jsont location_json{irep_converter.convert_from_irep(symbol.location)};
178+
jsont is_type_json{jsont::json_boolean(symbol.is_type)};
179+
jsont is_macro_json{jsont::json_boolean(symbol.is_macro)};
180+
jsont is_exported_json{jsont::json_boolean(symbol.is_exported)};
181+
jsont is_input_json{jsont::json_boolean(symbol.is_input)};
182+
jsont is_output_json{jsont::json_boolean(symbol.is_output)};
183+
jsont is_state_var_json{jsont::json_boolean(symbol.is_state_var)};
184+
jsont is_property_json{jsont::json_boolean(symbol.is_property)};
185+
jsont is_static_lifetime_json{jsont::json_boolean(symbol.is_static_lifetime)};
186+
jsont is_thread_local_json{jsont::json_boolean(symbol.is_thread_local)};
187+
jsont is_lvalue_json{jsont::json_boolean(symbol.is_lvalue)};
188+
jsont is_file_local_json{jsont::json_boolean(symbol.is_file_local)};
189+
jsont is_extern_json{jsont::json_boolean(symbol.is_extern)};
190+
jsont is_volatile_json{jsont::json_boolean(symbol.is_volatile)};
191+
jsont is_parameter_json{jsont::json_boolean(symbol.is_parameter)};
192+
jsont is_auxiliary_json{jsont::json_boolean(symbol.is_auxiliary)};
193+
jsont is_weak_json{jsont::json_boolean(symbol.is_weak)};
168194
json_objectt symbol_json{
169-
{"prettyName", json_stringt(symbol.pretty_name)},
170-
{"name", json_stringt(symbol.name)},
171-
{"baseName", json_stringt(symbol.base_name)},
172-
{"mode", json_stringt(symbol.mode)},
173-
{"module", json_stringt(symbol.module)},
174-
175-
{"prettyType", json_stringt(type_str)},
176-
{"prettyValue", json_stringt(value_str)},
177-
178-
{"type", irep_converter.convert_from_irep(symbol.type)},
179-
{"value", irep_converter.convert_from_irep(symbol.value)},
180-
{"location", irep_converter.convert_from_irep(symbol.location)},
181-
182-
{"isType", jsont::json_boolean(symbol.is_type)},
183-
{"isMacro", jsont::json_boolean(symbol.is_macro)},
184-
{"isExported", jsont::json_boolean(symbol.is_exported)},
185-
{"isInput", jsont::json_boolean(symbol.is_input)},
186-
{"isOutput", jsont::json_boolean(symbol.is_output)},
187-
{"isStateVar", jsont::json_boolean(symbol.is_state_var)},
188-
{"isProperty", jsont::json_boolean(symbol.is_property)},
189-
{"isStaticLifetime", jsont::json_boolean(symbol.is_static_lifetime)},
190-
{"isThreadLocal", jsont::json_boolean(symbol.is_thread_local)},
191-
{"isLvalue", jsont::json_boolean(symbol.is_lvalue)},
192-
{"isFileLocal", jsont::json_boolean(symbol.is_file_local)},
193-
{"isExtern", jsont::json_boolean(symbol.is_extern)},
194-
{"isVolatile", jsont::json_boolean(symbol.is_volatile)},
195-
{"isParameter", jsont::json_boolean(symbol.is_parameter)},
196-
{"isAuxiliary", jsont::json_boolean(symbol.is_auxiliary)},
197-
{"isWeak", jsont::json_boolean(symbol.is_weak)}};
195+
{{"prettyName", std::move(pretty_name_json)},
196+
{"name", std::move(name_json)},
197+
{"baseName", std::move(base_name_json)},
198+
{"mode", std::move(mode_json)},
199+
{"module", std::move(module_json)},
200+
{"prettyType", std::move(pretty_type_json)},
201+
{"prettyValue", std::move(pretty_value_json)},
202+
{"type", std::move(type_json)},
203+
{"value", std::move(value_json)},
204+
{"location", std::move(location_json)},
205+
{"isType", std::move(is_type_json)},
206+
{"isMacro", std::move(is_macro_json)},
207+
{"isExported", std::move(is_exported_json)},
208+
{"isInput", std::move(is_input_json)},
209+
{"isOutput", std::move(is_output_json)},
210+
{"isStateVar", std::move(is_state_var_json)},
211+
{"isProperty", std::move(is_property_json)},
212+
{"isStaticLifetime", std::move(is_static_lifetime_json)},
213+
{"isThreadLocal", std::move(is_thread_local_json)},
214+
{"isLvalue", std::move(is_lvalue_json)},
215+
{"isFileLocal", std::move(is_file_local_json)},
216+
{"isExtern", std::move(is_extern_json)},
217+
{"isVolatile", std::move(is_volatile_json)},
218+
{"isParameter", std::move(is_parameter_json)},
219+
{"isAuxiliary", std::move(is_auxiliary_json)},
220+
{"isWeak", std::move(is_weak_json)}}};
198221

199222
result.push_back(id2string(symbol.name), std::move(symbol_json));
200223
}
@@ -224,15 +247,19 @@ static void show_symbol_table_brief_json_ui(
224247
if(symbol.type.is_not_nil())
225248
ptr->from_type(symbol.type, type_str, ns);
226249

250+
json_stringt pretty_name_json{symbol.pretty_name};
251+
json_stringt base_name_json{symbol.base_name};
252+
json_stringt mode_json{symbol.mode};
253+
json_stringt module_json{symbol.module};
254+
json_stringt pretty_type_json{type_str};
255+
jsont type_json{irep_converter.convert_from_irep(symbol.type)};
227256
json_objectt symbol_json{
228-
{"prettyName", json_stringt(symbol.pretty_name)},
229-
{"baseName", json_stringt(symbol.base_name)},
230-
{"mode", json_stringt(symbol.mode)},
231-
{"module", json_stringt(symbol.module)},
232-
233-
{"prettyType", json_stringt(type_str)},
234-
235-
{"type", irep_converter.convert_from_irep(symbol.type)}};
257+
{{"prettyName", std::move(pretty_name_json)},
258+
{"baseName", std::move(base_name_json)},
259+
{"mode", std::move(mode_json)},
260+
{"module", std::move(module_json)},
261+
{"prettyType", std::move(pretty_type_json)},
262+
{"type", std::move(type_json)}}};
236263

237264
result.push_back(id2string(symbol.name), std::move(symbol_json));
238265
}

0 commit comments

Comments
 (0)