CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_xform_query_result_decls.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
55  static const xform_query_result IMPOSSIBLE;
56 
57 
59  static const xform_query_result REDUNDANT;
60 
61 
72  static const xform_query_result REDUNDANT_SUSPECT;
73 
74 
76  static const xform_query_result OK;
77 
78 
80  static const xform_query_result LHS_UNMODIFIED;
81 
82 
84  static const xform_query_result RHS_UNMODIFIED;
static const xform_query_result REDUNDANT
The query definitely evaluates to TRUE.
Definition: cs_xform_query_result_decls.hpp:59
static const xform_query_result OK
The query could evaluate to either TRUE or FALSE: there is no reason to believe definitely one or the...
Definition: cs_xform_query_result_decls.hpp:76
static const xform_query_result REDUNDANT_SUSPECT
The query evaluates to TRUE, but is implied by preconditions that arise from:
Definition: cs_xform_query_result_decls.hpp:72
static const xform_query_result IMPOSSIBLE
The query evaluates to FALSE.
Definition: cs_xform_query_result_decls.hpp:55
static const xform_query_result RHS_UNMODIFIED
The query's rhs xform_expr had mode xform_expr_mode::POST_STRICT or xform_expr_mode::POST_DEREFS_PRE_...
Definition: cs_xform_query_result_decls.hpp:84
static const xform_query_result LHS_UNMODIFIED
The query's lhs xform_expr had mode xform_expr_mode::POST_STRICT or xform_expr_mode::POST_DEREFS_PRE_...
Definition: cs_xform_query_result_decls.hpp:80