diff --git a/src/api/context_config.c b/src/api/context_config.c index adaccc4a2..6e78c7dac 100644 --- a/src/api/context_config.c +++ b/src/api/context_config.c @@ -158,6 +158,7 @@ static const int32_t logic2arch[NUM_SMT_LOGICS] = { -1, // ANIRA -1, // AUF -1, // UFBV + -1, // UFBVLIA -1, // UFIDL -1, // UFLIA -1, // UFLRA @@ -167,6 +168,8 @@ static const int32_t logic2arch[NUM_SMT_LOGICS] = { -1, // UFNIRA -1, // UFRDL -1, // AUFBV + -1, // AUFBVLIA + -1, // AUFBVNIA -1, // AUFLIA -1, // AUFLRA -1, // AUFLIRA @@ -194,6 +197,8 @@ static const int32_t logic2arch[NUM_SMT_LOGICS] = { CTX_ARCH_MCSAT, // QF_ANIRA CTX_ARCH_EGFUN, // QF_AUF CTX_ARCH_EGBV, // QF_UFBV + CTX_ARCH_EGSPLXBV, // QF_UFBVLIA + CTX_ARCH_EGSPLX, // QF_UFIDL CTX_ARCH_EGSPLX, // QF_UFLIA CTX_ARCH_EGSPLX, // QF_UFLRA @@ -203,6 +208,8 @@ static const int32_t logic2arch[NUM_SMT_LOGICS] = { CTX_ARCH_MCSAT, // QF_UFNIRA CTX_ARCH_EGSPLX, // QF_UFRDL CTX_ARCH_EGFUNBV, // QF_AUFBV + CTX_ARCH_EGFUNSPLXBV, // QF_AUFBVLIA + CTX_ARCH_MCSAT, // QF_AUFBVNIA CTX_ARCH_EGFUNSPLX, // QF_AUFLIA CTX_ARCH_EGFUNSPLX, // QF_AUFLRA CTX_ARCH_EGFUNSPLX, // QF_AUFLIRA diff --git a/src/api/smt_logic_codes.c b/src/api/smt_logic_codes.c index 2cc58ebef..c25f28c6a 100644 --- a/src/api/smt_logic_codes.c +++ b/src/api/smt_logic_codes.c @@ -43,6 +43,8 @@ static const char * const smt_logic_names[NUM_SMT_LOGIC_NAMES] = { "ANRA", "AUF", "AUFBV", + "AUFBVLIA", + "AUFBVNIA", "AUFLIA", "AUFLIRA", "AUFLRA", @@ -68,6 +70,8 @@ static const char * const smt_logic_names[NUM_SMT_LOGIC_NAMES] = { "QF_ANRA", "QF_AUF", "QF_AUFBV", + "QF_AUFBVLIA", + "QF_AUFBVNIA", "QF_AUFLIA", "QF_AUFLIRA", "QF_AUFLRA", @@ -86,6 +90,7 @@ static const char * const smt_logic_names[NUM_SMT_LOGIC_NAMES] = { "QF_RDL", "QF_UF", "QF_UFBV", + "QF_UFBVLIA", "QF_UFIDL", "QF_UFLIA", "QF_UFLIRA", @@ -97,6 +102,7 @@ static const char * const smt_logic_names[NUM_SMT_LOGIC_NAMES] = { "RDL", "UF", "UFBV", + "UFBVLIA", "UFIDL", "UFLIA", "UFLIRA", @@ -124,6 +130,8 @@ static const smt_logic_t smt_code[NUM_SMT_LOGIC_NAMES] = { ANRA, AUF, AUFBV, + AUFBVLIA, + AUFBVNIA, AUFLIA, AUFLIRA, AUFLRA, @@ -149,6 +157,8 @@ static const smt_logic_t smt_code[NUM_SMT_LOGIC_NAMES] = { QF_ANRA, QF_AUF, QF_AUFBV, + QF_AUFBVLIA, + QF_AUFBVNIA, QF_AUFLIA, QF_AUFLIRA, QF_AUFLRA, @@ -167,6 +177,7 @@ static const smt_logic_t smt_code[NUM_SMT_LOGIC_NAMES] = { QF_RDL, QF_UF, QF_UFBV, + QF_UFBVLIA, QF_UFIDL, QF_UFLIA, QF_UFLIRA, @@ -178,6 +189,7 @@ static const smt_logic_t smt_code[NUM_SMT_LOGIC_NAMES] = { RDL, UF, UFBV, + UFBVLIA, UFIDL, UFLIA, UFLIRA, @@ -292,6 +304,7 @@ static const uint8_t has_arrays[NUM_SMT_LOGICS] = { true, // ANIRA true, // AUF false, // UFBV + false, // UFBVLIA false, // UFIDL false, // UFLIA false, // UFLRA @@ -301,6 +314,8 @@ static const uint8_t has_arrays[NUM_SMT_LOGICS] = { false, // UFNIRA false, // UFRDL true, // AUFBV + true, // AUFBVLIA + true, // AUFBVNIA true, // AUFLIA true, // AUFLRA true, // AUFLIRA @@ -328,6 +343,7 @@ static const uint8_t has_arrays[NUM_SMT_LOGICS] = { true, // QF_ANIRA true, // QF_AUF false, // QF_UFBV + false, // QF_UFBVLIA false, // QF_UFIDL false, // QF_UFLIA false, // QF_UFLRA @@ -337,6 +353,8 @@ static const uint8_t has_arrays[NUM_SMT_LOGICS] = { false, // QF_UFNIRA false, // QF_UFRDL true, // QF_AUFBV + true, // QF_AUFBVLIA + true, // QF_AUFBVNIA true, // QF_AUFLIA true, // QF_AUFLRA true, // QF_AUFLIRA @@ -370,6 +388,7 @@ static const uint8_t has_bv[NUM_SMT_LOGICS] = { false, // ANIRA false, // AUF true, // UFBV + true, // UFBVLIA false, // UFIDL false, // UFLIA false, // UFLRA @@ -379,6 +398,8 @@ static const uint8_t has_bv[NUM_SMT_LOGICS] = { false, // UFNIRA false, // UFRDL true, // AUFBV + true, // AUFBVLIA + true, // AUFBVNIA false, // AUFLIA false, // AUFLRA false, // AUFLIRA @@ -406,6 +427,7 @@ static const uint8_t has_bv[NUM_SMT_LOGICS] = { false, // QF_ANIRA false, // QF_AUF true, // QF_UFBV + true, // QF_UFBVLIA false, // QF_UFIDL false, // QF_UFLIA false, // QF_UFLRA @@ -415,6 +437,8 @@ static const uint8_t has_bv[NUM_SMT_LOGICS] = { false, // QF_UFNIRA false, // QF_UFRDL true, // QF_AUFBV + true, // QF_AUFBVLIA + true, // QF_AUFBVNIA false, // QF_AUFLIA false, // QF_AUFLRA false, // QF_AUFLIRA @@ -448,6 +472,7 @@ static const uint8_t has_quantifiers[NUM_SMT_LOGICS] = { true, // ANIRA true, // AUF true, // UFBV + true, // UFBVLIA true, // UFIDL true, // UFLIA true, // UFLRA @@ -457,6 +482,8 @@ static const uint8_t has_quantifiers[NUM_SMT_LOGICS] = { true, // UFNIRA true, // UFRDL true, // AUFBV + true, // AUFBVLIA + true, // AUFBVNIA true, // AUFLIA true, // AUFLRA true, // AUFLIRA @@ -484,6 +511,7 @@ static const uint8_t has_quantifiers[NUM_SMT_LOGICS] = { false, // QF_ANIRA false, // QF_AUF false, // QF_UFBV + false, // QF_UFBVLIA false, // QF_UFIDL false, // QF_UFLIA false, // QF_UFLRA @@ -493,6 +521,8 @@ static const uint8_t has_quantifiers[NUM_SMT_LOGICS] = { false, // QF_UFNIRA false, // QF_UFRDL false, // QF_AUFBV + false, // QF_AUFBVLIA + false, // QF_AUFBVNIA false, // QF_AUFLIA false, // QF_AUFLRA false, // QF_AUFLIRA @@ -526,6 +556,7 @@ static const uint8_t has_uf[NUM_SMT_LOGICS] = { false, // ANIRA true, // AUF true, // UFBV + true, // UFBVLIA true, // UFIDL true, // UFLIA true, // UFLRA @@ -535,6 +566,8 @@ static const uint8_t has_uf[NUM_SMT_LOGICS] = { true, // UFNIRA true, // UFRDL true, // AUFBV + true, // AUFBVLIA + true, // AUFBVNIA true, // AUFLIA true, // AUFLRA true, // AUFLIRA @@ -562,6 +595,7 @@ static const uint8_t has_uf[NUM_SMT_LOGICS] = { false, // QF_ANIRA true, // QF_AUF true, // QF_UFBV + true, // QF_UFBVLIA true, // QF_UFIDL true, // QF_UFLIA true, // QF_UFLRA @@ -571,6 +605,8 @@ static const uint8_t has_uf[NUM_SMT_LOGICS] = { true, // QF_UFNIRA true, // QF_UFRDL true, // QF_AUFBV + true, // QF_AUFBVLIA + true, // QF_AUFBVNIA true, // QF_AUFLIA true, // QF_AUFLRA true, // QF_AUFLIRA @@ -604,6 +640,7 @@ static const uint8_t arith_frag[NUM_SMT_LOGICS] = { ARITH_NIRA, // ANIRA ARITH_NONE, // AUF ARITH_NONE, // UFBV + ARITH_LIA, // UFBVLIA ARITH_IDL, // UFIDL ARITH_LIA, // UFLIA ARITH_LRA, // UFLRA @@ -613,6 +650,8 @@ static const uint8_t arith_frag[NUM_SMT_LOGICS] = { ARITH_NIRA, // UFNIRA ARITH_RDL, // UFRDL ARITH_NONE, // AUFBV + ARITH_LIA, // AUFBVLIA + ARITH_NIA, // AUFBVNIA ARITH_LIA, // AUFLIA ARITH_LRA, // AUFLRA ARITH_LIRA, // AUFLIRA @@ -640,6 +679,7 @@ static const uint8_t arith_frag[NUM_SMT_LOGICS] = { ARITH_NIRA, // QF_ANIRA ARITH_NONE, // QF_AUF ARITH_NONE, // QF_UFBV + ARITH_LIA, // QF_UFBVLIA ARITH_IDL, // QF_UFIDL ARITH_LIA, // QF_UFLIA ARITH_LRA, // QF_UFLRA @@ -649,6 +689,8 @@ static const uint8_t arith_frag[NUM_SMT_LOGICS] = { ARITH_NIRA, // QF_UFNIRA ARITH_RDL, // QF_UFRDL ARITH_NONE, // QF_AUFBV + ARITH_LIA, // QF_AUFBVLIA + ARITH_NIA, // QF_AUFBVNIA ARITH_LIA, // QF_AUFLIA ARITH_LRA, // QF_AUFLRA ARITH_LIRA, // QF_AUFLIRA @@ -723,6 +765,7 @@ static const smt_logic_t logic2qf[NUM_SMT_LOGICS] = { QF_ANIRA, QF_AUF, QF_UFBV, + QF_UFBVLIA, QF_UFIDL, QF_UFLIA, QF_UFLRA, @@ -732,6 +775,8 @@ static const smt_logic_t logic2qf[NUM_SMT_LOGICS] = { QF_UFNIRA, QF_UFRDL, QF_AUFBV, + QF_AUFBVLIA, + QF_AUFBVNIA, QF_AUFLIA, QF_AUFLRA, QF_AUFLIRA, @@ -762,6 +807,7 @@ static const smt_logic_t logic2qf[NUM_SMT_LOGICS] = { QF_ANIRA, QF_AUF, QF_UFBV, + QF_UFBVLIA, QF_UFIDL, QF_UFLIA, QF_UFLRA, @@ -771,6 +817,8 @@ static const smt_logic_t logic2qf[NUM_SMT_LOGICS] = { QF_UFNIRA, QF_UFRDL, QF_AUFBV, + QF_AUFBVLIA, + QF_AUFBVNIA, QF_AUFLIA, QF_AUFLRA, QF_AUFLIRA, @@ -791,6 +839,8 @@ smt_logic_t qf_fragment(smt_logic_t code) { * Which of these are officially recognized by our masters. * * - 2014/06/19: marked as 'official' everything in SMT-COMP 2014 + * + * - 2023/05/18: updated according to SMT-COMP 2022 */ static const bool is_official[NUM_SMT_LOGICS] = { false, // NONE @@ -806,28 +856,31 @@ static const bool is_official[NUM_SMT_LOGICS] = { false, // NIRA false, // RDL true, // UF - false, // ABV + true, // ABV true, // ALIA false, // ALRA false, // ALIRA - false, // ANIA + true, // ANIA false, // ANRA false, // ANIRA false, // AUF true, // UFBV + true, // UFBVLIA true, // UFIDL true, // UFLIA true, // UFLRA false, // UFLIRA true, // UFNIA - false, // UFNRA + true, // UFNRA false, // UFNIRA false, // UFRDL - false, // AUFBV + true, // AUFBV + false, // AUFBVLIA + false, // AUFBVNIA true, // AUFLIA false, // AUFLRA true, // AUFLIRA - false, // AUFNIA + true, // AUFNIA false, // AUFNRA true, // AUFNIRA @@ -836,21 +889,22 @@ static const bool is_official[NUM_SMT_LOGICS] = { true, // QF_IDL true, // QF_LIA true, // QF_LRA - false, // QF_LIRA + true, // QF_LIRA true, // QF_NIA true, // QF_NRA - false, // QF_NIRA + true, // QF_NIRA true, // QF_RDL true, // QF_UF true, // QF_ABV true, // QF_ALIA false, // QF_ALRA false, // QF_ALIRA - false, // QF_ANIA + true, // QF_ANIA false, // QF_ANRA false, // QF_ANIRA false, // QF_AUF true, // QF_UFBV + true, // QF_UFBVLIA true, // QF_UFIDL true, // QF_UFLIA true, // QF_UFLRA @@ -860,6 +914,8 @@ static const bool is_official[NUM_SMT_LOGICS] = { false, // QF_UFNIRA false, // QF_UFRDL true, // QF_AUFBV + true, // QF_AUFBVLIA + true, // QF_AUFBVNIA true, // QF_AUFLIA false, // QF_AUFLRA true, // QF_AUFLIRA diff --git a/src/api/smt_logic_codes.h b/src/api/smt_logic_codes.h index 66e87e459..0971d549c 100644 --- a/src/api/smt_logic_codes.h +++ b/src/api/smt_logic_codes.h @@ -55,6 +55,9 @@ * (except that we don't have AIDL and ARDL?). * * Then, for each logic, we have a quantifier-free variant. + * + * 05/18/2023: Add UF+BV+integer arithmetic + * -------------------------------------------------- */ typedef enum smt_logic { NONE, // added 12/27/2012 @@ -86,6 +89,7 @@ typedef enum smt_logic { // Uninterpreted function + another theory UFBV, // uninterpreted functions + bitvectors + UFBVLIA, // uninterpreted functions + bitvectors + linear integer arithmetic UFIDL, // uninterpreted functions + integer difference logic UFLIA, // uninterpreted functions + linear integer arithmetic UFLRA, // uninterpreted functions + linear real arithmetic @@ -97,6 +101,8 @@ typedef enum smt_logic { // Arrays + uninterpreted functions + another theory AUFBV, // arrays + uninterpreted functions + bitvectors + AUFBVLIA, // arrays + uninterpreted functions + bitvectors + linear integer arithmetic + AUFBVNIA, // arrays + uninterpreted functions + bitvectors + nonlinear integer arithmetic AUFLIA, // arrays + uninterpreted functions + linear integer arithmetic AUFLRA, // arrays + uninterpreted functions + linear real arithmetic AUFLIRA, // arrays + uninterpreted functions + mixed linear arithmetic @@ -131,6 +137,7 @@ typedef enum smt_logic { // Uninterpreted function + another theory QF_UFBV, // uninterpreted functions + bitvectors + QF_UFBVLIA, // uninterpreted functions + bitvectors + linear integer arithmetic QF_UFIDL, // uninterpreted functions + integer difference logic QF_UFLIA, // uninterpreted functions + linear integer arithmetic QF_UFLRA, // uninterpreted functions + linear real arithmetic @@ -142,6 +149,8 @@ typedef enum smt_logic { // Arrays + uninterpreted functions + another theory QF_AUFBV, // arrays + uninterpreted functions + bitvectors + QF_AUFBVLIA, // arrays + uninterpreted functions + bitvectors + linear integer arithmetic + QF_AUFBVNIA, // arrays + uninterpreted functions + bitvectors + nonlinear integer arithmetic QF_AUFLIA, // arrays + uninterpreted functions + linear integer arithmetic QF_AUFLRA, // arrays + uninterpreted functions + linear real arithmetic QF_AUFLIRA, // arrays + uninterpreted functions + mixed linear arithmetic diff --git a/src/include/yices.h b/src/include/yices.h index 8d42843b0..851db6003 100644 --- a/src/include/yices.h +++ b/src/include/yices.h @@ -2831,11 +2831,14 @@ __YICES_DLLSPEC__ extern int32_t yices_set_config(ctx_config_t *config, const ch * * QF_AUF: arrays + uninterpreted functions * QF_AUFBV: arrays, bitvectors, uninterpreted functions + * QF_AUFBVLIA: arrays, bitvectors, uninterpreted functions, and linear integer arithmetic + * QF_AUFBVNIA: arrays, bitvectors, uninterpreted functions, and nonlinear integer arithmetic * QF_AUFLIA: arrays, uninterpreted functions, and linear integer arithmetic * QF_AUFLRA: arrays, uninterpreted functions, and linear real arithmetic * QF_AUFLIRA: arrays, uninterpreted functions, and mixed linear arithmetic * * QF_UFBV: uninterpreted functions + bitvectors + * QF_UFBVLIA: uninterpreted functions + bitvectors + linear integer arithmetic * QF_UFIDL: uninterpreted functions + integer difference logic * QF_UFLIA: uninterpreted functions + linear integer arithmetic * QF_UFLRA: uninterpreted functions + linear real arithmetic diff --git a/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2 b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2 new file mode 100644 index 000000000..47bd2d6a0 --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2 @@ -0,0 +1,1806 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_AUFBVLIA) +(set-info :source | +Generated by: SoSy-Lab +Generated on: 2019-03-07 +Generator: CPAchecker 1.8-svn 30724 using kInduction +Application: Software Verification for programs written in C +Target solver: MathSAT5 +|) +(set-info :license "https://www.gnu.org/licenses/gpl-2.0.html") +(set-info :category "industrial") +(set-info :status unsat) + +(push 1) +(define-fun _2 () Bool false) +(assert _2) +(check-sat) +(pop 1) +(push 1) +(declare-fun __string__ (Int) (_ BitVec 64)) +(declare-fun __ADDRESS_OF_btc_dbg_type@ () (_ BitVec 64)) +(declare-fun *int@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun __ADDRESS_OF_glcoex_dm_8723b_2ant@ () (_ BitVec 64)) +(declare-fun *_Bool@1 () (Array (_ BitVec 64) (_ BitVec 8))) +(declare-fun *char@1 () (Array (_ BitVec 64) (_ BitVec 8))) +(declare-fun *short_int@1 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun coex_dm@2 () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_glcoex_sta_8723b_2ant@ () (_ BitVec 64)) +(declare-fun coex_sta@2 () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_glbt_info_src_8723b_2ant@ () (_ BitVec 64)) +(declare-fun |*(char)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun glcoex_ver_date_8723b_2ant@2 () (_ BitVec 32)) +(declare-fun glcoex_ver_8723b_2ant@2 () (_ BitVec 32)) +(declare-fun __ADDRESS_OF_gl_bt_coexist@ () (_ BitVec 64)) +(declare-fun |*(void)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[char],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[char],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_Parameter_4_type:_[char],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[short_int],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[short_int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[int],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_5,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[int],_Parameter_5_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[int],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[(char)*],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[_Bool],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[(void)*],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun __ADDRESS_OF_btc_dbg_buf@ () (_ BitVec 64)) +(declare-fun ldv_state_variable_1@2 () (_ BitVec 32)) +(declare-fun rtl_btc_operation_group0@2 () (_ BitVec 64)) +(declare-fun ref_cnt@2 () (_ BitVec 32)) +(declare-fun ldv_state_variable_0@2 () (_ BitVec 32)) +(declare-fun __ADDRESS_OF_rtl_btc_operation@ () (_ BitVec 64)) +(declare-fun __ADDRESS_OF___kstrtab_rtl_btc_get_ops_pointer@ () (_ BitVec 64)) +(declare-fun ldv_retval_0@2 () (_ BitVec 32)) +(declare-fun __ADDRESS_OF_set_impl@ () (_ BitVec 64)) +(declare-fun last_index@2 () (_ BitVec 32)) +(declare-fun |__ADDRESS_OF_main::ldvarg4@| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_u8@2 () (_ BitVec 8)) +(declare-fun |main::tmp@3| () (_ BitVec 8)) +(declare-fun |main::ldvarg1@3| () (_ BitVec 8)) +(declare-fun __VERIFIER_nondet_u8@3 () (_ BitVec 8)) +(declare-fun |main::tmp___0@3| () (_ BitVec 8)) +(declare-fun |main::ldvarg3@3| () (_ BitVec 8)) +(declare-fun __VERIFIER_nondet_u8@4 () (_ BitVec 8)) +(declare-fun |main::tmp___1@3| () (_ BitVec 8)) +(declare-fun |main::ldvarg0@3| () (_ BitVec 8)) +(declare-fun __VERIFIER_nondet_u8@5 () (_ BitVec 8)) +(declare-fun |main::tmp___2@3| () (_ BitVec 8)) +(declare-fun |main::ldvarg5@3| () (_ BitVec 8)) +(declare-fun |ldv_zalloc::size@2| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_int@2 () (_ BitVec 32)) +(declare-fun |ldv_zalloc::tmp___0@3| () (_ BitVec 32)) +(declare-fun calloc@2 () (_ BitVec 64)) +(declare-fun |__ADDRESS_OF___VERIFIER_successful_zalloc_*void#1@| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::tmp@3| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::p@3| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::__retval__@2| () (_ BitVec 64)) +(declare-fun calloc@1 () (_ BitVec 64)) +(declare-fun |ldv_zalloc::p@2| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::tmp@2| () (_ BitVec 64)) +(declare-fun |main::tmp___3@3| () (_ BitVec 64)) +(declare-fun |main::ldvarg2@3| () (_ BitVec 64)) +(declare-fun last_index@3 () (_ BitVec 32)) +(declare-fun *enum__RT_MEDIA_STATUS@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |main::ldvarg4@2| () (_ BitVec 32)) +(declare-fun ldv_state_variable_1@3 () (_ BitVec 32)) +(declare-fun ref_cnt@3 () (_ BitVec 32)) +(declare-fun ldv_state_variable_0@3 () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@3 () (_ BitVec 32)) +(declare-fun |main::tmp___4@3| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@4 () (_ BitVec 32)) +(declare-fun |main::tmp___6@3| () (_ BitVec 32)) +(declare-fun |rtl_btcoexist_module_init::__retval__@2| () (_ BitVec 32)) +(declare-fun ldv_retval_0@3 () (_ BitVec 32)) +(declare-fun ldv_state_variable_0@4 () (_ BitVec 32)) +(declare-fun ldv_state_variable_1@4 () (_ BitVec 32)) +(declare-fun |ldv_zalloc::size@3| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_int@5 () (_ BitVec 32)) +(declare-fun |ldv_zalloc::tmp___0@5| () (_ BitVec 32)) +(declare-fun calloc@3 () (_ BitVec 64)) +(declare-fun |__ADDRESS_OF___VERIFIER_successful_zalloc_*void#2@| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::tmp@5| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::p@5| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::__retval__@3| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::p@4| () (_ BitVec 64)) +(declare-fun |ldv_zalloc::tmp@4| () (_ BitVec 64)) +(declare-fun |ldv_initialize_rtl_btc_ops_1::tmp@3| () (_ BitVec 64)) +(declare-fun |*(struct_ieee80211_hw)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun *enum_nl80211_iftype@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun *enum_rtl_link_state@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[char],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[short_int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[char],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[short_int],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[int],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun *long_int@1 () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun *enum_rt_enc_alg@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun *long_long_int@1 () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(struct_rtl_hal_cfg)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun rtl_btc_operation_group0@3 () (_ BitVec 64)) +(declare-fun |ldv_initialize_rtl_btc_ops_1::tmp@1| () (_ BitVec 64)) +(declare-fun |rtl_btcoexist_module_init::__retval__@1| () (_ BitVec 32)) +(declare-fun |main::tmp___6@2| () (_ BitVec 32)) +(define-fun _8 () (_ BitVec 64) (_ bv0 64)) +(define-fun _9 () (_ BitVec 64) (_ bv8 64)) +(define-fun _10 () (_ BitVec 64) __ADDRESS_OF_btc_dbg_type@) +(define-fun _11 () Bool (bvslt _8 _10)) +(define-fun _13 () (_ BitVec 64) (bvadd _9 _10)) +(define-fun _14 () Bool (bvslt _8 _13)) +(define-fun _15 () (_ BitVec 32) (_ bv0 32)) +(define-fun _16 () (_ BitVec 64) (_ bv4 64)) +(define-fun _19 () (Array (_ BitVec 64) (_ BitVec 32)) *int@1) +(define-fun _20 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _10 _15)) +(define-fun _21 () Bool (= _19 _20)) +(define-fun _22 () (_ BitVec 32) (_ bv1 32)) +(define-fun _23 () (_ BitVec 64) (_ bv1 64)) +(define-fun _25 () (_ BitVec 64) (bvadd _16 _10)) +(define-fun _26 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _25 _15)) +(define-fun _27 () Bool (= _19 _26)) +(define-fun _28 () Bool (and _21 _27)) +(define-fun _29 () Bool (and _11 _14)) +(define-fun _30 () Bool (and _28 _29)) +(define-fun _31 () (_ BitVec 64) (_ bv84 64)) +(define-fun _32 () (_ BitVec 64) __ADDRESS_OF_glcoex_dm_8723b_2ant@) +(define-fun _33 () Bool (bvslt _13 _32)) +(define-fun _35 () (_ BitVec 64) (bvadd _31 _32)) +(define-fun _36 () Bool (bvslt _8 _35)) +(define-fun _37 () (_ BitVec 8) (_ bv0 8)) +(define-fun _40 () (Array (_ BitVec 64) (_ BitVec 8)) *_Bool@1) +(define-fun _41 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _32 _37)) +(define-fun _42 () Bool (= _40 _41)) +(define-fun _44 () (_ BitVec 64) (bvadd _23 _32)) +(define-fun _45 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _44 _37)) +(define-fun _46 () Bool (= _40 _45)) +(define-fun _47 () Bool (and _42 _46)) +(define-fun _48 () (_ BitVec 64) (_ bv2 64)) +(define-fun _50 () (_ BitVec 64) (bvadd _48 _32)) +(define-fun _51 () (Array (_ BitVec 64) (_ BitVec 8)) *char@1) +(define-fun _52 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _50 _37)) +(define-fun _53 () Bool (= _51 _52)) +(define-fun _54 () Bool (and _47 _53)) +(define-fun _55 () (_ BitVec 64) (_ bv3 64)) +(define-fun _57 () (_ BitVec 64) (bvadd _55 _32)) +(define-fun _58 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _57 _37)) +(define-fun _59 () Bool (= _51 _58)) +(define-fun _60 () Bool (and _54 _59)) +(define-fun _62 () (_ BitVec 64) (bvadd _16 _32)) +(define-fun _63 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _62 _37)) +(define-fun _64 () Bool (= _40 _63)) +(define-fun _65 () Bool (and _60 _64)) +(define-fun _66 () (_ BitVec 64) (_ bv5 64)) +(define-fun _68 () (_ BitVec 64) (bvadd _66 _32)) +(define-fun _69 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _68 _37)) +(define-fun _70 () Bool (= _40 _69)) +(define-fun _71 () Bool (and _65 _70)) +(define-fun _72 () (_ BitVec 64) (_ bv6 64)) +(define-fun _74 () (_ BitVec 64) (bvadd _72 _32)) +(define-fun _75 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _74 _37)) +(define-fun _76 () Bool (= _51 _75)) +(define-fun _77 () Bool (and _71 _76)) +(define-fun _78 () (_ BitVec 64) (_ bv7 64)) +(define-fun _80 () (_ BitVec 64) (bvadd _78 _32)) +(define-fun _81 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _80 _37)) +(define-fun _82 () Bool (= _51 _81)) +(define-fun _83 () Bool (and _77 _82)) +(define-fun _85 () (_ BitVec 64) (bvadd _9 _32)) +(define-fun _88 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _85 _37)) +(define-fun _89 () Bool (= _51 _88)) +(define-fun _90 () Bool (and _83 _89)) +(define-fun _93 () (_ BitVec 64) (_ bv9 64)) +(define-fun _94 () (_ BitVec 64) (bvadd _93 _32)) +(define-fun _95 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _94 _37)) +(define-fun _96 () Bool (= _51 _95)) +(define-fun _97 () Bool (and _90 _96)) +(define-fun _101 () (_ BitVec 64) (_ bv10 64)) +(define-fun _102 () (_ BitVec 64) (bvadd _101 _32)) +(define-fun _103 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _102 _37)) +(define-fun _104 () Bool (= _51 _103)) +(define-fun _105 () Bool (and _97 _104)) +(define-fun _106 () (_ BitVec 32) (_ bv3 32)) +(define-fun _109 () (_ BitVec 64) (_ bv11 64)) +(define-fun _110 () (_ BitVec 64) (bvadd _109 _32)) +(define-fun _111 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _110 _37)) +(define-fun _112 () Bool (= _51 _111)) +(define-fun _113 () Bool (and _105 _112)) +(define-fun _117 () (_ BitVec 64) (_ bv12 64)) +(define-fun _118 () (_ BitVec 64) (bvadd _117 _32)) +(define-fun _119 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _118 _37)) +(define-fun _120 () Bool (= _51 _119)) +(define-fun _121 () Bool (and _113 _120)) +(define-fun _122 () (_ BitVec 64) (_ bv13 64)) +(define-fun _124 () (_ BitVec 64) (bvadd _122 _32)) +(define-fun _125 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _124 _37)) +(define-fun _126 () Bool (= _51 _125)) +(define-fun _127 () Bool (and _121 _126)) +(define-fun _128 () (_ BitVec 64) (_ bv15 64)) +(define-fun _130 () (_ BitVec 64) (bvadd _128 _32)) +(define-fun _131 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _130 _37)) +(define-fun _132 () Bool (= _40 _131)) +(define-fun _133 () Bool (and _127 _132)) +(define-fun _134 () (_ BitVec 64) (_ bv16 64)) +(define-fun _136 () (_ BitVec 64) (bvadd _134 _32)) +(define-fun _137 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _136 _37)) +(define-fun _138 () Bool (= _40 _137)) +(define-fun _139 () Bool (and _133 _138)) +(define-fun _140 () (_ BitVec 64) (_ bv17 64)) +(define-fun _142 () (_ BitVec 64) (bvadd _140 _32)) +(define-fun _143 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _142 _37)) +(define-fun _144 () Bool (= _40 _143)) +(define-fun _145 () Bool (and _139 _144)) +(define-fun _146 () (_ BitVec 64) (_ bv20 64)) +(define-fun _148 () (_ BitVec 64) (bvadd _146 _32)) +(define-fun _149 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _148 _37)) +(define-fun _150 () Bool (= _40 _149)) +(define-fun _151 () Bool (and _145 _150)) +(define-fun _152 () (_ BitVec 64) (_ bv21 64)) +(define-fun _154 () (_ BitVec 64) (bvadd _152 _32)) +(define-fun _155 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _154 _37)) +(define-fun _156 () Bool (= _40 _155)) +(define-fun _157 () Bool (and _151 _156)) +(define-fun _158 () (_ BitVec 64) (_ bv24 64)) +(define-fun _160 () (_ BitVec 64) (bvadd _158 _32)) +(define-fun _161 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _160 _15)) +(define-fun _162 () Bool (= _19 _161)) +(define-fun _163 () Bool (and _157 _162)) +(define-fun _164 () (_ BitVec 64) (_ bv28 64)) +(define-fun _166 () (_ BitVec 64) (bvadd _164 _32)) +(define-fun _167 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _166 _37)) +(define-fun _168 () Bool (= _40 _167)) +(define-fun _169 () Bool (and _163 _168)) +(define-fun _170 () (_ BitVec 64) (_ bv29 64)) +(define-fun _172 () (_ BitVec 64) (bvadd _170 _32)) +(define-fun _173 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _172 _37)) +(define-fun _174 () Bool (= _40 _173)) +(define-fun _175 () Bool (and _169 _174)) +(define-fun _176 () (_ BitVec 64) (_ bv30 64)) +(define-fun _178 () (_ BitVec 64) (bvadd _176 _32)) +(define-fun _179 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _178 _37)) +(define-fun _180 () Bool (= _40 _179)) +(define-fun _181 () Bool (and _175 _180)) +(define-fun _182 () (_ BitVec 64) (_ bv32 64)) +(define-fun _184 () (_ BitVec 64) (bvadd _182 _32)) +(define-fun _185 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _184 _15)) +(define-fun _186 () Bool (= _19 _185)) +(define-fun _187 () Bool (and _181 _186)) +(define-fun _188 () (_ BitVec 64) (_ bv36 64)) +(define-fun _190 () (_ BitVec 64) (bvadd _188 _32)) +(define-fun _191 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _190 _37)) +(define-fun _192 () Bool (= _40 _191)) +(define-fun _193 () Bool (and _187 _192)) +(define-fun _194 () (_ BitVec 64) (_ bv40 64)) +(define-fun _196 () (_ BitVec 64) (bvadd _194 _32)) +(define-fun _197 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _196 _15)) +(define-fun _198 () Bool (= _19 _197)) +(define-fun _199 () Bool (and _193 _198)) +(define-fun _200 () (_ BitVec 64) (_ bv45 64)) +(define-fun _202 () (_ BitVec 64) (bvadd _200 _32)) +(define-fun _203 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _202 _37)) +(define-fun _204 () Bool (= _40 _203)) +(define-fun _205 () Bool (and _199 _204)) +(define-fun _206 () (_ BitVec 64) (_ bv46 64)) +(define-fun _208 () (_ BitVec 64) (bvadd _206 _32)) +(define-fun _209 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _208 _37)) +(define-fun _210 () Bool (= _40 _209)) +(define-fun _211 () Bool (and _205 _210)) +(define-fun _212 () (_ BitVec 64) (_ bv47 64)) +(define-fun _214 () (_ BitVec 64) (bvadd _212 _32)) +(define-fun _215 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _214 _37)) +(define-fun _216 () Bool (= _40 _215)) +(define-fun _217 () Bool (and _211 _216)) +(define-fun _218 () (_ BitVec 64) (_ bv48 64)) +(define-fun _220 () (_ BitVec 64) (bvadd _218 _32)) +(define-fun _221 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _220 _15)) +(define-fun _222 () Bool (= _19 _221)) +(define-fun _223 () Bool (and _217 _222)) +(define-fun _224 () (_ BitVec 64) (_ bv52 64)) +(define-fun _226 () (_ BitVec 64) (bvadd _224 _32)) +(define-fun _227 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _226 _15)) +(define-fun _228 () Bool (= _19 _227)) +(define-fun _229 () Bool (and _223 _228)) +(define-fun _230 () (_ BitVec 64) (_ bv56 64)) +(define-fun _232 () (_ BitVec 64) (bvadd _230 _32)) +(define-fun _233 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _232 _15)) +(define-fun _234 () Bool (= _19 _233)) +(define-fun _235 () Bool (and _229 _234)) +(define-fun _236 () (_ BitVec 64) (_ bv60 64)) +(define-fun _238 () (_ BitVec 64) (bvadd _236 _32)) +(define-fun _239 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _238 _15)) +(define-fun _240 () Bool (= _19 _239)) +(define-fun _241 () Bool (and _235 _240)) +(define-fun _242 () (_ BitVec 64) (_ bv64 64)) +(define-fun _244 () (_ BitVec 64) (bvadd _242 _32)) +(define-fun _245 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _244 _15)) +(define-fun _246 () Bool (= _19 _245)) +(define-fun _247 () Bool (and _241 _246)) +(define-fun _248 () (_ BitVec 64) (_ bv68 64)) +(define-fun _250 () (_ BitVec 64) (bvadd _248 _32)) +(define-fun _251 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _250 _15)) +(define-fun _252 () Bool (= _19 _251)) +(define-fun _253 () Bool (and _247 _252)) +(define-fun _254 () (_ BitVec 64) (_ bv72 64)) +(define-fun _256 () (_ BitVec 64) (bvadd _254 _32)) +(define-fun _257 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _256 _37)) +(define-fun _258 () Bool (= _51 _257)) +(define-fun _259 () Bool (and _253 _258)) +(define-fun _260 () (_ BitVec 64) (_ bv73 64)) +(define-fun _262 () (_ BitVec 64) (bvadd _260 _32)) +(define-fun _263 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _262 _37)) +(define-fun _264 () Bool (= _51 _263)) +(define-fun _265 () Bool (and _259 _264)) +(define-fun _266 () (_ BitVec 64) (_ bv74 64)) +(define-fun _268 () (_ BitVec 64) (bvadd _266 _32)) +(define-fun _269 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _268 _37)) +(define-fun _270 () Bool (= _40 _269)) +(define-fun _271 () Bool (and _265 _270)) +(define-fun _272 () (_ BitVec 64) (_ bv75 64)) +(define-fun _274 () (_ BitVec 64) (bvadd _272 _32)) +(define-fun _275 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _274 _37)) +(define-fun _276 () Bool (= _51 _275)) +(define-fun _277 () Bool (and _271 _276)) +(define-fun _278 () (_ BitVec 64) (_ bv76 64)) +(define-fun _280 () (_ BitVec 64) (bvadd _278 _32)) +(define-fun _281 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _280 _37)) +(define-fun _282 () Bool (= _51 _281)) +(define-fun _283 () Bool (and _277 _282)) +(define-fun _284 () (_ BitVec 64) (_ bv77 64)) +(define-fun _286 () (_ BitVec 64) (bvadd _284 _32)) +(define-fun _287 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _286 _37)) +(define-fun _288 () Bool (= _51 _287)) +(define-fun _289 () Bool (and _283 _288)) +(define-fun _290 () (_ BitVec 64) (_ bv78 64)) +(define-fun _292 () (_ BitVec 64) (bvadd _290 _32)) +(define-fun _295 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _292 _37)) +(define-fun _296 () Bool (= _51 _295)) +(define-fun _297 () Bool (and _289 _296)) +(define-fun _300 () (_ BitVec 64) (_ bv79 64)) +(define-fun _301 () (_ BitVec 64) (bvadd _300 _32)) +(define-fun _302 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _301 _37)) +(define-fun _303 () Bool (= _51 _302)) +(define-fun _304 () Bool (and _297 _303)) +(define-fun _307 () (_ BitVec 64) (_ bv80 64)) +(define-fun _308 () (_ BitVec 64) (bvadd _307 _32)) +(define-fun _309 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _308 _37)) +(define-fun _310 () Bool (= _51 _309)) +(define-fun _311 () Bool (and _304 _310)) +(define-fun _312 () (_ BitVec 64) (_ bv81 64)) +(define-fun _314 () (_ BitVec 64) (bvadd _312 _32)) +(define-fun _315 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _314 _37)) +(define-fun _316 () Bool (= _40 _315)) +(define-fun _317 () Bool (and _311 _316)) +(define-fun _318 () (_ BitVec 16) (_ bv0 16)) +(define-fun _319 () (_ BitVec 64) (_ bv82 64)) +(define-fun _321 () (_ BitVec 64) (bvadd _319 _32)) +(define-fun _322 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@1) +(define-fun _323 () (Array (_ BitVec 64) (_ BitVec 16)) (store _322 _321 _318)) +(define-fun _324 () Bool (= _322 _323)) +(define-fun _325 () Bool (and _317 _324)) +(define-fun _326 () Bool (and _33 _36)) +(define-fun _327 () Bool (and _325 _326)) +(define-fun _328 () Bool (and _30 _327)) +(define-fun _329 () (_ BitVec 64) coex_dm@2) +(define-fun _330 () Bool (= _32 _329)) +(define-fun _331 () Bool (and _328 _330)) +(define-fun _332 () (_ BitVec 64) __ADDRESS_OF_glcoex_sta_8723b_2ant@) +(define-fun _333 () Bool (bvslt _35 _332)) +(define-fun _335 () (_ BitVec 64) (bvadd _307 _332)) +(define-fun _336 () Bool (bvslt _8 _335)) +(define-fun _339 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _332 _37)) +(define-fun _340 () Bool (= _40 _339)) +(define-fun _342 () (_ BitVec 64) (bvadd _23 _332)) +(define-fun _343 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _342 _37)) +(define-fun _344 () Bool (= _40 _343)) +(define-fun _345 () Bool (and _340 _344)) +(define-fun _347 () (_ BitVec 64) (bvadd _48 _332)) +(define-fun _348 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _347 _37)) +(define-fun _349 () Bool (= _40 _348)) +(define-fun _350 () Bool (and _345 _349)) +(define-fun _352 () (_ BitVec 64) (bvadd _55 _332)) +(define-fun _353 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _352 _37)) +(define-fun _354 () Bool (= _40 _353)) +(define-fun _355 () Bool (and _350 _354)) +(define-fun _357 () (_ BitVec 64) (bvadd _16 _332)) +(define-fun _358 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _357 _37)) +(define-fun _359 () Bool (= _40 _358)) +(define-fun _360 () Bool (and _355 _359)) +(define-fun _362 () (_ BitVec 64) (bvadd _66 _332)) +(define-fun _363 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _362 _37)) +(define-fun _364 () Bool (= _40 _363)) +(define-fun _365 () Bool (and _360 _364)) +(define-fun _367 () (_ BitVec 64) (bvadd _72 _332)) +(define-fun _368 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _367 _37)) +(define-fun _369 () Bool (= _40 _368)) +(define-fun _370 () Bool (and _365 _369)) +(define-fun _372 () (_ BitVec 64) (bvadd _9 _332)) +(define-fun _373 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _372 _15)) +(define-fun _374 () Bool (= _19 _373)) +(define-fun _375 () Bool (and _370 _374)) +(define-fun _377 () (_ BitVec 64) (bvadd _117 _332)) +(define-fun _378 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _377 _15)) +(define-fun _379 () Bool (= _19 _378)) +(define-fun _380 () Bool (and _375 _379)) +(define-fun _382 () (_ BitVec 64) (bvadd _134 _332)) +(define-fun _383 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _382 _15)) +(define-fun _384 () Bool (= _19 _383)) +(define-fun _385 () Bool (and _380 _384)) +(define-fun _387 () (_ BitVec 64) (bvadd _146 _332)) +(define-fun _388 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _387 _15)) +(define-fun _389 () Bool (= _19 _388)) +(define-fun _390 () Bool (and _385 _389)) +(define-fun _392 () (_ BitVec 64) (bvadd _158 _332)) +(define-fun _393 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _392 _37)) +(define-fun _394 () Bool (= _51 _393)) +(define-fun _395 () Bool (and _390 _394)) +(define-fun _396 () (_ BitVec 64) (_ bv25 64)) +(define-fun _398 () (_ BitVec 64) (bvadd _396 _332)) +(define-fun _399 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _398 _37)) +(define-fun _400 () Bool (= _51 _399)) +(define-fun _401 () Bool (and _395 _400)) +(define-fun _402 () (_ BitVec 64) (_ bv26 64)) +(define-fun _404 () (_ BitVec 64) (bvadd _402 _332)) +(define-fun _407 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _404 _37)) +(define-fun _408 () Bool (= _51 _407)) +(define-fun _409 () Bool (and _401 _408)) +(define-fun _412 () (_ BitVec 64) (_ bv27 64)) +(define-fun _413 () (_ BitVec 64) (bvadd _412 _332)) +(define-fun _414 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _413 _37)) +(define-fun _415 () Bool (= _51 _414)) +(define-fun _416 () Bool (and _409 _415)) +(define-fun _419 () (_ BitVec 64) (bvadd _164 _332)) +(define-fun _420 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _419 _37)) +(define-fun _421 () Bool (= _51 _420)) +(define-fun _422 () Bool (and _416 _421)) +(define-fun _425 () (_ BitVec 64) (bvadd _170 _332)) +(define-fun _426 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _425 _37)) +(define-fun _427 () Bool (= _51 _426)) +(define-fun _428 () Bool (and _422 _427)) +(define-fun _429 () (_ BitVec 64) (_ bv31 64)) +(define-fun _431 () (_ BitVec 64) (bvadd _429 _332)) +(define-fun _434 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _431 _37)) +(define-fun _435 () Bool (= _51 _434)) +(define-fun _436 () Bool (and _428 _435)) +(define-fun _439 () (_ BitVec 64) (bvadd _182 _332)) +(define-fun _440 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _439 _37)) +(define-fun _441 () Bool (= _51 _440)) +(define-fun _442 () Bool (and _436 _441)) +(define-fun _445 () (_ BitVec 64) (_ bv33 64)) +(define-fun _446 () (_ BitVec 64) (bvadd _445 _332)) +(define-fun _447 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _446 _37)) +(define-fun _448 () Bool (= _51 _447)) +(define-fun _449 () Bool (and _442 _448)) +(define-fun _452 () (_ BitVec 64) (_ bv34 64)) +(define-fun _453 () (_ BitVec 64) (bvadd _452 _332)) +(define-fun _454 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _453 _37)) +(define-fun _455 () Bool (= _51 _454)) +(define-fun _456 () Bool (and _449 _455)) +(define-fun _459 () (_ BitVec 64) (_ bv35 64)) +(define-fun _460 () (_ BitVec 64) (bvadd _459 _332)) +(define-fun _461 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _460 _37)) +(define-fun _462 () Bool (= _51 _461)) +(define-fun _463 () Bool (and _456 _462)) +(define-fun _467 () (_ BitVec 64) (bvadd _188 _332)) +(define-fun _468 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _467 _37)) +(define-fun _469 () Bool (= _51 _468)) +(define-fun _470 () Bool (and _463 _469)) +(define-fun _474 () (_ BitVec 64) (_ bv37 64)) +(define-fun _475 () (_ BitVec 64) (bvadd _474 _332)) +(define-fun _476 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _475 _37)) +(define-fun _477 () Bool (= _51 _476)) +(define-fun _478 () Bool (and _470 _477)) +(define-fun _482 () (_ BitVec 64) (_ bv38 64)) +(define-fun _483 () (_ BitVec 64) (bvadd _482 _332)) +(define-fun _484 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _483 _37)) +(define-fun _485 () Bool (= _51 _484)) +(define-fun _486 () Bool (and _478 _485)) +(define-fun _490 () (_ BitVec 64) (_ bv39 64)) +(define-fun _491 () (_ BitVec 64) (bvadd _490 _332)) +(define-fun _492 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _491 _37)) +(define-fun _493 () Bool (= _51 _492)) +(define-fun _494 () Bool (and _486 _493)) +(define-fun _498 () (_ BitVec 64) (bvadd _194 _332)) +(define-fun _499 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _498 _37)) +(define-fun _500 () Bool (= _51 _499)) +(define-fun _501 () Bool (and _494 _500)) +(define-fun _504 () (_ BitVec 64) (_ bv41 64)) +(define-fun _505 () (_ BitVec 64) (bvadd _504 _332)) +(define-fun _508 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _505 _37)) +(define-fun _509 () Bool (= _51 _508)) +(define-fun _510 () Bool (and _501 _509)) +(define-fun _513 () (_ BitVec 64) (_ bv42 64)) +(define-fun _514 () (_ BitVec 64) (bvadd _513 _332)) +(define-fun _515 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _514 _37)) +(define-fun _516 () Bool (= _51 _515)) +(define-fun _517 () Bool (and _510 _516)) +(define-fun _520 () (_ BitVec 64) (_ bv43 64)) +(define-fun _521 () (_ BitVec 64) (bvadd _520 _332)) +(define-fun _522 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _521 _37)) +(define-fun _523 () Bool (= _51 _522)) +(define-fun _524 () Bool (and _517 _523)) +(define-fun _527 () (_ BitVec 64) (_ bv44 64)) +(define-fun _528 () (_ BitVec 64) (bvadd _527 _332)) +(define-fun _529 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _528 _37)) +(define-fun _530 () Bool (= _51 _529)) +(define-fun _531 () Bool (and _524 _530)) +(define-fun _534 () (_ BitVec 64) (bvadd _200 _332)) +(define-fun _535 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _534 _37)) +(define-fun _536 () Bool (= _51 _535)) +(define-fun _537 () Bool (and _531 _536)) +(define-fun _540 () (_ BitVec 64) (bvadd _206 _332)) +(define-fun _541 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _540 _37)) +(define-fun _542 () Bool (= _51 _541)) +(define-fun _543 () Bool (and _537 _542)) +(define-fun _546 () (_ BitVec 64) (bvadd _212 _332)) +(define-fun _547 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _546 _37)) +(define-fun _548 () Bool (= _51 _547)) +(define-fun _549 () Bool (and _543 _548)) +(define-fun _552 () (_ BitVec 64) (bvadd _218 _332)) +(define-fun _553 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _552 _37)) +(define-fun _554 () Bool (= _51 _553)) +(define-fun _555 () Bool (and _549 _554)) +(define-fun _558 () (_ BitVec 64) (_ bv49 64)) +(define-fun _559 () (_ BitVec 64) (bvadd _558 _332)) +(define-fun _560 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _559 _37)) +(define-fun _561 () Bool (= _51 _560)) +(define-fun _562 () Bool (and _555 _561)) +(define-fun _565 () (_ BitVec 64) (_ bv50 64)) +(define-fun _566 () (_ BitVec 64) (bvadd _565 _332)) +(define-fun _567 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _566 _37)) +(define-fun _568 () Bool (= _51 _567)) +(define-fun _569 () Bool (and _562 _568)) +(define-fun _572 () (_ BitVec 64) (_ bv51 64)) +(define-fun _573 () (_ BitVec 64) (bvadd _572 _332)) +(define-fun _576 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _573 _37)) +(define-fun _577 () Bool (= _51 _576)) +(define-fun _578 () Bool (and _569 _577)) +(define-fun _581 () (_ BitVec 64) (bvadd _224 _332)) +(define-fun _582 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _581 _37)) +(define-fun _583 () Bool (= _51 _582)) +(define-fun _584 () Bool (and _578 _583)) +(define-fun _587 () (_ BitVec 64) (_ bv53 64)) +(define-fun _588 () (_ BitVec 64) (bvadd _587 _332)) +(define-fun _589 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _588 _37)) +(define-fun _590 () Bool (= _51 _589)) +(define-fun _591 () Bool (and _584 _590)) +(define-fun _594 () (_ BitVec 64) (_ bv54 64)) +(define-fun _595 () (_ BitVec 64) (bvadd _594 _332)) +(define-fun _596 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _595 _37)) +(define-fun _597 () Bool (= _51 _596)) +(define-fun _598 () Bool (and _591 _597)) +(define-fun _601 () (_ BitVec 64) (_ bv55 64)) +(define-fun _602 () (_ BitVec 64) (bvadd _601 _332)) +(define-fun _603 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _602 _37)) +(define-fun _604 () Bool (= _51 _603)) +(define-fun _605 () Bool (and _598 _604)) +(define-fun _608 () (_ BitVec 64) (bvadd _230 _332)) +(define-fun _609 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _608 _37)) +(define-fun _610 () Bool (= _51 _609)) +(define-fun _611 () Bool (and _605 _610)) +(define-fun _614 () (_ BitVec 64) (_ bv57 64)) +(define-fun _615 () (_ BitVec 64) (bvadd _614 _332)) +(define-fun _616 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _615 _37)) +(define-fun _617 () Bool (= _51 _616)) +(define-fun _618 () Bool (and _611 _617)) +(define-fun _621 () (_ BitVec 64) (_ bv58 64)) +(define-fun _622 () (_ BitVec 64) (bvadd _621 _332)) +(define-fun _623 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _622 _37)) +(define-fun _624 () Bool (= _51 _623)) +(define-fun _625 () Bool (and _618 _624)) +(define-fun _628 () (_ BitVec 64) (_ bv59 64)) +(define-fun _629 () (_ BitVec 64) (bvadd _628 _332)) +(define-fun _630 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _629 _37)) +(define-fun _631 () Bool (= _51 _630)) +(define-fun _632 () Bool (and _625 _631)) +(define-fun _635 () (_ BitVec 64) (bvadd _236 _332)) +(define-fun _636 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _635 _37)) +(define-fun _637 () Bool (= _51 _636)) +(define-fun _638 () Bool (and _632 _637)) +(define-fun _640 () (_ BitVec 64) (bvadd _242 _332)) +(define-fun _643 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _640 _15)) +(define-fun _644 () Bool (= _19 _643)) +(define-fun _645 () Bool (and _638 _644)) +(define-fun _648 () (_ BitVec 64) (bvadd _248 _332)) +(define-fun _649 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _648 _15)) +(define-fun _650 () Bool (= _19 _649)) +(define-fun _651 () Bool (and _645 _650)) +(define-fun _654 () (_ BitVec 64) (bvadd _254 _332)) +(define-fun _655 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _654 _15)) +(define-fun _656 () Bool (= _19 _655)) +(define-fun _657 () Bool (and _651 _656)) +(define-fun _659 () (_ BitVec 64) (bvadd _278 _332)) +(define-fun _660 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _659 _37)) +(define-fun _661 () Bool (= _40 _660)) +(define-fun _662 () Bool (and _657 _661)) +(define-fun _664 () (_ BitVec 64) (bvadd _284 _332)) +(define-fun _665 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _664 _37)) +(define-fun _666 () Bool (= _51 _665)) +(define-fun _667 () Bool (and _662 _666)) +(define-fun _669 () (_ BitVec 64) (bvadd _290 _332)) +(define-fun _670 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _669 _37)) +(define-fun _671 () Bool (= _51 _670)) +(define-fun _672 () Bool (and _667 _671)) +(define-fun _673 () Bool (and _333 _336)) +(define-fun _674 () Bool (and _672 _673)) +(define-fun _675 () Bool (and _331 _674)) +(define-fun _676 () (_ BitVec 64) coex_sta@2) +(define-fun _677 () Bool (= _332 _676)) +(define-fun _678 () Bool (and _675 _677)) +(define-fun _679 () (_ BitVec 64) __ADDRESS_OF_glbt_info_src_8723b_2ant@) +(define-fun _680 () Bool (bvslt _335 _679)) +(define-fun _682 () (_ BitVec 64) (bvadd _158 _679)) +(define-fun _683 () Bool (bvslt _8 _682)) +(define-fun _684 () Int 0) +(define-fun _685 () (_ BitVec 64) (__string__ _684)) +(define-fun _688 () (Array (_ BitVec 64) (_ BitVec 64)) |*(char)*@1|) +(define-fun _689 () (Array (_ BitVec 64) (_ BitVec 64)) (store _688 _679 _685)) +(define-fun _690 () Bool (= _688 _689)) +(define-fun _691 () Int 1) +(define-fun _692 () (_ BitVec 64) (__string__ _691)) +(define-fun _694 () (_ BitVec 64) (bvadd _9 _679)) +(define-fun _695 () (Array (_ BitVec 64) (_ BitVec 64)) (store _688 _694 _692)) +(define-fun _696 () Bool (= _688 _695)) +(define-fun _697 () Bool (and _690 _696)) +(define-fun _698 () Int 2) +(define-fun _699 () (_ BitVec 64) (__string__ _698)) +(define-fun _701 () (_ BitVec 64) (bvadd _134 _679)) +(define-fun _702 () (Array (_ BitVec 64) (_ BitVec 64)) (store _688 _701 _699)) +(define-fun _703 () Bool (= _688 _702)) +(define-fun _704 () Bool (and _697 _703)) +(define-fun _705 () Bool (and _680 _683)) +(define-fun _706 () Bool (and _704 _705)) +(define-fun _707 () Bool (and _678 _706)) +(define-fun _708 () (_ BitVec 32) (_ bv20130731 32)) +(define-fun _709 () (_ BitVec 32) glcoex_ver_date_8723b_2ant@2) +(define-fun _710 () Bool (= _709 _708)) +(define-fun _711 () Bool (and _707 _710)) +(define-fun _712 () (_ BitVec 32) (_ bv59 32)) +(define-fun _713 () (_ BitVec 32) glcoex_ver_8723b_2ant@2) +(define-fun _714 () Bool (= _713 _712)) +(define-fun _715 () Bool (and _711 _714)) +(define-fun _716 () (_ BitVec 64) (_ bv280 64)) +(define-fun _717 () (_ BitVec 64) __ADDRESS_OF_gl_bt_coexist@) +(define-fun _718 () Bool (bvslt _682 _717)) +(define-fun _720 () (_ BitVec 64) (bvadd _716 _717)) +(define-fun _721 () Bool (bvslt _8 _720)) +(define-fun _724 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _717 _37)) +(define-fun _725 () Bool (= _40 _724)) +(define-fun _727 () (_ BitVec 64) (bvadd _9 _717)) +(define-fun _728 () (Array (_ BitVec 64) (_ BitVec 64)) |*(void)*@1|) +(define-fun _729 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _727 _8)) +(define-fun _730 () Bool (= _728 _729)) +(define-fun _731 () Bool (and _725 _730)) +(define-fun _736 () (_ BitVec 64) (bvadd _140 _717)) +(define-fun _737 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _736 _37)) +(define-fun _738 () Bool (= _51 _737)) +(define-fun _739 () Bool (and _731 _738)) +(define-fun _742 () (_ BitVec 64) (_ bv18 64)) +(define-fun _743 () (_ BitVec 64) (bvadd _742 _717)) +(define-fun _744 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _743 _37)) +(define-fun _745 () Bool (= _51 _744)) +(define-fun _746 () Bool (and _739 _745)) +(define-fun _749 () (_ BitVec 64) (_ bv19 64)) +(define-fun _750 () (_ BitVec 64) (bvadd _749 _717)) +(define-fun _751 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _750 _37)) +(define-fun _752 () Bool (= _51 _751)) +(define-fun _753 () Bool (and _746 _752)) +(define-fun _756 () (_ BitVec 64) (bvadd _146 _717)) +(define-fun _757 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _756 _37)) +(define-fun _758 () Bool (= _40 _757)) +(define-fun _759 () Bool (and _753 _758)) +(define-fun _761 () (_ BitVec 64) (bvadd _158 _717)) +(define-fun _764 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _761 _37)) +(define-fun _765 () Bool (= _40 _764)) +(define-fun _766 () Bool (and _759 _765)) +(define-fun _769 () (_ BitVec 64) (bvadd _490 _717)) +(define-fun _770 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _769 _37)) +(define-fun _771 () Bool (= _40 _770)) +(define-fun _772 () Bool (and _766 _771)) +(define-fun _774 () (_ BitVec 64) (bvadd _224 _717)) +(define-fun _777 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _774 _37)) +(define-fun _778 () Bool (= _40 _777)) +(define-fun _779 () Bool (and _772 _778)) +(define-fun _782 () (_ BitVec 64) (bvadd _594 _717)) +(define-fun _783 () (Array (_ BitVec 64) (_ BitVec 16)) (store _322 _782 _318)) +(define-fun _784 () Bool (= _322 _783)) +(define-fun _785 () Bool (and _779 _784)) +(define-fun _787 () (_ BitVec 64) (bvadd _254 _717)) +(define-fun _790 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _787 _37)) +(define-fun _791 () Bool (= _40 _790)) +(define-fun _792 () Bool (and _785 _791)) +(define-fun _795 () (_ BitVec 64) (bvadd _260 _717)) +(define-fun _796 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _795 _37)) +(define-fun _797 () Bool (= _40 _796)) +(define-fun _798 () Bool (and _792 _797)) +(define-fun _801 () (_ BitVec 64) (bvadd _272 _717)) +(define-fun _802 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _801 _37)) +(define-fun _803 () Bool (= _40 _802)) +(define-fun _804 () Bool (and _798 _803)) +(define-fun _807 () (_ BitVec 64) (bvadd _284 _717)) +(define-fun _808 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _807 _37)) +(define-fun _809 () Bool (= _40 _808)) +(define-fun _810 () Bool (and _804 _809)) +(define-fun _813 () (_ BitVec 64) (bvadd _300 _717)) +(define-fun _814 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _813 _37)) +(define-fun _815 () Bool (= _40 _814)) +(define-fun _816 () Bool (and _810 _815)) +(define-fun _818 () (_ BitVec 64) (bvadd _312 _717)) +(define-fun _819 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _818 _37)) +(define-fun _820 () Bool (= _40 _819)) +(define-fun _821 () Bool (and _816 _820)) +(define-fun _822 () (_ BitVec 64) (_ bv83 64)) +(define-fun _824 () (_ BitVec 64) (bvadd _822 _717)) +(define-fun _825 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _824 _37)) +(define-fun _826 () Bool (= _40 _825)) +(define-fun _827 () Bool (and _821 _826)) +(define-fun _828 () (_ BitVec 64) (_ bv88 64)) +(define-fun _830 () (_ BitVec 64) (bvadd _828 _717)) +(define-fun _831 () (Array (_ BitVec 64) (_ BitVec 64)) (store _688 _830 _8)) +(define-fun _832 () Bool (= _688 _831)) +(define-fun _833 () Bool (and _827 _832)) +(define-fun _834 () (_ BitVec 64) (_ bv148 64)) +(define-fun _836 () (_ BitVec 64) (bvadd _834 _717)) +(define-fun _839 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _836 _37)) +(define-fun _840 () Bool (= _51 _839)) +(define-fun _841 () Bool (and _833 _840)) +(define-fun _844 () (_ BitVec 64) (_ bv149 64)) +(define-fun _845 () (_ BitVec 64) (bvadd _844 _717)) +(define-fun _846 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _845 _37)) +(define-fun _847 () Bool (= _51 _846)) +(define-fun _848 () Bool (and _841 _847)) +(define-fun _851 () (_ BitVec 64) (_ bv150 64)) +(define-fun _852 () (_ BitVec 64) (bvadd _851 _717)) +(define-fun _853 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _852 _37)) +(define-fun _854 () Bool (= _51 _853)) +(define-fun _855 () Bool (and _848 _854)) +(define-fun _858 () (_ BitVec 64) (_ bv151 64)) +(define-fun _859 () (_ BitVec 64) (bvadd _858 _717)) +(define-fun _860 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _859 _37)) +(define-fun _861 () Bool (= _51 _860)) +(define-fun _862 () Bool (and _855 _861)) +(define-fun _865 () (_ BitVec 64) (_ bv152 64)) +(define-fun _866 () (_ BitVec 64) (bvadd _865 _717)) +(define-fun _867 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _866 _37)) +(define-fun _868 () Bool (= _51 _867)) +(define-fun _869 () Bool (and _862 _868)) +(define-fun _872 () (_ BitVec 64) (_ bv153 64)) +(define-fun _873 () (_ BitVec 64) (bvadd _872 _717)) +(define-fun _874 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _873 _37)) +(define-fun _875 () Bool (= _51 _874)) +(define-fun _876 () Bool (and _869 _875)) +(define-fun _879 () (_ BitVec 64) (_ bv154 64)) +(define-fun _880 () (_ BitVec 64) (bvadd _879 _717)) +(define-fun _881 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _880 _37)) +(define-fun _882 () Bool (= _51 _881)) +(define-fun _883 () Bool (and _876 _882)) +(define-fun _886 () (_ BitVec 64) (_ bv155 64)) +(define-fun _887 () (_ BitVec 64) (bvadd _886 _717)) +(define-fun _888 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _887 _37)) +(define-fun _889 () Bool (= _51 _888)) +(define-fun _890 () Bool (and _883 _889)) +(define-fun _893 () (_ BitVec 64) (_ bv156 64)) +(define-fun _894 () (_ BitVec 64) (bvadd _893 _717)) +(define-fun _895 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _894 _37)) +(define-fun _896 () Bool (= _51 _895)) +(define-fun _897 () Bool (and _890 _896)) +(define-fun _900 () (_ BitVec 64) (_ bv157 64)) +(define-fun _901 () (_ BitVec 64) (bvadd _900 _717)) +(define-fun _902 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _901 _37)) +(define-fun _903 () Bool (= _51 _902)) +(define-fun _904 () Bool (and _897 _903)) +(define-fun _905 () (_ BitVec 64) (_ bv160 64)) +(define-fun _907 () (_ BitVec 64) (bvadd _905 _717)) +(define-fun _908 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[char],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _909 () (Array (_ BitVec 64) (_ BitVec 64)) (store _908 _907 _8)) +(define-fun _910 () Bool (= _908 _909)) +(define-fun _911 () Bool (and _904 _910)) +(define-fun _912 () (_ BitVec 64) (_ bv168 64)) +(define-fun _914 () (_ BitVec 64) (bvadd _912 _717)) +(define-fun _915 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[char],_VarArgs:_false)*@1|) +(define-fun _916 () (Array (_ BitVec 64) (_ BitVec 64)) (store _915 _914 _8)) +(define-fun _917 () Bool (= _915 _916)) +(define-fun _918 () Bool (and _911 _917)) +(define-fun _919 () (_ BitVec 64) (_ bv176 64)) +(define-fun _921 () (_ BitVec 64) (bvadd _919 _717)) +(define-fun _922 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_Parameter_4_type:_[char],_VarArgs:_false)*@1|) +(define-fun _923 () (Array (_ BitVec 64) (_ BitVec 64)) (store _922 _921 _8)) +(define-fun _924 () Bool (= _922 _923)) +(define-fun _925 () Bool (and _918 _924)) +(define-fun _926 () (_ BitVec 64) (_ bv184 64)) +(define-fun _928 () (_ BitVec 64) (bvadd _926 _717)) +(define-fun _929 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[short_int],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _930 () (Array (_ BitVec 64) (_ BitVec 64)) (store _929 _928 _8)) +(define-fun _931 () Bool (= _929 _930)) +(define-fun _932 () Bool (and _925 _931)) +(define-fun _933 () (_ BitVec 64) (_ bv192 64)) +(define-fun _935 () (_ BitVec 64) (bvadd _933 _717)) +(define-fun _936 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[short_int],_VarArgs:_false)*@1|) +(define-fun _937 () (Array (_ BitVec 64) (_ BitVec 64)) (store _936 _935 _8)) +(define-fun _938 () Bool (= _936 _937)) +(define-fun _939 () Bool (and _932 _938)) +(define-fun _940 () (_ BitVec 64) (_ bv200 64)) +(define-fun _942 () (_ BitVec 64) (bvadd _940 _717)) +(define-fun _943 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[int],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _944 () (Array (_ BitVec 64) (_ BitVec 64)) (store _943 _942 _8)) +(define-fun _945 () Bool (= _943 _944)) +(define-fun _946 () Bool (and _939 _945)) +(define-fun _947 () (_ BitVec 64) (_ bv208 64)) +(define-fun _949 () (_ BitVec 64) (bvadd _947 _717)) +(define-fun _950 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_VarArgs:_false)*@1|) +(define-fun _951 () (Array (_ BitVec 64) (_ BitVec 64)) (store _950 _949 _8)) +(define-fun _952 () Bool (= _950 _951)) +(define-fun _953 () Bool (and _946 _952)) +(define-fun _954 () (_ BitVec 64) (_ bv232 64)) +(define-fun _956 () (_ BitVec 64) (bvadd _954 _717)) +(define-fun _957 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_5,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[int],_Parameter_5_type:_[int],_VarArgs:_false)*@1|) +(define-fun _958 () (Array (_ BitVec 64) (_ BitVec 64)) (store _957 _956 _8)) +(define-fun _959 () Bool (= _957 _958)) +(define-fun _960 () Bool (and _953 _959)) +(define-fun _961 () (_ BitVec 64) (_ bv240 64)) +(define-fun _963 () (_ BitVec 64) (bvadd _961 _717)) +(define-fun _964 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[int],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[int],_VarArgs:_false)*@1|) +(define-fun _965 () (Array (_ BitVec 64) (_ BitVec 64)) (store _964 _963 _8)) +(define-fun _966 () Bool (= _964 _965)) +(define-fun _967 () Bool (and _960 _966)) +(define-fun _968 () (_ BitVec 64) (_ bv248 64)) +(define-fun _970 () (_ BitVec 64) (bvadd _968 _717)) +(define-fun _971 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_4,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[int],_Parameter_4_type:_[(char)*],_VarArgs:_false)*@1|) +(define-fun _972 () (Array (_ BitVec 64) (_ BitVec 64)) (store _971 _970 _8)) +(define-fun _973 () Bool (= _971 _972)) +(define-fun _974 () Bool (and _967 _973)) +(define-fun _975 () (_ BitVec 64) (_ bv256 64)) +(define-fun _977 () (_ BitVec 64) (bvadd _975 _717)) +(define-fun _978 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_2,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_VarArgs:_false)*@1|) +(define-fun _979 () (Array (_ BitVec 64) (_ BitVec 64)) (store _978 _977 _8)) +(define-fun _980 () Bool (= _978 _979)) +(define-fun _981 () Bool (and _974 _980)) +(define-fun _982 () (_ BitVec 64) (_ bv264 64)) +(define-fun _984 () (_ BitVec 64) (bvadd _982 _717)) +(define-fun _985 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[_Bool],_Parameters:_3,_Parameter_1_type:_[(void)*],_Parameter_2_type:_[char],_Parameter_3_type:_[(void)*],_VarArgs:_false)*@1|) +(define-fun _986 () (Array (_ BitVec 64) (_ BitVec 64)) (store _985 _984 _8)) +(define-fun _987 () Bool (= _985 _986)) +(define-fun _988 () Bool (and _981 _987)) +(define-fun _989 () (_ BitVec 64) (_ bv272 64)) +(define-fun _991 () (_ BitVec 64) (bvadd _989 _717)) +(define-fun _992 () (Array (_ BitVec 64) (_ BitVec 64)) (store _985 _991 _8)) +(define-fun _993 () Bool (= _985 _992)) +(define-fun _994 () Bool (and _988 _993)) +(define-fun _995 () Bool (and _718 _721)) +(define-fun _996 () Bool (and _994 _995)) +(define-fun _997 () Bool (and _715 _996)) +(define-fun _998 () (_ BitVec 64) (_ bv100 64)) +(define-fun _999 () (_ BitVec 64) __ADDRESS_OF_btc_dbg_buf@) +(define-fun _1000 () Bool (bvslt _720 _999)) +(define-fun _1002 () (_ BitVec 64) (bvadd _998 _999)) +(define-fun _1003 () Bool (bvslt _8 _1002)) +(define-fun _1006 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _999 _37)) +(define-fun _1007 () Bool (= _51 _1006)) +(define-fun _1009 () (_ BitVec 64) (bvadd _23 _999)) +(define-fun _1010 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1009 _37)) +(define-fun _1011 () Bool (= _51 _1010)) +(define-fun _1012 () Bool (and _1007 _1011)) +(define-fun _1014 () (_ BitVec 64) (bvadd _48 _999)) +(define-fun _1015 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1014 _37)) +(define-fun _1016 () Bool (= _51 _1015)) +(define-fun _1017 () Bool (and _1012 _1016)) +(define-fun _1019 () (_ BitVec 64) (bvadd _55 _999)) +(define-fun _1020 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1019 _37)) +(define-fun _1021 () Bool (= _51 _1020)) +(define-fun _1022 () Bool (and _1017 _1021)) +(define-fun _1024 () (_ BitVec 64) (bvadd _16 _999)) +(define-fun _1025 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1024 _37)) +(define-fun _1026 () Bool (= _51 _1025)) +(define-fun _1027 () Bool (and _1022 _1026)) +(define-fun _1029 () (_ BitVec 64) (bvadd _66 _999)) +(define-fun _1030 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1029 _37)) +(define-fun _1031 () Bool (= _51 _1030)) +(define-fun _1032 () Bool (and _1027 _1031)) +(define-fun _1034 () (_ BitVec 64) (bvadd _72 _999)) +(define-fun _1035 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1034 _37)) +(define-fun _1036 () Bool (= _51 _1035)) +(define-fun _1037 () Bool (and _1032 _1036)) +(define-fun _1039 () (_ BitVec 64) (bvadd _78 _999)) +(define-fun _1040 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1039 _37)) +(define-fun _1041 () Bool (= _51 _1040)) +(define-fun _1042 () Bool (and _1037 _1041)) +(define-fun _1044 () (_ BitVec 64) (bvadd _9 _999)) +(define-fun _1045 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1044 _37)) +(define-fun _1046 () Bool (= _51 _1045)) +(define-fun _1047 () Bool (and _1042 _1046)) +(define-fun _1049 () (_ BitVec 64) (bvadd _93 _999)) +(define-fun _1050 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1049 _37)) +(define-fun _1051 () Bool (= _51 _1050)) +(define-fun _1052 () Bool (and _1047 _1051)) +(define-fun _1055 () (_ BitVec 64) (bvadd _101 _999)) +(define-fun _1056 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1055 _37)) +(define-fun _1057 () Bool (= _51 _1056)) +(define-fun _1058 () Bool (and _1052 _1057)) +(define-fun _1061 () (_ BitVec 64) (bvadd _109 _999)) +(define-fun _1062 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1061 _37)) +(define-fun _1063 () Bool (= _51 _1062)) +(define-fun _1064 () Bool (and _1058 _1063)) +(define-fun _1067 () (_ BitVec 64) (bvadd _117 _999)) +(define-fun _1068 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1067 _37)) +(define-fun _1069 () Bool (= _51 _1068)) +(define-fun _1070 () Bool (and _1064 _1069)) +(define-fun _1073 () (_ BitVec 64) (bvadd _122 _999)) +(define-fun _1074 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1073 _37)) +(define-fun _1075 () Bool (= _51 _1074)) +(define-fun _1076 () Bool (and _1070 _1075)) +(define-fun _1078 () (_ BitVec 64) (_ bv14 64)) +(define-fun _1080 () (_ BitVec 64) (bvadd _1078 _999)) +(define-fun _1081 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1080 _37)) +(define-fun _1082 () Bool (= _51 _1081)) +(define-fun _1083 () Bool (and _1076 _1082)) +(define-fun _1086 () (_ BitVec 64) (bvadd _128 _999)) +(define-fun _1087 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1086 _37)) +(define-fun _1088 () Bool (= _51 _1087)) +(define-fun _1089 () Bool (and _1083 _1088)) +(define-fun _1092 () (_ BitVec 64) (bvadd _134 _999)) +(define-fun _1093 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1092 _37)) +(define-fun _1094 () Bool (= _51 _1093)) +(define-fun _1095 () Bool (and _1089 _1094)) +(define-fun _1098 () (_ BitVec 64) (bvadd _140 _999)) +(define-fun _1099 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1098 _37)) +(define-fun _1100 () Bool (= _51 _1099)) +(define-fun _1101 () Bool (and _1095 _1100)) +(define-fun _1104 () (_ BitVec 64) (bvadd _742 _999)) +(define-fun _1105 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1104 _37)) +(define-fun _1106 () Bool (= _51 _1105)) +(define-fun _1107 () Bool (and _1101 _1106)) +(define-fun _1110 () (_ BitVec 64) (bvadd _749 _999)) +(define-fun _1111 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1110 _37)) +(define-fun _1112 () Bool (= _51 _1111)) +(define-fun _1113 () Bool (and _1107 _1112)) +(define-fun _1116 () (_ BitVec 64) (bvadd _146 _999)) +(define-fun _1117 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1116 _37)) +(define-fun _1118 () Bool (= _51 _1117)) +(define-fun _1119 () Bool (and _1113 _1118)) +(define-fun _1122 () (_ BitVec 64) (bvadd _152 _999)) +(define-fun _1123 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1122 _37)) +(define-fun _1124 () Bool (= _51 _1123)) +(define-fun _1125 () Bool (and _1119 _1124)) +(define-fun _1127 () (_ BitVec 64) (_ bv22 64)) +(define-fun _1129 () (_ BitVec 64) (bvadd _1127 _999)) +(define-fun _1130 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1129 _37)) +(define-fun _1131 () Bool (= _51 _1130)) +(define-fun _1132 () Bool (and _1125 _1131)) +(define-fun _1134 () (_ BitVec 64) (_ bv23 64)) +(define-fun _1136 () (_ BitVec 64) (bvadd _1134 _999)) +(define-fun _1137 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1136 _37)) +(define-fun _1138 () Bool (= _51 _1137)) +(define-fun _1139 () Bool (and _1132 _1138)) +(define-fun _1142 () (_ BitVec 64) (bvadd _158 _999)) +(define-fun _1143 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1142 _37)) +(define-fun _1144 () Bool (= _51 _1143)) +(define-fun _1145 () Bool (and _1139 _1144)) +(define-fun _1148 () (_ BitVec 64) (bvadd _396 _999)) +(define-fun _1149 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1148 _37)) +(define-fun _1150 () Bool (= _51 _1149)) +(define-fun _1151 () Bool (and _1145 _1150)) +(define-fun _1154 () (_ BitVec 64) (bvadd _402 _999)) +(define-fun _1155 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1154 _37)) +(define-fun _1156 () Bool (= _51 _1155)) +(define-fun _1157 () Bool (and _1151 _1156)) +(define-fun _1160 () (_ BitVec 64) (bvadd _412 _999)) +(define-fun _1161 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1160 _37)) +(define-fun _1162 () Bool (= _51 _1161)) +(define-fun _1163 () Bool (and _1157 _1162)) +(define-fun _1166 () (_ BitVec 64) (bvadd _164 _999)) +(define-fun _1167 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1166 _37)) +(define-fun _1168 () Bool (= _51 _1167)) +(define-fun _1169 () Bool (and _1163 _1168)) +(define-fun _1172 () (_ BitVec 64) (bvadd _170 _999)) +(define-fun _1173 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1172 _37)) +(define-fun _1174 () Bool (= _51 _1173)) +(define-fun _1175 () Bool (and _1169 _1174)) +(define-fun _1178 () (_ BitVec 64) (bvadd _176 _999)) +(define-fun _1179 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1178 _37)) +(define-fun _1180 () Bool (= _51 _1179)) +(define-fun _1181 () Bool (and _1175 _1180)) +(define-fun _1184 () (_ BitVec 64) (bvadd _429 _999)) +(define-fun _1185 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1184 _37)) +(define-fun _1186 () Bool (= _51 _1185)) +(define-fun _1187 () Bool (and _1181 _1186)) +(define-fun _1190 () (_ BitVec 64) (bvadd _182 _999)) +(define-fun _1191 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1190 _37)) +(define-fun _1192 () Bool (= _51 _1191)) +(define-fun _1193 () Bool (and _1187 _1192)) +(define-fun _1196 () (_ BitVec 64) (bvadd _445 _999)) +(define-fun _1197 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1196 _37)) +(define-fun _1198 () Bool (= _51 _1197)) +(define-fun _1199 () Bool (and _1193 _1198)) +(define-fun _1202 () (_ BitVec 64) (bvadd _452 _999)) +(define-fun _1203 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1202 _37)) +(define-fun _1204 () Bool (= _51 _1203)) +(define-fun _1205 () Bool (and _1199 _1204)) +(define-fun _1208 () (_ BitVec 64) (bvadd _459 _999)) +(define-fun _1209 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1208 _37)) +(define-fun _1210 () Bool (= _51 _1209)) +(define-fun _1211 () Bool (and _1205 _1210)) +(define-fun _1214 () (_ BitVec 64) (bvadd _188 _999)) +(define-fun _1215 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1214 _37)) +(define-fun _1216 () Bool (= _51 _1215)) +(define-fun _1217 () Bool (and _1211 _1216)) +(define-fun _1220 () (_ BitVec 64) (bvadd _474 _999)) +(define-fun _1221 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1220 _37)) +(define-fun _1222 () Bool (= _51 _1221)) +(define-fun _1223 () Bool (and _1217 _1222)) +(define-fun _1226 () (_ BitVec 64) (bvadd _482 _999)) +(define-fun _1227 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1226 _37)) +(define-fun _1228 () Bool (= _51 _1227)) +(define-fun _1229 () Bool (and _1223 _1228)) +(define-fun _1232 () (_ BitVec 64) (bvadd _490 _999)) +(define-fun _1233 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1232 _37)) +(define-fun _1234 () Bool (= _51 _1233)) +(define-fun _1235 () Bool (and _1229 _1234)) +(define-fun _1238 () (_ BitVec 64) (bvadd _194 _999)) +(define-fun _1239 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1238 _37)) +(define-fun _1240 () Bool (= _51 _1239)) +(define-fun _1241 () Bool (and _1235 _1240)) +(define-fun _1244 () (_ BitVec 64) (bvadd _504 _999)) +(define-fun _1245 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1244 _37)) +(define-fun _1246 () Bool (= _51 _1245)) +(define-fun _1247 () Bool (and _1241 _1246)) +(define-fun _1250 () (_ BitVec 64) (bvadd _513 _999)) +(define-fun _1251 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1250 _37)) +(define-fun _1252 () Bool (= _51 _1251)) +(define-fun _1253 () Bool (and _1247 _1252)) +(define-fun _1256 () (_ BitVec 64) (bvadd _520 _999)) +(define-fun _1257 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1256 _37)) +(define-fun _1258 () Bool (= _51 _1257)) +(define-fun _1259 () Bool (and _1253 _1258)) +(define-fun _1262 () (_ BitVec 64) (bvadd _527 _999)) +(define-fun _1263 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1262 _37)) +(define-fun _1264 () Bool (= _51 _1263)) +(define-fun _1265 () Bool (and _1259 _1264)) +(define-fun _1268 () (_ BitVec 64) (bvadd _200 _999)) +(define-fun _1269 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1268 _37)) +(define-fun _1270 () Bool (= _51 _1269)) +(define-fun _1271 () Bool (and _1265 _1270)) +(define-fun _1274 () (_ BitVec 64) (bvadd _206 _999)) +(define-fun _1275 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1274 _37)) +(define-fun _1276 () Bool (= _51 _1275)) +(define-fun _1277 () Bool (and _1271 _1276)) +(define-fun _1280 () (_ BitVec 64) (bvadd _212 _999)) +(define-fun _1281 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1280 _37)) +(define-fun _1282 () Bool (= _51 _1281)) +(define-fun _1283 () Bool (and _1277 _1282)) +(define-fun _1286 () (_ BitVec 64) (bvadd _218 _999)) +(define-fun _1287 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1286 _37)) +(define-fun _1288 () Bool (= _51 _1287)) +(define-fun _1289 () Bool (and _1283 _1288)) +(define-fun _1292 () (_ BitVec 64) (bvadd _558 _999)) +(define-fun _1293 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1292 _37)) +(define-fun _1294 () Bool (= _51 _1293)) +(define-fun _1295 () Bool (and _1289 _1294)) +(define-fun _1298 () (_ BitVec 64) (bvadd _565 _999)) +(define-fun _1299 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1298 _37)) +(define-fun _1300 () Bool (= _51 _1299)) +(define-fun _1301 () Bool (and _1295 _1300)) +(define-fun _1304 () (_ BitVec 64) (bvadd _572 _999)) +(define-fun _1305 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1304 _37)) +(define-fun _1306 () Bool (= _51 _1305)) +(define-fun _1307 () Bool (and _1301 _1306)) +(define-fun _1310 () (_ BitVec 64) (bvadd _224 _999)) +(define-fun _1311 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1310 _37)) +(define-fun _1312 () Bool (= _51 _1311)) +(define-fun _1313 () Bool (and _1307 _1312)) +(define-fun _1316 () (_ BitVec 64) (bvadd _587 _999)) +(define-fun _1317 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1316 _37)) +(define-fun _1318 () Bool (= _51 _1317)) +(define-fun _1319 () Bool (and _1313 _1318)) +(define-fun _1322 () (_ BitVec 64) (bvadd _594 _999)) +(define-fun _1323 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1322 _37)) +(define-fun _1324 () Bool (= _51 _1323)) +(define-fun _1325 () Bool (and _1319 _1324)) +(define-fun _1328 () (_ BitVec 64) (bvadd _601 _999)) +(define-fun _1329 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1328 _37)) +(define-fun _1330 () Bool (= _51 _1329)) +(define-fun _1331 () Bool (and _1325 _1330)) +(define-fun _1334 () (_ BitVec 64) (bvadd _230 _999)) +(define-fun _1335 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1334 _37)) +(define-fun _1336 () Bool (= _51 _1335)) +(define-fun _1337 () Bool (and _1331 _1336)) +(define-fun _1340 () (_ BitVec 64) (bvadd _614 _999)) +(define-fun _1341 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1340 _37)) +(define-fun _1342 () Bool (= _51 _1341)) +(define-fun _1343 () Bool (and _1337 _1342)) +(define-fun _1346 () (_ BitVec 64) (bvadd _621 _999)) +(define-fun _1347 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1346 _37)) +(define-fun _1348 () Bool (= _51 _1347)) +(define-fun _1349 () Bool (and _1343 _1348)) +(define-fun _1351 () (_ BitVec 64) (bvadd _628 _999)) +(define-fun _1352 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1351 _37)) +(define-fun _1353 () Bool (= _51 _1352)) +(define-fun _1354 () Bool (and _1349 _1353)) +(define-fun _1357 () (_ BitVec 64) (bvadd _236 _999)) +(define-fun _1358 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1357 _37)) +(define-fun _1359 () Bool (= _51 _1358)) +(define-fun _1360 () Bool (and _1354 _1359)) +(define-fun _1362 () (_ BitVec 64) (_ bv61 64)) +(define-fun _1364 () (_ BitVec 64) (bvadd _1362 _999)) +(define-fun _1365 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1364 _37)) +(define-fun _1366 () Bool (= _51 _1365)) +(define-fun _1367 () Bool (and _1360 _1366)) +(define-fun _1369 () (_ BitVec 64) (_ bv62 64)) +(define-fun _1371 () (_ BitVec 64) (bvadd _1369 _999)) +(define-fun _1372 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1371 _37)) +(define-fun _1373 () Bool (= _51 _1372)) +(define-fun _1374 () Bool (and _1367 _1373)) +(define-fun _1376 () (_ BitVec 64) (_ bv63 64)) +(define-fun _1378 () (_ BitVec 64) (bvadd _1376 _999)) +(define-fun _1379 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1378 _37)) +(define-fun _1380 () Bool (= _51 _1379)) +(define-fun _1381 () Bool (and _1374 _1380)) +(define-fun _1384 () (_ BitVec 64) (bvadd _242 _999)) +(define-fun _1385 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1384 _37)) +(define-fun _1386 () Bool (= _51 _1385)) +(define-fun _1387 () Bool (and _1381 _1386)) +(define-fun _1389 () (_ BitVec 64) (_ bv65 64)) +(define-fun _1391 () (_ BitVec 64) (bvadd _1389 _999)) +(define-fun _1392 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1391 _37)) +(define-fun _1393 () Bool (= _51 _1392)) +(define-fun _1394 () Bool (and _1387 _1393)) +(define-fun _1396 () (_ BitVec 64) (_ bv66 64)) +(define-fun _1398 () (_ BitVec 64) (bvadd _1396 _999)) +(define-fun _1399 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1398 _37)) +(define-fun _1400 () Bool (= _51 _1399)) +(define-fun _1401 () Bool (and _1394 _1400)) +(define-fun _1403 () (_ BitVec 64) (_ bv67 64)) +(define-fun _1405 () (_ BitVec 64) (bvadd _1403 _999)) +(define-fun _1406 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1405 _37)) +(define-fun _1407 () Bool (= _51 _1406)) +(define-fun _1408 () Bool (and _1401 _1407)) +(define-fun _1411 () (_ BitVec 64) (bvadd _248 _999)) +(define-fun _1412 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1411 _37)) +(define-fun _1413 () Bool (= _51 _1412)) +(define-fun _1414 () Bool (and _1408 _1413)) +(define-fun _1416 () (_ BitVec 64) (_ bv69 64)) +(define-fun _1418 () (_ BitVec 64) (bvadd _1416 _999)) +(define-fun _1419 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1418 _37)) +(define-fun _1420 () Bool (= _51 _1419)) +(define-fun _1421 () Bool (and _1414 _1420)) +(define-fun _1423 () (_ BitVec 64) (_ bv70 64)) +(define-fun _1425 () (_ BitVec 64) (bvadd _1423 _999)) +(define-fun _1426 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1425 _37)) +(define-fun _1427 () Bool (= _51 _1426)) +(define-fun _1428 () Bool (and _1421 _1427)) +(define-fun _1430 () (_ BitVec 64) (_ bv71 64)) +(define-fun _1432 () (_ BitVec 64) (bvadd _1430 _999)) +(define-fun _1433 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1432 _37)) +(define-fun _1434 () Bool (= _51 _1433)) +(define-fun _1435 () Bool (and _1428 _1434)) +(define-fun _1438 () (_ BitVec 64) (bvadd _254 _999)) +(define-fun _1439 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1438 _37)) +(define-fun _1440 () Bool (= _51 _1439)) +(define-fun _1441 () Bool (and _1435 _1440)) +(define-fun _1444 () (_ BitVec 64) (bvadd _260 _999)) +(define-fun _1445 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1444 _37)) +(define-fun _1446 () Bool (= _51 _1445)) +(define-fun _1447 () Bool (and _1441 _1446)) +(define-fun _1450 () (_ BitVec 64) (bvadd _266 _999)) +(define-fun _1451 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1450 _37)) +(define-fun _1452 () Bool (= _51 _1451)) +(define-fun _1453 () Bool (and _1447 _1452)) +(define-fun _1456 () (_ BitVec 64) (bvadd _272 _999)) +(define-fun _1457 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1456 _37)) +(define-fun _1458 () Bool (= _51 _1457)) +(define-fun _1459 () Bool (and _1453 _1458)) +(define-fun _1462 () (_ BitVec 64) (bvadd _278 _999)) +(define-fun _1463 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1462 _37)) +(define-fun _1464 () Bool (= _51 _1463)) +(define-fun _1465 () Bool (and _1459 _1464)) +(define-fun _1468 () (_ BitVec 64) (bvadd _284 _999)) +(define-fun _1469 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1468 _37)) +(define-fun _1470 () Bool (= _51 _1469)) +(define-fun _1471 () Bool (and _1465 _1470)) +(define-fun _1474 () (_ BitVec 64) (bvadd _290 _999)) +(define-fun _1475 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1474 _37)) +(define-fun _1476 () Bool (= _51 _1475)) +(define-fun _1477 () Bool (and _1471 _1476)) +(define-fun _1480 () (_ BitVec 64) (bvadd _300 _999)) +(define-fun _1481 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1480 _37)) +(define-fun _1482 () Bool (= _51 _1481)) +(define-fun _1483 () Bool (and _1477 _1482)) +(define-fun _1486 () (_ BitVec 64) (bvadd _307 _999)) +(define-fun _1487 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1486 _37)) +(define-fun _1488 () Bool (= _51 _1487)) +(define-fun _1489 () Bool (and _1483 _1488)) +(define-fun _1492 () (_ BitVec 64) (bvadd _312 _999)) +(define-fun _1493 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1492 _37)) +(define-fun _1494 () Bool (= _51 _1493)) +(define-fun _1495 () Bool (and _1489 _1494)) +(define-fun _1498 () (_ BitVec 64) (bvadd _319 _999)) +(define-fun _1499 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1498 _37)) +(define-fun _1500 () Bool (= _51 _1499)) +(define-fun _1501 () Bool (and _1495 _1500)) +(define-fun _1504 () (_ BitVec 64) (bvadd _822 _999)) +(define-fun _1505 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1504 _37)) +(define-fun _1506 () Bool (= _51 _1505)) +(define-fun _1507 () Bool (and _1501 _1506)) +(define-fun _1510 () (_ BitVec 64) (bvadd _31 _999)) +(define-fun _1511 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1510 _37)) +(define-fun _1512 () Bool (= _51 _1511)) +(define-fun _1513 () Bool (and _1507 _1512)) +(define-fun _1515 () (_ BitVec 64) (_ bv85 64)) +(define-fun _1517 () (_ BitVec 64) (bvadd _1515 _999)) +(define-fun _1518 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1517 _37)) +(define-fun _1519 () Bool (= _51 _1518)) +(define-fun _1520 () Bool (and _1513 _1519)) +(define-fun _1522 () (_ BitVec 64) (_ bv86 64)) +(define-fun _1524 () (_ BitVec 64) (bvadd _1522 _999)) +(define-fun _1525 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1524 _37)) +(define-fun _1526 () Bool (= _51 _1525)) +(define-fun _1527 () Bool (and _1520 _1526)) +(define-fun _1529 () (_ BitVec 64) (_ bv87 64)) +(define-fun _1531 () (_ BitVec 64) (bvadd _1529 _999)) +(define-fun _1532 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1531 _37)) +(define-fun _1533 () Bool (= _51 _1532)) +(define-fun _1534 () Bool (and _1527 _1533)) +(define-fun _1537 () (_ BitVec 64) (bvadd _828 _999)) +(define-fun _1538 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1537 _37)) +(define-fun _1539 () Bool (= _51 _1538)) +(define-fun _1540 () Bool (and _1534 _1539)) +(define-fun _1542 () (_ BitVec 64) (_ bv89 64)) +(define-fun _1544 () (_ BitVec 64) (bvadd _1542 _999)) +(define-fun _1545 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1544 _37)) +(define-fun _1546 () Bool (= _51 _1545)) +(define-fun _1547 () Bool (and _1540 _1546)) +(define-fun _1549 () (_ BitVec 64) (_ bv90 64)) +(define-fun _1551 () (_ BitVec 64) (bvadd _1549 _999)) +(define-fun _1552 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1551 _37)) +(define-fun _1553 () Bool (= _51 _1552)) +(define-fun _1554 () Bool (and _1547 _1553)) +(define-fun _1556 () (_ BitVec 64) (_ bv91 64)) +(define-fun _1558 () (_ BitVec 64) (bvadd _1556 _999)) +(define-fun _1559 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1558 _37)) +(define-fun _1560 () Bool (= _51 _1559)) +(define-fun _1561 () Bool (and _1554 _1560)) +(define-fun _1563 () (_ BitVec 64) (_ bv92 64)) +(define-fun _1565 () (_ BitVec 64) (bvadd _1563 _999)) +(define-fun _1566 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1565 _37)) +(define-fun _1567 () Bool (= _51 _1566)) +(define-fun _1568 () Bool (and _1561 _1567)) +(define-fun _1570 () (_ BitVec 64) (_ bv93 64)) +(define-fun _1572 () (_ BitVec 64) (bvadd _1570 _999)) +(define-fun _1573 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1572 _37)) +(define-fun _1574 () Bool (= _51 _1573)) +(define-fun _1575 () Bool (and _1568 _1574)) +(define-fun _1577 () (_ BitVec 64) (_ bv94 64)) +(define-fun _1579 () (_ BitVec 64) (bvadd _1577 _999)) +(define-fun _1580 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1579 _37)) +(define-fun _1581 () Bool (= _51 _1580)) +(define-fun _1582 () Bool (and _1575 _1581)) +(define-fun _1584 () (_ BitVec 64) (_ bv95 64)) +(define-fun _1586 () (_ BitVec 64) (bvadd _1584 _999)) +(define-fun _1587 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1586 _37)) +(define-fun _1588 () Bool (= _51 _1587)) +(define-fun _1589 () Bool (and _1582 _1588)) +(define-fun _1591 () (_ BitVec 64) (_ bv96 64)) +(define-fun _1593 () (_ BitVec 64) (bvadd _1591 _999)) +(define-fun _1594 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1593 _37)) +(define-fun _1595 () Bool (= _51 _1594)) +(define-fun _1596 () Bool (and _1589 _1595)) +(define-fun _1598 () (_ BitVec 64) (_ bv97 64)) +(define-fun _1600 () (_ BitVec 64) (bvadd _1598 _999)) +(define-fun _1601 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1600 _37)) +(define-fun _1602 () Bool (= _51 _1601)) +(define-fun _1603 () Bool (and _1596 _1602)) +(define-fun _1605 () (_ BitVec 64) (_ bv98 64)) +(define-fun _1607 () (_ BitVec 64) (bvadd _1605 _999)) +(define-fun _1608 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1607 _37)) +(define-fun _1609 () Bool (= _51 _1608)) +(define-fun _1610 () Bool (and _1603 _1609)) +(define-fun _1612 () (_ BitVec 64) (_ bv99 64)) +(define-fun _1614 () (_ BitVec 64) (bvadd _1612 _999)) +(define-fun _1615 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1614 _37)) +(define-fun _1616 () Bool (= _51 _1615)) +(define-fun _1617 () Bool (and _1610 _1616)) +(define-fun _1618 () Bool (and _1000 _1003)) +(define-fun _1619 () Bool (and _1617 _1618)) +(define-fun _1620 () Bool (and _997 _1619)) +(define-fun _1621 () (_ BitVec 32) ldv_state_variable_1@2) +(define-fun _1622 () Bool (= _1621 _15)) +(define-fun _1623 () Bool (and _1620 _1622)) +(define-fun _1624 () (_ BitVec 64) rtl_btc_operation_group0@2) +(define-fun _1625 () Bool (= _1624 _8)) +(define-fun _1626 () Bool (and _1623 _1625)) +(define-fun _1627 () (_ BitVec 32) ref_cnt@2) +(define-fun _1628 () Bool (= _1627 _15)) +(define-fun _1629 () Bool (and _1626 _1628)) +(define-fun _1630 () (_ BitVec 32) ldv_state_variable_0@2) +(define-fun _1631 () Bool (= _1630 _15)) +(define-fun _1632 () Bool (and _1629 _1631)) +(define-fun _1633 () (_ BitVec 64) (_ bv104 64)) +(define-fun _1634 () (_ BitVec 64) __ADDRESS_OF_rtl_btc_operation@) +(define-fun _1635 () Bool (bvslt _1002 _1634)) +(define-fun _1637 () (_ BitVec 64) (bvadd _1633 _1634)) +(define-fun _1638 () Bool (bvslt _8 _1637)) +(define-fun _1639 () Bool (and _1635 _1638)) +(define-fun _1640 () Bool (and _1632 _1639)) +(define-fun _1641 () (_ BitVec 64) __ADDRESS_OF___kstrtab_rtl_btc_get_ops_pointer@) +(define-fun _1642 () Bool (bvslt _1637 _1641)) +(define-fun _1644 () (_ BitVec 64) (bvadd _158 _1641)) +(define-fun _1645 () Bool (bvslt _8 _1644)) +(define-fun _1646 () Bool (and _1642 _1645)) +(define-fun _1647 () Bool (and _1640 _1646)) +(define-fun _1648 () (_ BitVec 32) ldv_retval_0@2) +(define-fun _1649 () Bool (= _1648 _15)) +(define-fun _1650 () Bool (and _1647 _1649)) +(define-fun _1651 () (_ BitVec 64) (_ bv120 64)) +(define-fun _1652 () (_ BitVec 64) __ADDRESS_OF_set_impl@) +(define-fun _1653 () Bool (bvslt _1644 _1652)) +(define-fun _1655 () (_ BitVec 64) (bvadd _1651 _1652)) +(define-fun _1656 () Bool (bvslt _8 _1655)) +(define-fun _1659 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1652 _8)) +(define-fun _1660 () Bool (= _728 _1659)) +(define-fun _1662 () (_ BitVec 64) (bvadd _9 _1652)) +(define-fun _1663 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1662 _8)) +(define-fun _1664 () Bool (= _728 _1663)) +(define-fun _1665 () Bool (and _1660 _1664)) +(define-fun _1667 () (_ BitVec 64) (bvadd _134 _1652)) +(define-fun _1668 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1667 _8)) +(define-fun _1669 () Bool (= _728 _1668)) +(define-fun _1670 () Bool (and _1665 _1669)) +(define-fun _1672 () (_ BitVec 64) (bvadd _158 _1652)) +(define-fun _1673 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1672 _8)) +(define-fun _1674 () Bool (= _728 _1673)) +(define-fun _1675 () Bool (and _1670 _1674)) +(define-fun _1677 () (_ BitVec 64) (bvadd _182 _1652)) +(define-fun _1678 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1677 _8)) +(define-fun _1679 () Bool (= _728 _1678)) +(define-fun _1680 () Bool (and _1675 _1679)) +(define-fun _1682 () (_ BitVec 64) (bvadd _194 _1652)) +(define-fun _1683 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1682 _8)) +(define-fun _1684 () Bool (= _728 _1683)) +(define-fun _1685 () Bool (and _1680 _1684)) +(define-fun _1687 () (_ BitVec 64) (bvadd _218 _1652)) +(define-fun _1688 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1687 _8)) +(define-fun _1689 () Bool (= _728 _1688)) +(define-fun _1690 () Bool (and _1685 _1689)) +(define-fun _1692 () (_ BitVec 64) (bvadd _230 _1652)) +(define-fun _1693 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1692 _8)) +(define-fun _1694 () Bool (= _728 _1693)) +(define-fun _1695 () Bool (and _1690 _1694)) +(define-fun _1697 () (_ BitVec 64) (bvadd _242 _1652)) +(define-fun _1698 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1697 _8)) +(define-fun _1699 () Bool (= _728 _1698)) +(define-fun _1700 () Bool (and _1695 _1699)) +(define-fun _1702 () (_ BitVec 64) (bvadd _254 _1652)) +(define-fun _1703 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1702 _8)) +(define-fun _1704 () Bool (= _728 _1703)) +(define-fun _1705 () Bool (and _1700 _1704)) +(define-fun _1707 () (_ BitVec 64) (bvadd _307 _1652)) +(define-fun _1708 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1707 _8)) +(define-fun _1709 () Bool (= _728 _1708)) +(define-fun _1710 () Bool (and _1705 _1709)) +(define-fun _1712 () (_ BitVec 64) (bvadd _828 _1652)) +(define-fun _1713 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1712 _8)) +(define-fun _1714 () Bool (= _728 _1713)) +(define-fun _1715 () Bool (and _1710 _1714)) +(define-fun _1717 () (_ BitVec 64) (bvadd _1591 _1652)) +(define-fun _1718 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1717 _8)) +(define-fun _1719 () Bool (= _728 _1718)) +(define-fun _1720 () Bool (and _1715 _1719)) +(define-fun _1722 () (_ BitVec 64) (bvadd _1633 _1652)) +(define-fun _1723 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1722 _8)) +(define-fun _1724 () Bool (= _728 _1723)) +(define-fun _1725 () Bool (and _1720 _1724)) +(define-fun _1726 () (_ BitVec 64) (_ bv112 64)) +(define-fun _1728 () (_ BitVec 64) (bvadd _1726 _1652)) +(define-fun _1729 () (Array (_ BitVec 64) (_ BitVec 64)) (store _728 _1728 _8)) +(define-fun _1730 () Bool (= _728 _1729)) +(define-fun _1731 () Bool (and _1725 _1730)) +(define-fun _1732 () Bool (and _1653 _1656)) +(define-fun _1733 () Bool (and _1731 _1732)) +(define-fun _1734 () Bool (and _1650 _1733)) +(define-fun _1735 () (_ BitVec 32) last_index@2) +(define-fun _1736 () Bool (= _1735 _15)) +(define-fun _1737 () Bool (and _1734 _1736)) +(define-fun _1738 () (_ BitVec 64) |__ADDRESS_OF_main::ldvarg4@|) +(define-fun _1739 () Bool (bvslt _1655 _1738)) +(define-fun _1741 () (_ BitVec 64) (bvadd _16 _1738)) +(define-fun _1742 () Bool (bvslt _8 _1741)) +(define-fun _1743 () Bool (and _1739 _1742)) +(define-fun _1744 () Bool (and _1737 _1743)) +(define-fun _1745 () (_ BitVec 8) __VERIFIER_nondet_u8@2) +(define-fun _1746 () (_ BitVec 8) |main::tmp@3|) +(define-fun _1747 () Bool (= _1745 _1746)) +(define-fun _1748 () Bool (and _1744 _1747)) +(define-fun _1749 () (_ BitVec 8) |main::ldvarg1@3|) +(define-fun _1750 () Bool (= _1746 _1749)) +(define-fun _1751 () Bool (and _1748 _1750)) +(define-fun _1752 () (_ BitVec 8) __VERIFIER_nondet_u8@3) +(define-fun _1753 () (_ BitVec 8) |main::tmp___0@3|) +(define-fun _1754 () Bool (= _1752 _1753)) +(define-fun _1755 () Bool (and _1751 _1754)) +(define-fun _1756 () (_ BitVec 8) |main::ldvarg3@3|) +(define-fun _1757 () Bool (= _1753 _1756)) +(define-fun _1758 () Bool (and _1755 _1757)) +(define-fun _1759 () (_ BitVec 8) __VERIFIER_nondet_u8@4) +(define-fun _1760 () (_ BitVec 8) |main::tmp___1@3|) +(define-fun _1761 () Bool (= _1759 _1760)) +(define-fun _1762 () Bool (and _1758 _1761)) +(define-fun _1763 () (_ BitVec 8) |main::ldvarg0@3|) +(define-fun _1764 () Bool (= _1760 _1763)) +(define-fun _1765 () Bool (and _1762 _1764)) +(define-fun _1766 () (_ BitVec 8) __VERIFIER_nondet_u8@5) +(define-fun _1767 () (_ BitVec 8) |main::tmp___2@3|) +(define-fun _1768 () Bool (= _1766 _1767)) +(define-fun _1769 () Bool (and _1765 _1768)) +(define-fun _1770 () (_ BitVec 8) |main::ldvarg5@3|) +(define-fun _1771 () Bool (= _1767 _1770)) +(define-fun _1772 () Bool (and _1769 _1771)) +(define-fun _1773 () (_ BitVec 64) |ldv_zalloc::size@2|) +(define-fun _1774 () Bool (= _1773 _23)) +(define-fun _1775 () Bool (and _1772 _1774)) +(define-fun _1776 () (_ BitVec 32) __VERIFIER_nondet_int@2) +(define-fun _1777 () (_ BitVec 32) |ldv_zalloc::tmp___0@3|) +(define-fun _1778 () Bool (= _1776 _1777)) +(define-fun _1779 () Bool (and _1775 _1778)) +(define-fun _1780 () Bool (= _1777 _15)) +(define-fun _1781 () Bool (not _1780)) +(define-fun _1783 () Bool (and _1779 _1781)) +(define-fun _1784 () Bool (and _1779 _1780)) +(define-fun _1785 () (_ BitVec 64) calloc@2) +(define-fun _1786 () Bool (= _1785 _8)) +(define-fun _1787 () Bool (not _1786)) +(define-fun _1789 () (_ BitVec 64) |__ADDRESS_OF___VERIFIER_successful_zalloc_*void#1@|) +(define-fun _1790 () Bool (bvslt _8 _1789)) +(define-fun _1791 () (_ BitVec 64) (ite _1787 _1789 _8)) +(define-fun _1792 () (_ BitVec 64) |ldv_zalloc::tmp@3|) +(define-fun _1793 () Bool (= _1791 _1792)) +(define-fun _1794 () Bool (and _1790 _1793)) +(define-fun _1795 () Bool (and _1784 _1794)) +(define-fun _1796 () (_ BitVec 64) |ldv_zalloc::p@3|) +(define-fun _1797 () Bool (= _1792 _1796)) +(define-fun _1798 () Bool (and _1795 _1797)) +(define-fun _1799 () Bool (= _1796 _8)) +(define-fun _1800 () Bool (not _1799)) +(define-fun _1802 () Bool (and _1798 _1800)) +(define-fun _1804 () (_ BitVec 64) |ldv_zalloc::__retval__@2|) +(define-fun _1805 () Bool (= _1796 _1804)) +(define-fun _1806 () Bool (and _1802 _1805)) +(define-fun _1807 () Bool (= _1804 _8)) +(define-fun _1808 () Bool (and _1783 _1807)) +(define-fun _1809 () (_ BitVec 64) calloc@1) +(define-fun _1810 () Bool (= _1785 _1809)) +(define-fun _1811 () (_ BitVec 64) |ldv_zalloc::p@2|) +(define-fun _1812 () Bool (= _1796 _1811)) +(define-fun _1813 () Bool (and _1810 _1812)) +(define-fun _1814 () (_ BitVec 64) |ldv_zalloc::tmp@2|) +(define-fun _1815 () Bool (= _1792 _1814)) +(define-fun _1816 () Bool (and _1813 _1815)) +(define-fun _1817 () Bool (and _1808 _1816)) +(define-fun _1818 () Bool (or _1806 _1817)) +(define-fun _1819 () (_ BitVec 64) |main::tmp___3@3|) +(define-fun _1820 () Bool (= _1804 _1819)) +(define-fun _1821 () Bool (and _1818 _1820)) +(define-fun _1822 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _1789 _37)) +(define-fun _1823 () Bool (= _51 _1822)) +(define-fun _1824 () Bool (bvslt _1741 _1789)) +(define-fun _1826 () (_ BitVec 64) (bvadd _23 _1789)) +(define-fun _1827 () Bool (bvslt _8 _1826)) +(define-fun _1829 () (_ BitVec 64) (bvadd _1773 _1789)) +(define-fun _1830 () Bool (bvslt _8 _1829)) +(define-fun _1831 () (_ BitVec 64) |main::ldvarg2@3|) +(define-fun _1832 () Bool (= _1819 _1831)) +(define-fun _1833 () Bool (and _1823 _1824)) +(define-fun _1834 () Bool (and _1827 _1833)) +(define-fun _1835 () Bool (and _1830 _1834)) +(define-fun _1836 () Bool (and _1832 _1835)) +(define-fun _1837 () Bool (and _1821 _1836)) +(define-fun _1838 () (_ BitVec 32) last_index@3) +(define-fun _1839 () Bool (= _1838 _15)) +(define-fun _1840 () Bool (and _1837 _1839)) +(define-fun _1841 () (Array (_ BitVec 64) (_ BitVec 32)) *enum__RT_MEDIA_STATUS@1) +(define-fun _1842 () (_ BitVec 32) (select _1841 _1738)) +(define-fun _1843 () (_ BitVec 32) |main::ldvarg4@2|) +(define-fun _1844 () Bool (= _1842 _1843)) +(define-fun _1846 () Bool (and _1840 _1844)) +(define-fun _1847 () (_ BitVec 32) ldv_state_variable_1@3) +(define-fun _1848 () Bool (= _1847 _15)) +(define-fun _1849 () Bool (and _1846 _1848)) +(define-fun _1850 () (_ BitVec 32) ref_cnt@3) +(define-fun _1851 () Bool (= _1850 _15)) +(define-fun _1852 () Bool (and _1849 _1851)) +(define-fun _1853 () (_ BitVec 32) ldv_state_variable_0@3) +(define-fun _1854 () Bool (= _1853 _22)) +(define-fun _1855 () Bool (and _1852 _1854)) +(define-fun _1856 () (_ BitVec 32) __VERIFIER_nondet_int@3) +(define-fun _1857 () (_ BitVec 32) |main::tmp___4@3|) +(define-fun _1858 () Bool (= _1856 _1857)) +(define-fun _1859 () Bool (and _1855 _1858)) +(define-fun _1860 () Bool (= _1857 _15)) +(define-fun _1862 () Bool (and _1859 _1860)) +(define-fun _1863 () Bool (not _1860)) +(define-fun _1864 () Bool (and _1859 _1863)) +(define-fun _1865 () Bool (= _1857 _22)) +(define-fun _1867 () Bool (and _1864 _1865)) +(define-fun _1868 () Bool (not _1865)) +(define-fun _1869 () Bool (and _1864 _1868)) +(define-fun _1870 () Bool (= _1853 _15)) +(define-fun _1871 () Bool (not _1870)) +(define-fun _1873 () Bool (and _1867 _1871)) +(define-fun _1875 () (_ BitVec 32) __VERIFIER_nondet_int@4) +(define-fun _1876 () (_ BitVec 32) |main::tmp___6@3|) +(define-fun _1877 () Bool (= _1875 _1876)) +(define-fun _1878 () Bool (and _1873 _1877)) +(define-fun _1879 () Bool (= _1876 _15)) +(define-fun _1881 () Bool (and _1878 _1879)) +(define-fun _1882 () Bool (not _1879)) +(define-fun _1883 () Bool (and _1878 _1882)) +(define-fun _1884 () Bool (= _1876 _22)) +(define-fun _1886 () Bool (and _1883 _1884)) +(define-fun _1887 () Bool (not _1884)) +(define-fun _1888 () Bool (and _1883 _1887)) +(define-fun _1890 () Bool (and _1854 _1886)) +(define-fun _1893 () (_ BitVec 32) |rtl_btcoexist_module_init::__retval__@2|) +(define-fun _1894 () Bool (= _1893 _15)) +(define-fun _1895 () Bool (and _1890 _1894)) +(define-fun _1896 () (_ BitVec 32) ldv_retval_0@3) +(define-fun _1897 () Bool (= _1893 _1896)) +(define-fun _1898 () Bool (and _1895 _1897)) +(define-fun _1899 () Bool (= _1896 _15)) +(define-fun _1901 () Bool (and _1898 _1899)) +(define-fun _1904 () (_ BitVec 32) ldv_state_variable_0@4) +(define-fun _1905 () Bool (= _1904 _106)) +(define-fun _1906 () Bool (and _1901 _1905)) +(define-fun _1907 () (_ BitVec 32) ldv_state_variable_1@4) +(define-fun _1908 () Bool (= _1907 _22)) +(define-fun _1909 () Bool (and _1906 _1908)) +(define-fun _1910 () (_ BitVec 64) (_ bv19648 64)) +(define-fun _1911 () (_ BitVec 64) |ldv_zalloc::size@3|) +(define-fun _1912 () Bool (= _1911 _1910)) +(define-fun _1913 () Bool (and _1909 _1912)) +(define-fun _1914 () (_ BitVec 32) __VERIFIER_nondet_int@5) +(define-fun _1915 () (_ BitVec 32) |ldv_zalloc::tmp___0@5|) +(define-fun _1916 () Bool (= _1914 _1915)) +(define-fun _1917 () Bool (and _1913 _1916)) +(define-fun _1918 () Bool (= _1915 _15)) +(define-fun _1919 () Bool (not _1918)) +(define-fun _1921 () Bool (and _1917 _1919)) +(define-fun _1922 () Bool (and _1917 _1918)) +(define-fun _1923 () (_ BitVec 64) calloc@3) +(define-fun _1924 () Bool (= _1923 _8)) +(define-fun _1925 () Bool (not _1924)) +(define-fun _1927 () (_ BitVec 64) |__ADDRESS_OF___VERIFIER_successful_zalloc_*void#2@|) +(define-fun _1928 () Bool (bvslt _8 _1927)) +(define-fun _1929 () (_ BitVec 64) (ite _1925 _1927 _8)) +(define-fun _1930 () (_ BitVec 64) |ldv_zalloc::tmp@5|) +(define-fun _1931 () Bool (= _1929 _1930)) +(define-fun _1932 () Bool (and _1928 _1931)) +(define-fun _1933 () Bool (and _1922 _1932)) +(define-fun _1934 () (_ BitVec 64) |ldv_zalloc::p@5|) +(define-fun _1935 () Bool (= _1930 _1934)) +(define-fun _1936 () Bool (and _1933 _1935)) +(define-fun _1937 () Bool (= _1934 _8)) +(define-fun _1938 () Bool (not _1937)) +(define-fun _1940 () Bool (and _1936 _1938)) +(define-fun _1942 () (_ BitVec 64) |ldv_zalloc::__retval__@3|) +(define-fun _1943 () Bool (= _1934 _1942)) +(define-fun _1944 () Bool (and _1940 _1943)) +(define-fun _1945 () Bool (= _1942 _8)) +(define-fun _1946 () Bool (and _1921 _1945)) +(define-fun _1947 () Bool (= _1785 _1923)) +(define-fun _1948 () (_ BitVec 64) |ldv_zalloc::p@4|) +(define-fun _1949 () Bool (= _1934 _1948)) +(define-fun _1950 () Bool (and _1947 _1949)) +(define-fun _1951 () (_ BitVec 64) |ldv_zalloc::tmp@4|) +(define-fun _1952 () Bool (= _1930 _1951)) +(define-fun _1953 () Bool (and _1950 _1952)) +(define-fun _1954 () Bool (and _1946 _1953)) +(define-fun _1955 () Bool (or _1944 _1954)) +(define-fun _1956 () (_ BitVec 64) |ldv_initialize_rtl_btc_ops_1::tmp@3|) +(define-fun _1957 () Bool (= _1942 _1956)) +(define-fun _1958 () Bool (and _1955 _1957)) +(define-fun _1964 () (_ BitVec 64) (_ bv3704 64)) +(define-fun _1965 () (_ BitVec 64) (bvadd _1964 _1927)) +(define-fun _1967 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_ieee80211_hw)*@1|) +(define-fun _1968 () (Array (_ BitVec 64) (_ BitVec 64)) (store _1967 _1965 _8)) +(define-fun _1969 () Bool (= _1967 _1968)) +(define-fun _1972 () (_ BitVec 64) (_ bv3720 64)) +(define-fun _1973 () (_ BitVec 64) (bvadd _1972 _1927)) +(define-fun _1975 () (Array (_ BitVec 64) (_ BitVec 32)) *enum_nl80211_iftype@1) +(define-fun _1976 () (Array (_ BitVec 64) (_ BitVec 32)) (store _1975 _1973 _15)) +(define-fun _1977 () Bool (= _1975 _1976)) +(define-fun _1978 () Bool (and _1969 _1977)) +(define-fun _1982 () (_ BitVec 64) (_ bv4016 64)) +(define-fun _1983 () (_ BitVec 64) (bvadd _1982 _1927)) +(define-fun _1984 () (Array (_ BitVec 64) (_ BitVec 32)) *enum_rtl_link_state@1) +(define-fun _1985 () (Array (_ BitVec 64) (_ BitVec 32)) (store _1984 _1983 _15)) +(define-fun _1986 () Bool (= _1984 _1985)) +(define-fun _1987 () Bool (and _1978 _1986)) +(define-fun _1991 () (_ BitVec 64) (_ bv4042 64)) +(define-fun _1992 () (_ BitVec 64) (bvadd _1991 _1927)) +(define-fun _1993 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _1992 _37)) +(define-fun _1994 () Bool (= _40 _1993)) +(define-fun _1995 () Bool (and _1987 _1994)) +(define-fun _1999 () (_ BitVec 64) (_ bv4948 64)) +(define-fun _2000 () (_ BitVec 64) (bvadd _1999 _1927)) +(define-fun _2001 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2000 _37)) +(define-fun _2002 () Bool (= _51 _2001)) +(define-fun _2003 () Bool (and _1995 _2002)) +(define-fun _2010 () (_ BitVec 64) (_ bv5204 64)) +(define-fun _2011 () (_ BitVec 64) (bvadd _2010 _1927)) +(define-fun _2012 () (Array (_ BitVec 64) (_ BitVec 16)) (store _322 _2011 _318)) +(define-fun _2013 () Bool (= _322 _2012)) +(define-fun _2017 () (_ BitVec 64) (_ bv5232 64)) +(define-fun _2018 () (_ BitVec 64) (bvadd _2017 _1927)) +(define-fun _2019 () (Array (_ BitVec 64) (_ BitVec 16)) (store _322 _2018 _318)) +(define-fun _2020 () Bool (= _322 _2019)) +(define-fun _2021 () Bool (and _2013 _2020)) +(define-fun _2022 () Bool (and _2003 _2021)) +(define-fun _2028 () (_ BitVec 64) (_ bv5536 64)) +(define-fun _2029 () (_ BitVec 64) (bvadd _2028 _1927)) +(define-fun _2030 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[char],_VarArgs:_false)*@1|) +(define-fun _2031 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2030 _2029 _8)) +(define-fun _2032 () Bool (= _2030 _2031)) +(define-fun _2035 () (_ BitVec 64) (_ bv5544 64)) +(define-fun _2036 () (_ BitVec 64) (bvadd _2035 _1927)) +(define-fun _2037 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[short_int],_VarArgs:_false)*@1|) +(define-fun _2038 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2037 _2036 _8)) +(define-fun _2039 () Bool (= _2037 _2038)) +(define-fun _2040 () Bool (and _2032 _2039)) +(define-fun _2044 () (_ BitVec 64) (_ bv5552 64)) +(define-fun _2045 () (_ BitVec 64) (bvadd _2044 _1927)) +(define-fun _2046 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_3,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_Parameter_3_type:_[int],_VarArgs:_false)*@1|) +(define-fun _2047 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2046 _2045 _8)) +(define-fun _2048 () Bool (= _2046 _2047)) +(define-fun _2049 () Bool (and _2040 _2048)) +(define-fun _2052 () (_ BitVec 64) (_ bv5568 64)) +(define-fun _2053 () (_ BitVec 64) (bvadd _2052 _1927)) +(define-fun _2054 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[char],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _2055 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2054 _2053 _8)) +(define-fun _2056 () Bool (= _2054 _2055)) +(define-fun _2057 () Bool (and _2049 _2056)) +(define-fun _2060 () (_ BitVec 64) (_ bv5576 64)) +(define-fun _2061 () (_ BitVec 64) (bvadd _2060 _1927)) +(define-fun _2062 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[short_int],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _2063 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2062 _2061 _8)) +(define-fun _2064 () Bool (= _2062 _2063)) +(define-fun _2065 () Bool (and _2057 _2064)) +(define-fun _2068 () (_ BitVec 64) (_ bv5584 64)) +(define-fun _2069 () (_ BitVec 64) (bvadd _2068 _1927)) +(define-fun _2070 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[int],_Parameters:_2,_Parameter_1_type:_[(struct_rtl_priv)*],_Parameter_2_type:_[int],_VarArgs:_false)*@1|) +(define-fun _2071 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2070 _2069 _8)) +(define-fun _2072 () Bool (= _2070 _2071)) +(define-fun _2073 () Bool (and _2065 _2072)) +(define-fun _2074 () Bool (and _2022 _2073)) +(define-fun _2081 () (_ BitVec 64) (_ bv5894 64)) +(define-fun _2082 () (_ BitVec 64) (bvadd _2081 _1927)) +(define-fun _2083 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2082 _37)) +(define-fun _2084 () Bool (= _51 _2083)) +(define-fun _2088 () (_ BitVec 64) (_ bv5899 64)) +(define-fun _2089 () (_ BitVec 64) (bvadd _2088 _1927)) +(define-fun _2090 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2089 _37)) +(define-fun _2091 () Bool (= _51 _2090)) +(define-fun _2092 () Bool (and _2084 _2091)) +(define-fun _2093 () Bool (and _2074 _2092)) +(define-fun _2099 () (_ BitVec 64) (_ bv12168 64)) +(define-fun _2100 () (_ BitVec 64) (bvadd _2099 _1927)) +(define-fun _2101 () (Array (_ BitVec 64) (_ BitVec 64)) *long_int@1) +(define-fun _2102 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2101 _2100 _8)) +(define-fun _2103 () Bool (= _2101 _2102)) +(define-fun _2104 () Bool (and _2093 _2103)) +(define-fun _2110 () (_ BitVec 64) (_ bv13836 64)) +(define-fun _2111 () (_ BitVec 64) (bvadd _2110 _1927)) +(define-fun _2112 () (Array (_ BitVec 64) (_ BitVec 32)) *enum_rt_enc_alg@1) +(define-fun _2113 () (Array (_ BitVec 64) (_ BitVec 32)) (store _2112 _2111 _15)) +(define-fun _2114 () Bool (= _2112 _2113)) +(define-fun _2115 () Bool (and _2104 _2114)) +(define-fun _2121 () (_ BitVec 64) (_ bv18904 64)) +(define-fun _2122 () (_ BitVec 64) (bvadd _2121 _1927)) +(define-fun _2123 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _2122 _37)) +(define-fun _2124 () Bool (= _40 _2123)) +(define-fun _2127 () (_ BitVec 64) (_ bv18905 64)) +(define-fun _2128 () (_ BitVec 64) (bvadd _2127 _1927)) +(define-fun _2129 () (Array (_ BitVec 64) (_ BitVec 8)) (store _40 _2128 _37)) +(define-fun _2130 () Bool (= _40 _2129)) +(define-fun _2131 () Bool (and _2124 _2130)) +(define-fun _2132 () Bool (and _2115 _2131)) +(define-fun _2138 () (_ BitVec 64) (_ bv19260 64)) +(define-fun _2139 () (_ BitVec 64) (bvadd _2138 _1927)) +(define-fun _2140 () (Array (_ BitVec 64) (_ BitVec 32)) (store _19 _2139 _15)) +(define-fun _2141 () Bool (= _19 _2140)) +(define-fun _2144 () (_ BitVec 64) (_ bv19264 64)) +(define-fun _2145 () (_ BitVec 64) (bvadd _2144 _1927)) +(define-fun _2146 () (Array (_ BitVec 64) (_ BitVec 64)) *long_long_int@1) +(define-fun _2147 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2146 _2145 _8)) +(define-fun _2148 () Bool (= _2146 _2147)) +(define-fun _2149 () Bool (and _2141 _2148)) +(define-fun _2150 () Bool (and _2132 _2149)) +(define-fun _2151 () (_ BitVec 64) (_ bv19312 64)) +(define-fun _2153 () (_ BitVec 64) (bvadd _2151 _1927)) +(define-fun _2154 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_rtl_hal_cfg)*@1|) +(define-fun _2155 () (Array (_ BitVec 64) (_ BitVec 64)) (store _2154 _2153 _8)) +(define-fun _2156 () Bool (= _2154 _2155)) +(define-fun _2157 () Bool (and _2150 _2156)) +(define-fun _2163 () (_ BitVec 64) (_ bv19560 64)) +(define-fun _2164 () (_ BitVec 64) (bvadd _2163 _1927)) +(define-fun _2167 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2164 _37)) +(define-fun _2168 () Bool (= _51 _2167)) +(define-fun _2171 () (_ BitVec 64) (_ bv19561 64)) +(define-fun _2172 () (_ BitVec 64) (bvadd _2171 _1927)) +(define-fun _2173 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2172 _37)) +(define-fun _2174 () Bool (= _51 _2173)) +(define-fun _2175 () Bool (and _2168 _2174)) +(define-fun _2178 () (_ BitVec 64) (_ bv19562 64)) +(define-fun _2179 () (_ BitVec 64) (bvadd _2178 _1927)) +(define-fun _2180 () (Array (_ BitVec 64) (_ BitVec 8)) (store _51 _2179 _37)) +(define-fun _2181 () Bool (= _51 _2180)) +(define-fun _2182 () Bool (and _2175 _2181)) +(define-fun _2183 () Bool (and _2157 _2182)) +(define-fun _2184 () Bool (bvslt _1829 _1927)) +(define-fun _2185 () Bool (bvslt _1826 _1927)) +(define-fun _2187 () (_ BitVec 64) (bvadd _1910 _1927)) +(define-fun _2188 () Bool (bvslt _8 _2187)) +(define-fun _2190 () (_ BitVec 64) (bvadd _1911 _1927)) +(define-fun _2191 () Bool (bvslt _8 _2190)) +(define-fun _2192 () (_ BitVec 64) rtl_btc_operation_group0@3) +(define-fun _2193 () Bool (= _1956 _2192)) +(define-fun _2194 () Bool (and _2183 _2184)) +(define-fun _2195 () Bool (and _2185 _2194)) +(define-fun _2196 () Bool (and _2188 _2195)) +(define-fun _2197 () Bool (and _2191 _2196)) +(define-fun _2198 () Bool (and _2193 _2197)) +(define-fun _2199 () Bool (and _1958 _2198)) +(define-fun _2202 () Bool (and _1899 _2199)) +(define-fun _2203 () Bool (= _1853 _106)) +(define-fun _2206 () Bool (not _2203)) +(define-fun _2207 () Bool (and _1881 _2206)) +(define-fun _2208 () Bool (= _1875 _1914)) +(define-fun _2209 () Bool (and _1947 _2208)) +(define-fun _2210 () (_ BitVec 64) |ldv_initialize_rtl_btc_ops_1::tmp@1|) +(define-fun _2211 () Bool (= _1956 _2210)) +(define-fun _2212 () Bool (and _2209 _2211)) +(define-fun _2213 () Bool (= _1648 _1896)) +(define-fun _2214 () Bool (and _2212 _2213)) +(define-fun _2215 () Bool (= _1853 _1904)) +(define-fun _2216 () Bool (and _2214 _2215)) +(define-fun _2217 () Bool (= _1847 _1907)) +(define-fun _2218 () Bool (and _2216 _2217)) +(define-fun _2219 () Bool (= _1804 _1942)) +(define-fun _2220 () Bool (and _2218 _2219)) +(define-fun _2221 () Bool (= _1796 _1934)) +(define-fun _2222 () Bool (and _2220 _2221)) +(define-fun _2223 () Bool (= _1773 _1911)) +(define-fun _2224 () Bool (and _2222 _2223)) +(define-fun _2225 () Bool (= _1792 _1930)) +(define-fun _2226 () Bool (and _2224 _2225)) +(define-fun _2227 () Bool (= _1777 _1915)) +(define-fun _2228 () Bool (and _2226 _2227)) +(define-fun _2229 () Bool (= _1624 _2192)) +(define-fun _2230 () Bool (and _2228 _2229)) +(define-fun _2231 () (_ BitVec 32) |rtl_btcoexist_module_init::__retval__@1|) +(define-fun _2232 () Bool (= _1893 _2231)) +(define-fun _2233 () Bool (and _2230 _2232)) +(define-fun _2234 () Bool (and _2207 _2233)) +(define-fun _2235 () Bool (or _2202 _2234)) +(define-fun _2239 () Bool (and _1848 _1862)) +(define-fun _2240 () Bool (= _1856 _1914)) +(define-fun _2241 () Bool (and _1947 _2240)) +(define-fun _2242 () Bool (and _2211 _2241)) +(define-fun _2243 () Bool (and _2213 _2242)) +(define-fun _2244 () Bool (and _2215 _2243)) +(define-fun _2245 () Bool (and _2217 _2244)) +(define-fun _2246 () Bool (and _2219 _2245)) +(define-fun _2247 () Bool (and _2221 _2246)) +(define-fun _2248 () Bool (and _2223 _2247)) +(define-fun _2249 () Bool (and _2225 _2248)) +(define-fun _2250 () Bool (and _2227 _2249)) +(define-fun _2251 () (_ BitVec 32) |main::tmp___6@2|) +(define-fun _2252 () Bool (= _1876 _2251)) +(define-fun _2253 () Bool (and _2250 _2252)) +(define-fun _2254 () Bool (and _2229 _2253)) +(define-fun _2255 () Bool (and _2232 _2254)) +(define-fun _2256 () Bool (and _2239 _2255)) +(define-fun _2257 () Bool (or _2235 _2256)) +(define-fun _2262 () Bool (or _1869 _1888)) +(define-fun _2263 () Bool (or _2257 _2262)) +(assert _2263) +(set-info :status sat) +(check-sat) +(pop 1) +(exit) diff --git a/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.gold b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.gold new file mode 100644 index 000000000..fea55f7e1 --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.gold @@ -0,0 +1,2 @@ +unsat +sat diff --git a/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.options b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.options new file mode 100644 index 000000000..1cb8ff7d0 --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_AUFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/205_9a_array_safes_linux-3.16-rc1.tar.xz-205_9a-drivers--net--wireless--rtlwifi--btcoexist--btcoexist.ko-entry_point.cil.out_smt-query.0.smt2.options @@ -0,0 +1 @@ +--incremental \ No newline at end of file diff --git a/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2 b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2 new file mode 100644 index 000000000..82622280f --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2 @@ -0,0 +1,847 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_UFBVLIA) +(set-info :source | +Generated by: SoSy-Lab +Generated on: 2019-03-07 +Generator: CPAchecker 1.8-svn 30724 using kInduction +Application: Software Verification for programs written in C +Target solver: MathSAT5 +|) +(set-info :license "http://www.apache.org/licenses/LICENSE-2.0") +(set-info :category "industrial") +(set-info :status unsat) + +(push 1) +(define-fun _2 () Bool false) +(assert _2) +(check-sat) +(pop 1) +(push 1) +(declare-fun __string__ (Int) (_ BitVec 32)) +(declare-fun bob@2 () (_ BitVec 32)) +(declare-fun rjh@2 () (_ BitVec 32)) +(declare-fun chuck@2 () (_ BitVec 32)) +(declare-fun __ste_Email_counter@2 () (_ BitVec 32)) +(declare-fun __ste_email_id0@2 () (_ BitVec 32)) +(declare-fun __ste_email_id1@2 () (_ BitVec 32)) +(declare-fun __ste_email_from0@2 () (_ BitVec 32)) +(declare-fun __ste_email_from1@2 () (_ BitVec 32)) +(declare-fun __ste_email_to0@2 () (_ BitVec 32)) +(declare-fun __ste_email_to1@2 () (_ BitVec 32)) +(declare-fun head@2 () (_ BitVec 32)) +(declare-fun __ste_Client_counter@2 () (_ BitVec 32)) +(declare-fun __ste_ClientAddressBook_size0@2 () (_ BitVec 32)) +(declare-fun __ste_ClientAddressBook_size1@2 () (_ BitVec 32)) +(declare-fun __ste_ClientAddressBook_size2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Alias0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Alias1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Alias2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Alias0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Alias1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Alias2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Alias0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Alias1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Alias2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Address0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Address1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Address2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Address0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Address1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook1_Address2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Address0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Address1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook2_Address2@2 () (_ BitVec 32)) +(declare-fun __ste_ClientKeyring_size0@2 () (_ BitVec 32)) +(declare-fun __ste_ClientKeyring_size1@2 () (_ BitVec 32)) +(declare-fun __ste_ClientKeyring_size2@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring0_User0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring0_User1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring1_User0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring1_User1@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring2_User0@2 () (_ BitVec 32)) +(declare-fun __ste_Client_Keyring2_User1@2 () (_ BitVec 32)) +(declare-fun __ste_client_forwardReceiver0@2 () (_ BitVec 32)) +(declare-fun __ste_client_forwardReceiver1@2 () (_ BitVec 32)) +(declare-fun __ste_client_forwardReceiver2@2 () (_ BitVec 32)) +(declare-fun __ste_client_idCounter0@2 () (_ BitVec 32)) +(declare-fun __ste_client_idCounter1@2 () (_ BitVec 32)) +(declare-fun __ste_client_idCounter2@2 () (_ BitVec 32)) +(declare-fun queue_empty@2 () (_ BitVec 32)) +(declare-fun queued_message@2 () (_ BitVec 32)) +(declare-fun queued_client@2 () (_ BitVec 32)) +(declare-fun |valid_product::retValue_acc@3| () (_ BitVec 32)) +(declare-fun |valid_product::__retval__@2| () (_ BitVec 32)) +(declare-fun |main::tmp@3| () (_ BitVec 32)) +(declare-fun bob@3 () (_ BitVec 32)) +(declare-fun |setup_bob::bob___0@2| () (_ BitVec 32)) +(declare-fun |setClientId::handle@2| () (_ BitVec 32)) +(declare-fun |setClientId::value@2| () (_ BitVec 32)) +(declare-fun __ste_client_idCounter0@3 () (_ BitVec 32)) +(declare-fun |setup::__cil_tmp1@3| () (_ BitVec 32)) +(declare-fun rjh@3 () (_ BitVec 32)) +(declare-fun |setup_rjh::rjh___0@2| () (_ BitVec 32)) +(declare-fun |setClientId::handle@3| () (_ BitVec 32)) +(declare-fun |setClientId::value@3| () (_ BitVec 32)) +(declare-fun __ste_client_idCounter1@3 () (_ BitVec 32)) +(declare-fun |setup::__cil_tmp2@3| () (_ BitVec 32)) +(declare-fun chuck@3 () (_ BitVec 32)) +(declare-fun |setup_chuck::chuck___0@2| () (_ BitVec 32)) +(declare-fun |setClientId::handle@4| () (_ BitVec 32)) +(declare-fun |setClientId::value@4| () (_ BitVec 32)) +(declare-fun __ste_client_idCounter2@3 () (_ BitVec 32)) +(declare-fun |setup::__cil_tmp3@3| () (_ BitVec 32)) +(declare-fun |test::op1@3| () (_ BitVec 32)) +(declare-fun |test::op2@3| () (_ BitVec 32)) +(declare-fun |test::op3@3| () (_ BitVec 32)) +(declare-fun |test::op4@3| () (_ BitVec 32)) +(declare-fun |test::op5@3| () (_ BitVec 32)) +(declare-fun |test::op6@3| () (_ BitVec 32)) +(declare-fun |test::op7@3| () (_ BitVec 32)) +(declare-fun |test::op8@3| () (_ BitVec 32)) +(declare-fun |test::op9@3| () (_ BitVec 32)) +(declare-fun |test::op10@3| () (_ BitVec 32)) +(declare-fun |test::op11@3| () (_ BitVec 32)) +(declare-fun |test::splverifierCounter@3| () (_ BitVec 32)) +(declare-fun |test::splverifierCounter@4| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@2 () (_ BitVec 32)) +(declare-fun |test::tmp___9@3| () (_ BitVec 32)) +(declare-fun |test::op1@4| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@3 () (_ BitVec 32)) +(declare-fun |test::tmp___8@3| () (_ BitVec 32)) +(declare-fun |test::op2@4| () (_ BitVec 32)) +(declare-fun |test::tmp___8@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@4 () (_ BitVec 32)) +(declare-fun |test::tmp___7@3| () (_ BitVec 32)) +(declare-fun |test::op3@4| () (_ BitVec 32)) +(declare-fun |test::tmp___7@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@5 () (_ BitVec 32)) +(declare-fun |test::tmp___6@3| () (_ BitVec 32)) +(declare-fun |test::op4@4| () (_ BitVec 32)) +(declare-fun |test::tmp___6@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@6 () (_ BitVec 32)) +(declare-fun |test::tmp___5@3| () (_ BitVec 32)) +(declare-fun |test::op5@4| () (_ BitVec 32)) +(declare-fun |test::tmp___5@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@7 () (_ BitVec 32)) +(declare-fun |test::tmp___4@3| () (_ BitVec 32)) +(declare-fun |setClientForwardReceiver::handle@2| () (_ BitVec 32)) +(declare-fun |setClientForwardReceiver::value@2| () (_ BitVec 32)) +(declare-fun __ste_client_forwardReceiver1@3 () (_ BitVec 32)) +(declare-fun |test::op6@4| () (_ BitVec 32)) +(declare-fun |setClientForwardReceiver::handle@1| () (_ BitVec 32)) +(declare-fun |setClientForwardReceiver::value@1| () (_ BitVec 32)) +(declare-fun |test::tmp___4@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@8 () (_ BitVec 32)) +(declare-fun |test::tmp___3@3| () (_ BitVec 32)) +(declare-fun |test::op7@4| () (_ BitVec 32)) +(declare-fun |test::tmp___3@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@9 () (_ BitVec 32)) +(declare-fun |test::tmp___2@3| () (_ BitVec 32)) +(declare-fun |setClientAddressBookSize::handle@2| () (_ BitVec 32)) +(declare-fun |setClientAddressBookSize::value@2| () (_ BitVec 32)) +(declare-fun __ste_ClientAddressBook_size0@3 () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::handle@2| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::index@2| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::value@2| () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Alias0@3 () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::handle@2| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::index@2| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::value@2| () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Address0@3 () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::handle@3| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::index@3| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::value@3| () (_ BitVec 32)) +(declare-fun __ste_Client_AddressBook0_Address1@3 () (_ BitVec 32)) +(declare-fun |test::op8@4| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::handle@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::index@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAddress::value@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::handle@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::index@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookAlias::value@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookSize::handle@1| () (_ BitVec 32)) +(declare-fun |setClientAddressBookSize::value@1| () (_ BitVec 32)) +(declare-fun |test::tmp___2@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@10 () (_ BitVec 32)) +(declare-fun |test::tmp___1@3| () (_ BitVec 32)) +(declare-fun |test::op9@4| () (_ BitVec 32)) +(declare-fun |test::tmp___1@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@11 () (_ BitVec 32)) +(declare-fun |test::tmp___0@3| () (_ BitVec 32)) +(declare-fun |test::op10@4| () (_ BitVec 32)) +(declare-fun |test::tmp___0@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@12 () (_ BitVec 32)) +(declare-fun |test::tmp@3| () (_ BitVec 32)) +(declare-fun |test::op11@4| () (_ BitVec 32)) +(declare-fun |test::tmp@2| () (_ BitVec 32)) +(define-fun _8 () (_ BitVec 32) (_ bv0 32)) +(define-fun _9 () (_ BitVec 32) (_ bv4 32)) +(define-fun _10 () (_ BitVec 32) bob@2) +(define-fun _11 () Bool (= _10 _8)) +(define-fun _12 () (_ BitVec 32) rjh@2) +(define-fun _13 () Bool (= _12 _8)) +(define-fun _14 () Bool (and _11 _13)) +(define-fun _15 () (_ BitVec 32) chuck@2) +(define-fun _16 () Bool (= _15 _8)) +(define-fun _17 () Bool (and _14 _16)) +(define-fun _18 () (_ BitVec 32) __ste_Email_counter@2) +(define-fun _19 () Bool (= _18 _8)) +(define-fun _20 () Bool (and _17 _19)) +(define-fun _21 () (_ BitVec 32) __ste_email_id0@2) +(define-fun _22 () Bool (= _21 _8)) +(define-fun _23 () Bool (and _20 _22)) +(define-fun _24 () (_ BitVec 32) __ste_email_id1@2) +(define-fun _25 () Bool (= _24 _8)) +(define-fun _26 () Bool (and _23 _25)) +(define-fun _27 () (_ BitVec 32) __ste_email_from0@2) +(define-fun _28 () Bool (= _27 _8)) +(define-fun _29 () Bool (and _26 _28)) +(define-fun _30 () (_ BitVec 32) __ste_email_from1@2) +(define-fun _31 () Bool (= _30 _8)) +(define-fun _32 () Bool (and _29 _31)) +(define-fun _33 () (_ BitVec 32) __ste_email_to0@2) +(define-fun _34 () Bool (= _33 _8)) +(define-fun _35 () Bool (and _32 _34)) +(define-fun _36 () (_ BitVec 32) __ste_email_to1@2) +(define-fun _37 () Bool (= _36 _8)) +(define-fun _38 () Bool (and _35 _37)) +(define-fun _39 () (_ BitVec 32) head@2) +(define-fun _40 () Bool (= _39 _8)) +(define-fun _41 () Bool (and _38 _40)) +(define-fun _42 () (_ BitVec 32) __ste_Client_counter@2) +(define-fun _43 () Bool (= _42 _8)) +(define-fun _44 () Bool (and _41 _43)) +(define-fun _45 () (_ BitVec 32) __ste_ClientAddressBook_size0@2) +(define-fun _46 () Bool (= _45 _8)) +(define-fun _47 () Bool (and _44 _46)) +(define-fun _48 () (_ BitVec 32) __ste_ClientAddressBook_size1@2) +(define-fun _49 () Bool (= _48 _8)) +(define-fun _50 () Bool (and _47 _49)) +(define-fun _51 () (_ BitVec 32) __ste_ClientAddressBook_size2@2) +(define-fun _52 () Bool (= _51 _8)) +(define-fun _53 () Bool (and _50 _52)) +(define-fun _54 () (_ BitVec 32) __ste_Client_AddressBook0_Alias0@2) +(define-fun _55 () Bool (= _54 _8)) +(define-fun _56 () Bool (and _53 _55)) +(define-fun _57 () (_ BitVec 32) __ste_Client_AddressBook0_Alias1@2) +(define-fun _58 () Bool (= _57 _8)) +(define-fun _59 () Bool (and _56 _58)) +(define-fun _60 () (_ BitVec 32) __ste_Client_AddressBook0_Alias2@2) +(define-fun _61 () Bool (= _60 _8)) +(define-fun _62 () Bool (and _59 _61)) +(define-fun _63 () (_ BitVec 32) __ste_Client_AddressBook1_Alias0@2) +(define-fun _64 () Bool (= _63 _8)) +(define-fun _65 () Bool (and _62 _64)) +(define-fun _66 () (_ BitVec 32) __ste_Client_AddressBook1_Alias1@2) +(define-fun _67 () Bool (= _66 _8)) +(define-fun _68 () Bool (and _65 _67)) +(define-fun _69 () (_ BitVec 32) __ste_Client_AddressBook1_Alias2@2) +(define-fun _70 () Bool (= _69 _8)) +(define-fun _71 () Bool (and _68 _70)) +(define-fun _72 () (_ BitVec 32) __ste_Client_AddressBook2_Alias0@2) +(define-fun _73 () Bool (= _72 _8)) +(define-fun _74 () Bool (and _71 _73)) +(define-fun _75 () (_ BitVec 32) __ste_Client_AddressBook2_Alias1@2) +(define-fun _76 () Bool (= _75 _8)) +(define-fun _77 () Bool (and _74 _76)) +(define-fun _78 () (_ BitVec 32) __ste_Client_AddressBook2_Alias2@2) +(define-fun _79 () Bool (= _78 _8)) +(define-fun _80 () Bool (and _77 _79)) +(define-fun _81 () (_ BitVec 32) __ste_Client_AddressBook0_Address0@2) +(define-fun _82 () Bool (= _81 _8)) +(define-fun _83 () Bool (and _80 _82)) +(define-fun _84 () (_ BitVec 32) __ste_Client_AddressBook0_Address1@2) +(define-fun _85 () Bool (= _84 _8)) +(define-fun _86 () Bool (and _83 _85)) +(define-fun _87 () (_ BitVec 32) __ste_Client_AddressBook0_Address2@2) +(define-fun _88 () Bool (= _87 _8)) +(define-fun _89 () Bool (and _86 _88)) +(define-fun _90 () (_ BitVec 32) __ste_Client_AddressBook1_Address0@2) +(define-fun _91 () Bool (= _90 _8)) +(define-fun _92 () Bool (and _89 _91)) +(define-fun _93 () (_ BitVec 32) __ste_Client_AddressBook1_Address1@2) +(define-fun _94 () Bool (= _93 _8)) +(define-fun _95 () Bool (and _92 _94)) +(define-fun _96 () (_ BitVec 32) __ste_Client_AddressBook1_Address2@2) +(define-fun _97 () Bool (= _96 _8)) +(define-fun _98 () Bool (and _95 _97)) +(define-fun _99 () (_ BitVec 32) __ste_Client_AddressBook2_Address0@2) +(define-fun _100 () Bool (= _99 _8)) +(define-fun _101 () Bool (and _98 _100)) +(define-fun _102 () (_ BitVec 32) __ste_Client_AddressBook2_Address1@2) +(define-fun _103 () Bool (= _102 _8)) +(define-fun _104 () Bool (and _101 _103)) +(define-fun _105 () (_ BitVec 32) __ste_Client_AddressBook2_Address2@2) +(define-fun _106 () Bool (= _105 _8)) +(define-fun _107 () Bool (and _104 _106)) +(define-fun _108 () (_ BitVec 32) __ste_ClientKeyring_size0@2) +(define-fun _109 () Bool (= _108 _8)) +(define-fun _110 () Bool (and _107 _109)) +(define-fun _111 () (_ BitVec 32) __ste_ClientKeyring_size1@2) +(define-fun _112 () Bool (= _111 _8)) +(define-fun _113 () Bool (and _110 _112)) +(define-fun _114 () (_ BitVec 32) __ste_ClientKeyring_size2@2) +(define-fun _115 () Bool (= _114 _8)) +(define-fun _116 () Bool (and _113 _115)) +(define-fun _117 () (_ BitVec 32) __ste_Client_Keyring0_User0@2) +(define-fun _118 () Bool (= _117 _8)) +(define-fun _119 () Bool (and _116 _118)) +(define-fun _120 () (_ BitVec 32) __ste_Client_Keyring0_User1@2) +(define-fun _121 () Bool (= _120 _8)) +(define-fun _122 () Bool (and _119 _121)) +(define-fun _123 () (_ BitVec 32) __ste_Client_Keyring1_User0@2) +(define-fun _124 () Bool (= _123 _8)) +(define-fun _125 () Bool (and _122 _124)) +(define-fun _126 () (_ BitVec 32) __ste_Client_Keyring1_User1@2) +(define-fun _127 () Bool (= _126 _8)) +(define-fun _128 () Bool (and _125 _127)) +(define-fun _129 () (_ BitVec 32) __ste_Client_Keyring2_User0@2) +(define-fun _130 () Bool (= _129 _8)) +(define-fun _131 () Bool (and _128 _130)) +(define-fun _132 () (_ BitVec 32) __ste_Client_Keyring2_User1@2) +(define-fun _133 () Bool (= _132 _8)) +(define-fun _134 () Bool (and _131 _133)) +(define-fun _135 () (_ BitVec 32) __ste_client_forwardReceiver0@2) +(define-fun _136 () Bool (= _135 _8)) +(define-fun _137 () Bool (and _134 _136)) +(define-fun _138 () (_ BitVec 32) __ste_client_forwardReceiver1@2) +(define-fun _139 () Bool (= _138 _8)) +(define-fun _140 () Bool (and _137 _139)) +(define-fun _141 () (_ BitVec 32) __ste_client_forwardReceiver2@2) +(define-fun _142 () Bool (= _141 _8)) +(define-fun _143 () Bool (and _140 _142)) +(define-fun _144 () (_ BitVec 32) __ste_client_idCounter0@2) +(define-fun _145 () Bool (= _144 _8)) +(define-fun _146 () Bool (and _143 _145)) +(define-fun _147 () (_ BitVec 32) __ste_client_idCounter1@2) +(define-fun _148 () Bool (= _147 _8)) +(define-fun _149 () Bool (and _146 _148)) +(define-fun _150 () (_ BitVec 32) __ste_client_idCounter2@2) +(define-fun _151 () Bool (= _150 _8)) +(define-fun _152 () Bool (and _149 _151)) +(define-fun _153 () (_ BitVec 32) (_ bv1 32)) +(define-fun _154 () (_ BitVec 32) queue_empty@2) +(define-fun _155 () Bool (= _154 _153)) +(define-fun _156 () Bool (and _152 _155)) +(define-fun _157 () (_ BitVec 32) queued_message@2) +(define-fun _158 () Bool (= _157 _8)) +(define-fun _159 () Bool (and _156 _158)) +(define-fun _160 () (_ BitVec 32) queued_client@2) +(define-fun _161 () Bool (= _160 _8)) +(define-fun _162 () Bool (and _159 _161)) +(define-fun _163 () (_ BitVec 32) |valid_product::retValue_acc@3|) +(define-fun _164 () Bool (= _163 _153)) +(define-fun _165 () Bool (and _162 _164)) +(define-fun _166 () (_ BitVec 32) |valid_product::__retval__@2|) +(define-fun _167 () Bool (= _163 _166)) +(define-fun _168 () Bool (and _165 _167)) +(define-fun _169 () (_ BitVec 32) |main::tmp@3|) +(define-fun _170 () Bool (= _166 _169)) +(define-fun _171 () Bool (and _168 _170)) +(define-fun _172 () Bool (= _169 _8)) +(define-fun _175 () Bool (not _172)) +(define-fun _176 () Bool (and _171 _175)) +(define-fun _177 () (_ BitVec 32) bob@3) +(define-fun _178 () Bool (= _177 _153)) +(define-fun _179 () Bool (and _176 _178)) +(define-fun _180 () (_ BitVec 32) |setup_bob::bob___0@2|) +(define-fun _181 () Bool (= _177 _180)) +(define-fun _182 () Bool (and _179 _181)) +(define-fun _183 () (_ BitVec 32) |setClientId::handle@2|) +(define-fun _184 () Bool (= _180 _183)) +(define-fun _185 () (_ BitVec 32) |setClientId::value@2|) +(define-fun _186 () Bool (= _180 _185)) +(define-fun _187 () Bool (and _184 _186)) +(define-fun _188 () Bool (and _182 _187)) +(define-fun _189 () Bool (= _183 _153)) +(define-fun _191 () Bool (and _188 _189)) +(define-fun _194 () (_ BitVec 32) __ste_client_idCounter0@3) +(define-fun _195 () Bool (= _185 _194)) +(define-fun _196 () Bool (and _191 _195)) +(define-fun _197 () Int 0) +(define-fun _198 () (_ BitVec 32) (__string__ _197)) +(define-fun _199 () (_ BitVec 32) |setup::__cil_tmp1@3|) +(define-fun _200 () Bool (= _198 _199)) +(define-fun _201 () Bool (and _196 _200)) +(define-fun _203 () (_ BitVec 32) (_ bv2 32)) +(define-fun _204 () (_ BitVec 32) rjh@3) +(define-fun _205 () Bool (= _204 _203)) +(define-fun _206 () Bool (and _201 _205)) +(define-fun _207 () (_ BitVec 32) |setup_rjh::rjh___0@2|) +(define-fun _208 () Bool (= _204 _207)) +(define-fun _209 () Bool (and _206 _208)) +(define-fun _210 () (_ BitVec 32) |setClientId::handle@3|) +(define-fun _211 () Bool (= _207 _210)) +(define-fun _212 () (_ BitVec 32) |setClientId::value@3|) +(define-fun _213 () Bool (= _207 _212)) +(define-fun _214 () Bool (and _211 _213)) +(define-fun _215 () Bool (and _209 _214)) +(define-fun _216 () Bool (= _210 _153)) +(define-fun _219 () Bool (not _216)) +(define-fun _220 () Bool (and _215 _219)) +(define-fun _221 () Bool (= _210 _203)) +(define-fun _223 () Bool (and _220 _221)) +(define-fun _226 () (_ BitVec 32) __ste_client_idCounter1@3) +(define-fun _227 () Bool (= _212 _226)) +(define-fun _228 () Bool (and _223 _227)) +(define-fun _229 () Int 1) +(define-fun _230 () (_ BitVec 32) (__string__ _229)) +(define-fun _231 () (_ BitVec 32) |setup::__cil_tmp2@3|) +(define-fun _232 () Bool (= _230 _231)) +(define-fun _233 () Bool (and _228 _232)) +(define-fun _235 () (_ BitVec 32) (_ bv3 32)) +(define-fun _236 () (_ BitVec 32) chuck@3) +(define-fun _237 () Bool (= _236 _235)) +(define-fun _238 () Bool (and _233 _237)) +(define-fun _239 () (_ BitVec 32) |setup_chuck::chuck___0@2|) +(define-fun _240 () Bool (= _236 _239)) +(define-fun _241 () Bool (and _238 _240)) +(define-fun _242 () (_ BitVec 32) |setClientId::handle@4|) +(define-fun _243 () Bool (= _239 _242)) +(define-fun _244 () (_ BitVec 32) |setClientId::value@4|) +(define-fun _245 () Bool (= _239 _244)) +(define-fun _246 () Bool (and _243 _245)) +(define-fun _247 () Bool (and _241 _246)) +(define-fun _248 () Bool (= _242 _153)) +(define-fun _251 () Bool (not _248)) +(define-fun _252 () Bool (and _247 _251)) +(define-fun _253 () Bool (= _242 _203)) +(define-fun _256 () Bool (not _253)) +(define-fun _257 () Bool (and _252 _256)) +(define-fun _258 () Bool (= _242 _235)) +(define-fun _260 () Bool (and _257 _258)) +(define-fun _263 () (_ BitVec 32) __ste_client_idCounter2@3) +(define-fun _264 () Bool (= _244 _263)) +(define-fun _265 () Bool (and _260 _264)) +(define-fun _266 () Int 2) +(define-fun _267 () (_ BitVec 32) (__string__ _266)) +(define-fun _268 () (_ BitVec 32) |setup::__cil_tmp3@3|) +(define-fun _269 () Bool (= _267 _268)) +(define-fun _270 () Bool (and _265 _269)) +(define-fun _272 () (_ BitVec 32) |test::op1@3|) +(define-fun _273 () Bool (= _272 _8)) +(define-fun _274 () Bool (and _270 _273)) +(define-fun _275 () (_ BitVec 32) |test::op2@3|) +(define-fun _276 () Bool (= _275 _8)) +(define-fun _277 () Bool (and _274 _276)) +(define-fun _278 () (_ BitVec 32) |test::op3@3|) +(define-fun _279 () Bool (= _278 _8)) +(define-fun _280 () Bool (and _277 _279)) +(define-fun _281 () (_ BitVec 32) |test::op4@3|) +(define-fun _282 () Bool (= _281 _8)) +(define-fun _283 () Bool (and _280 _282)) +(define-fun _284 () (_ BitVec 32) |test::op5@3|) +(define-fun _285 () Bool (= _284 _8)) +(define-fun _286 () Bool (and _283 _285)) +(define-fun _287 () (_ BitVec 32) |test::op6@3|) +(define-fun _288 () Bool (= _287 _8)) +(define-fun _289 () Bool (and _286 _288)) +(define-fun _290 () (_ BitVec 32) |test::op7@3|) +(define-fun _291 () Bool (= _290 _8)) +(define-fun _292 () Bool (and _289 _291)) +(define-fun _293 () (_ BitVec 32) |test::op8@3|) +(define-fun _294 () Bool (= _293 _8)) +(define-fun _295 () Bool (and _292 _294)) +(define-fun _296 () (_ BitVec 32) |test::op9@3|) +(define-fun _297 () Bool (= _296 _8)) +(define-fun _298 () Bool (and _295 _297)) +(define-fun _299 () (_ BitVec 32) |test::op10@3|) +(define-fun _300 () Bool (= _299 _8)) +(define-fun _301 () Bool (and _298 _300)) +(define-fun _302 () (_ BitVec 32) |test::op11@3|) +(define-fun _303 () Bool (= _302 _8)) +(define-fun _304 () Bool (and _301 _303)) +(define-fun _305 () (_ BitVec 32) |test::splverifierCounter@3|) +(define-fun _306 () Bool (= _305 _8)) +(define-fun _307 () Bool (and _304 _306)) +(define-fun _308 () Bool (bvslt _305 _9)) +(define-fun _310 () Bool (and _307 _308)) +(define-fun _314 () (_ BitVec 32) (bvadd _153 _305)) +(define-fun _315 () (_ BitVec 32) |test::splverifierCounter@4|) +(define-fun _316 () Bool (= _314 _315)) +(define-fun _317 () Bool (and _310 _316)) +(define-fun _319 () Bool (and _273 _317)) +(define-fun _322 () (_ BitVec 32) __VERIFIER_nondet_int@2) +(define-fun _323 () (_ BitVec 32) |test::tmp___9@3|) +(define-fun _324 () Bool (= _322 _323)) +(define-fun _325 () Bool (and _319 _324)) +(define-fun _326 () Bool (= _323 _8)) +(define-fun _328 () Bool (and _325 _326)) +(define-fun _329 () Bool (not _326)) +(define-fun _330 () Bool (and _325 _329)) +(define-fun _331 () (_ BitVec 32) |test::op1@4|) +(define-fun _332 () Bool (= _331 _153)) +(define-fun _333 () Bool (and _330 _332)) +(define-fun _335 () Bool (and _276 _328)) +(define-fun _338 () (_ BitVec 32) __VERIFIER_nondet_int@3) +(define-fun _339 () (_ BitVec 32) |test::tmp___8@3|) +(define-fun _340 () Bool (= _338 _339)) +(define-fun _341 () Bool (and _335 _340)) +(define-fun _342 () Bool (= _339 _8)) +(define-fun _344 () Bool (and _341 _342)) +(define-fun _345 () Bool (not _342)) +(define-fun _346 () Bool (and _341 _345)) +(define-fun _347 () (_ BitVec 32) |test::op2@4|) +(define-fun _348 () Bool (= _347 _153)) +(define-fun _349 () Bool (and _346 _348)) +(define-fun _350 () Bool (= _322 _338)) +(define-fun _351 () Bool (= _272 _331)) +(define-fun _352 () Bool (= _275 _347)) +(define-fun _353 () Bool (and _350 _352)) +(define-fun _354 () (_ BitVec 32) |test::tmp___8@2|) +(define-fun _355 () Bool (= _339 _354)) +(define-fun _356 () Bool (and _353 _355)) +(define-fun _357 () Bool (and _349 _351)) +(define-fun _358 () Bool (and _333 _356)) +(define-fun _359 () Bool (or _357 _358)) +(define-fun _361 () Bool (and _279 _344)) +(define-fun _364 () (_ BitVec 32) __VERIFIER_nondet_int@4) +(define-fun _365 () (_ BitVec 32) |test::tmp___7@3|) +(define-fun _366 () Bool (= _364 _365)) +(define-fun _367 () Bool (and _361 _366)) +(define-fun _368 () Bool (= _365 _8)) +(define-fun _370 () Bool (and _367 _368)) +(define-fun _371 () Bool (not _368)) +(define-fun _372 () Bool (and _367 _371)) +(define-fun _373 () (_ BitVec 32) |test::op3@4|) +(define-fun _374 () Bool (= _373 _153)) +(define-fun _375 () Bool (and _372 _374)) +(define-fun _376 () Bool (= _338 _364)) +(define-fun _377 () Bool (and _351 _352)) +(define-fun _378 () Bool (= _278 _373)) +(define-fun _379 () Bool (and _376 _378)) +(define-fun _380 () (_ BitVec 32) |test::tmp___7@2|) +(define-fun _381 () Bool (= _365 _380)) +(define-fun _382 () Bool (and _379 _381)) +(define-fun _383 () Bool (and _375 _377)) +(define-fun _384 () Bool (and _359 _382)) +(define-fun _385 () Bool (or _383 _384)) +(define-fun _387 () Bool (and _282 _370)) +(define-fun _390 () (_ BitVec 32) __VERIFIER_nondet_int@5) +(define-fun _391 () (_ BitVec 32) |test::tmp___6@3|) +(define-fun _392 () Bool (= _390 _391)) +(define-fun _393 () Bool (and _387 _392)) +(define-fun _394 () Bool (= _391 _8)) +(define-fun _396 () Bool (and _393 _394)) +(define-fun _397 () Bool (not _394)) +(define-fun _398 () Bool (and _393 _397)) +(define-fun _399 () (_ BitVec 32) |test::op4@4|) +(define-fun _400 () Bool (= _399 _153)) +(define-fun _401 () Bool (and _398 _400)) +(define-fun _402 () Bool (= _364 _390)) +(define-fun _403 () Bool (and _377 _378)) +(define-fun _404 () Bool (= _281 _399)) +(define-fun _405 () Bool (and _402 _404)) +(define-fun _406 () (_ BitVec 32) |test::tmp___6@2|) +(define-fun _407 () Bool (= _391 _406)) +(define-fun _408 () Bool (and _405 _407)) +(define-fun _409 () Bool (and _401 _403)) +(define-fun _410 () Bool (and _385 _408)) +(define-fun _411 () Bool (or _409 _410)) +(define-fun _413 () Bool (and _285 _396)) +(define-fun _416 () (_ BitVec 32) __VERIFIER_nondet_int@6) +(define-fun _417 () (_ BitVec 32) |test::tmp___5@3|) +(define-fun _418 () Bool (= _416 _417)) +(define-fun _419 () Bool (and _413 _418)) +(define-fun _420 () Bool (= _417 _8)) +(define-fun _422 () Bool (and _419 _420)) +(define-fun _423 () Bool (not _420)) +(define-fun _424 () Bool (and _419 _423)) +(define-fun _425 () (_ BitVec 32) |test::op5@4|) +(define-fun _426 () Bool (= _425 _153)) +(define-fun _427 () Bool (and _424 _426)) +(define-fun _428 () Bool (= _390 _416)) +(define-fun _429 () Bool (and _403 _404)) +(define-fun _430 () Bool (= _284 _425)) +(define-fun _431 () Bool (and _428 _430)) +(define-fun _432 () (_ BitVec 32) |test::tmp___5@2|) +(define-fun _433 () Bool (= _417 _432)) +(define-fun _434 () Bool (and _431 _433)) +(define-fun _435 () Bool (and _427 _429)) +(define-fun _436 () Bool (and _411 _434)) +(define-fun _437 () Bool (or _435 _436)) +(define-fun _439 () Bool (and _288 _422)) +(define-fun _442 () (_ BitVec 32) __VERIFIER_nondet_int@7) +(define-fun _443 () (_ BitVec 32) |test::tmp___4@3|) +(define-fun _444 () Bool (= _442 _443)) +(define-fun _445 () Bool (and _439 _444)) +(define-fun _446 () Bool (= _443 _8)) +(define-fun _448 () Bool (and _445 _446)) +(define-fun _449 () Bool (not _446)) +(define-fun _450 () Bool (and _445 _449)) +(define-fun _451 () (_ BitVec 32) |setClientForwardReceiver::handle@2|) +(define-fun _452 () Bool (= _204 _451)) +(define-fun _453 () (_ BitVec 32) |setClientForwardReceiver::value@2|) +(define-fun _454 () Bool (= _236 _453)) +(define-fun _455 () Bool (and _452 _454)) +(define-fun _456 () Bool (and _450 _455)) +(define-fun _457 () Bool (= _451 _153)) +(define-fun _460 () Bool (not _457)) +(define-fun _461 () Bool (and _456 _460)) +(define-fun _462 () Bool (= _451 _203)) +(define-fun _464 () Bool (and _461 _462)) +(define-fun _467 () (_ BitVec 32) __ste_client_forwardReceiver1@3) +(define-fun _468 () Bool (= _453 _467)) +(define-fun _469 () Bool (and _464 _468)) +(define-fun _470 () (_ BitVec 32) |test::op6@4|) +(define-fun _471 () Bool (= _470 _153)) +(define-fun _472 () Bool (and _469 _471)) +(define-fun _473 () Bool (= _416 _442)) +(define-fun _474 () Bool (= _138 _467)) +(define-fun _475 () Bool (and _473 _474)) +(define-fun _476 () (_ BitVec 32) |setClientForwardReceiver::handle@1|) +(define-fun _477 () Bool (= _451 _476)) +(define-fun _478 () Bool (and _475 _477)) +(define-fun _479 () (_ BitVec 32) |setClientForwardReceiver::value@1|) +(define-fun _480 () Bool (= _453 _479)) +(define-fun _481 () Bool (and _478 _480)) +(define-fun _482 () Bool (and _429 _430)) +(define-fun _483 () Bool (= _287 _470)) +(define-fun _484 () Bool (and _481 _483)) +(define-fun _485 () (_ BitVec 32) |test::tmp___4@2|) +(define-fun _486 () Bool (= _443 _485)) +(define-fun _487 () Bool (and _484 _486)) +(define-fun _488 () Bool (and _472 _482)) +(define-fun _489 () Bool (and _437 _487)) +(define-fun _490 () Bool (or _488 _489)) +(define-fun _492 () Bool (and _291 _448)) +(define-fun _495 () (_ BitVec 32) __VERIFIER_nondet_int@8) +(define-fun _496 () (_ BitVec 32) |test::tmp___3@3|) +(define-fun _497 () Bool (= _495 _496)) +(define-fun _498 () Bool (and _492 _497)) +(define-fun _499 () Bool (= _496 _8)) +(define-fun _501 () Bool (and _498 _499)) +(define-fun _502 () Bool (not _499)) +(define-fun _503 () Bool (and _498 _502)) +(define-fun _504 () (_ BitVec 32) |test::op7@4|) +(define-fun _505 () Bool (= _504 _153)) +(define-fun _506 () Bool (and _503 _505)) +(define-fun _507 () Bool (= _442 _495)) +(define-fun _508 () Bool (and _474 _477)) +(define-fun _509 () Bool (and _480 _508)) +(define-fun _510 () Bool (and _351 _509)) +(define-fun _511 () Bool (and _352 _510)) +(define-fun _512 () Bool (and _378 _511)) +(define-fun _513 () Bool (and _404 _512)) +(define-fun _514 () Bool (and _430 _513)) +(define-fun _515 () Bool (and _483 _514)) +(define-fun _516 () Bool (= _290 _504)) +(define-fun _517 () Bool (and _507 _516)) +(define-fun _518 () (_ BitVec 32) |test::tmp___3@2|) +(define-fun _519 () Bool (= _496 _518)) +(define-fun _520 () Bool (and _517 _519)) +(define-fun _521 () Bool (and _506 _515)) +(define-fun _522 () Bool (and _490 _520)) +(define-fun _523 () Bool (or _521 _522)) +(define-fun _525 () Bool (and _294 _501)) +(define-fun _528 () (_ BitVec 32) __VERIFIER_nondet_int@9) +(define-fun _529 () (_ BitVec 32) |test::tmp___2@3|) +(define-fun _530 () Bool (= _528 _529)) +(define-fun _531 () Bool (and _525 _530)) +(define-fun _532 () Bool (= _529 _8)) +(define-fun _534 () Bool (and _531 _532)) +(define-fun _535 () Bool (not _532)) +(define-fun _536 () Bool (and _531 _535)) +(define-fun _537 () (_ BitVec 32) |setClientAddressBookSize::handle@2|) +(define-fun _538 () Bool (= _177 _537)) +(define-fun _539 () (_ BitVec 32) |setClientAddressBookSize::value@2|) +(define-fun _540 () Bool (= _539 _153)) +(define-fun _541 () Bool (and _538 _540)) +(define-fun _542 () Bool (and _536 _541)) +(define-fun _543 () Bool (= _537 _153)) +(define-fun _545 () Bool (and _542 _543)) +(define-fun _548 () (_ BitVec 32) __ste_ClientAddressBook_size0@3) +(define-fun _549 () Bool (= _539 _548)) +(define-fun _550 () Bool (and _545 _549)) +(define-fun _551 () (_ BitVec 32) |setClientAddressBookAlias::handle@2|) +(define-fun _552 () Bool (= _177 _551)) +(define-fun _553 () (_ BitVec 32) |setClientAddressBookAlias::index@2|) +(define-fun _554 () Bool (= _553 _8)) +(define-fun _555 () Bool (and _552 _554)) +(define-fun _556 () (_ BitVec 32) |setClientAddressBookAlias::value@2|) +(define-fun _557 () Bool (= _204 _556)) +(define-fun _558 () Bool (and _555 _557)) +(define-fun _559 () Bool (and _550 _558)) +(define-fun _560 () Bool (= _551 _153)) +(define-fun _562 () Bool (and _559 _560)) +(define-fun _566 () Bool (and _554 _562)) +(define-fun _569 () (_ BitVec 32) __ste_Client_AddressBook0_Alias0@3) +(define-fun _570 () Bool (= _556 _569)) +(define-fun _571 () Bool (and _566 _570)) +(define-fun _572 () (_ BitVec 32) |setClientAddressBookAddress::handle@2|) +(define-fun _573 () Bool (= _177 _572)) +(define-fun _574 () (_ BitVec 32) |setClientAddressBookAddress::index@2|) +(define-fun _575 () Bool (= _574 _8)) +(define-fun _576 () Bool (and _573 _575)) +(define-fun _577 () (_ BitVec 32) |setClientAddressBookAddress::value@2|) +(define-fun _578 () Bool (= _204 _577)) +(define-fun _579 () Bool (and _576 _578)) +(define-fun _580 () Bool (and _571 _579)) +(define-fun _581 () Bool (= _572 _153)) +(define-fun _583 () Bool (and _580 _581)) +(define-fun _587 () Bool (and _575 _583)) +(define-fun _590 () (_ BitVec 32) __ste_Client_AddressBook0_Address0@3) +(define-fun _591 () Bool (= _577 _590)) +(define-fun _592 () Bool (and _587 _591)) +(define-fun _593 () (_ BitVec 32) |setClientAddressBookAddress::handle@3|) +(define-fun _594 () Bool (= _177 _593)) +(define-fun _595 () (_ BitVec 32) |setClientAddressBookAddress::index@3|) +(define-fun _596 () Bool (= _595 _153)) +(define-fun _597 () Bool (and _594 _596)) +(define-fun _598 () (_ BitVec 32) |setClientAddressBookAddress::value@3|) +(define-fun _599 () Bool (= _236 _598)) +(define-fun _600 () Bool (and _597 _599)) +(define-fun _601 () Bool (and _592 _600)) +(define-fun _602 () Bool (= _593 _153)) +(define-fun _604 () Bool (and _601 _602)) +(define-fun _607 () Bool (= _595 _8)) +(define-fun _610 () Bool (not _607)) +(define-fun _611 () Bool (and _604 _610)) +(define-fun _613 () Bool (and _596 _611)) +(define-fun _616 () (_ BitVec 32) __ste_Client_AddressBook0_Address1@3) +(define-fun _617 () Bool (= _598 _616)) +(define-fun _618 () Bool (and _613 _617)) +(define-fun _619 () (_ BitVec 32) |test::op8@4|) +(define-fun _620 () Bool (= _619 _153)) +(define-fun _621 () Bool (and _618 _620)) +(define-fun _622 () Bool (= _495 _528)) +(define-fun _623 () Bool (= _45 _548)) +(define-fun _624 () Bool (and _622 _623)) +(define-fun _625 () Bool (= _81 _590)) +(define-fun _626 () Bool (and _624 _625)) +(define-fun _627 () Bool (= _84 _616)) +(define-fun _628 () Bool (and _626 _627)) +(define-fun _629 () Bool (= _54 _569)) +(define-fun _630 () Bool (and _628 _629)) +(define-fun _631 () (_ BitVec 32) |setClientAddressBookAddress::handle@1|) +(define-fun _632 () Bool (= _593 _631)) +(define-fun _633 () Bool (and _630 _632)) +(define-fun _634 () (_ BitVec 32) |setClientAddressBookAddress::index@1|) +(define-fun _635 () Bool (= _595 _634)) +(define-fun _636 () Bool (and _633 _635)) +(define-fun _637 () (_ BitVec 32) |setClientAddressBookAddress::value@1|) +(define-fun _638 () Bool (= _598 _637)) +(define-fun _639 () Bool (and _636 _638)) +(define-fun _640 () (_ BitVec 32) |setClientAddressBookAlias::handle@1|) +(define-fun _641 () Bool (= _551 _640)) +(define-fun _642 () Bool (and _639 _641)) +(define-fun _643 () (_ BitVec 32) |setClientAddressBookAlias::index@1|) +(define-fun _644 () Bool (= _553 _643)) +(define-fun _645 () Bool (and _642 _644)) +(define-fun _646 () (_ BitVec 32) |setClientAddressBookAlias::value@1|) +(define-fun _647 () Bool (= _556 _646)) +(define-fun _648 () Bool (and _645 _647)) +(define-fun _649 () (_ BitVec 32) |setClientAddressBookSize::handle@1|) +(define-fun _650 () Bool (= _537 _649)) +(define-fun _651 () Bool (and _648 _650)) +(define-fun _652 () (_ BitVec 32) |setClientAddressBookSize::value@1|) +(define-fun _653 () Bool (= _539 _652)) +(define-fun _654 () Bool (and _651 _653)) +(define-fun _655 () Bool (and _515 _516)) +(define-fun _656 () Bool (= _293 _619)) +(define-fun _657 () Bool (and _654 _656)) +(define-fun _658 () (_ BitVec 32) |test::tmp___2@2|) +(define-fun _659 () Bool (= _529 _658)) +(define-fun _660 () Bool (and _657 _659)) +(define-fun _661 () Bool (and _621 _655)) +(define-fun _662 () Bool (and _523 _660)) +(define-fun _663 () Bool (or _661 _662)) +(define-fun _665 () Bool (and _297 _534)) +(define-fun _668 () (_ BitVec 32) __VERIFIER_nondet_int@10) +(define-fun _669 () (_ BitVec 32) |test::tmp___1@3|) +(define-fun _670 () Bool (= _668 _669)) +(define-fun _671 () Bool (and _665 _670)) +(define-fun _672 () Bool (= _669 _8)) +(define-fun _674 () Bool (and _671 _672)) +(define-fun _675 () Bool (not _672)) +(define-fun _676 () Bool (and _671 _675)) +(define-fun _677 () (_ BitVec 32) |test::op9@4|) +(define-fun _678 () Bool (= _677 _153)) +(define-fun _679 () Bool (and _676 _678)) +(define-fun _680 () Bool (= _528 _668)) +(define-fun _681 () Bool (and _623 _625)) +(define-fun _682 () Bool (and _627 _681)) +(define-fun _683 () Bool (and _629 _682)) +(define-fun _684 () Bool (and _474 _683)) +(define-fun _685 () Bool (and _632 _684)) +(define-fun _686 () Bool (and _635 _685)) +(define-fun _687 () Bool (and _638 _686)) +(define-fun _688 () Bool (and _641 _687)) +(define-fun _689 () Bool (and _644 _688)) +(define-fun _690 () Bool (and _647 _689)) +(define-fun _691 () Bool (and _650 _690)) +(define-fun _692 () Bool (and _653 _691)) +(define-fun _693 () Bool (and _477 _692)) +(define-fun _694 () Bool (and _480 _693)) +(define-fun _695 () Bool (and _351 _694)) +(define-fun _696 () Bool (and _352 _695)) +(define-fun _697 () Bool (and _378 _696)) +(define-fun _698 () Bool (and _404 _697)) +(define-fun _699 () Bool (and _430 _698)) +(define-fun _700 () Bool (and _483 _699)) +(define-fun _701 () Bool (and _516 _700)) +(define-fun _702 () Bool (and _656 _701)) +(define-fun _703 () Bool (= _296 _677)) +(define-fun _704 () Bool (and _680 _703)) +(define-fun _705 () (_ BitVec 32) |test::tmp___1@2|) +(define-fun _706 () Bool (= _669 _705)) +(define-fun _707 () Bool (and _704 _706)) +(define-fun _708 () Bool (and _679 _702)) +(define-fun _709 () Bool (and _663 _707)) +(define-fun _710 () Bool (or _708 _709)) +(define-fun _712 () Bool (and _300 _674)) +(define-fun _715 () (_ BitVec 32) __VERIFIER_nondet_int@11) +(define-fun _716 () (_ BitVec 32) |test::tmp___0@3|) +(define-fun _717 () Bool (= _715 _716)) +(define-fun _718 () Bool (and _712 _717)) +(define-fun _719 () Bool (= _716 _8)) +(define-fun _721 () Bool (and _718 _719)) +(define-fun _722 () Bool (not _719)) +(define-fun _723 () Bool (and _718 _722)) +(define-fun _724 () (_ BitVec 32) |test::op10@4|) +(define-fun _725 () Bool (= _724 _153)) +(define-fun _726 () Bool (and _723 _725)) +(define-fun _727 () Bool (= _668 _715)) +(define-fun _728 () Bool (= _299 _724)) +(define-fun _729 () Bool (and _727 _728)) +(define-fun _730 () Bool (and _702 _703)) +(define-fun _731 () (_ BitVec 32) |test::tmp___0@2|) +(define-fun _732 () Bool (= _716 _731)) +(define-fun _733 () Bool (and _729 _732)) +(define-fun _734 () Bool (and _726 _730)) +(define-fun _735 () Bool (and _710 _733)) +(define-fun _736 () Bool (or _734 _735)) +(define-fun _738 () Bool (and _303 _721)) +(define-fun _741 () (_ BitVec 32) __VERIFIER_nondet_int@12) +(define-fun _742 () (_ BitVec 32) |test::tmp@3|) +(define-fun _743 () Bool (= _741 _742)) +(define-fun _744 () Bool (and _738 _743)) +(define-fun _745 () Bool (= _742 _8)) +(define-fun _748 () Bool (not _745)) +(define-fun _749 () Bool (and _744 _748)) +(define-fun _750 () (_ BitVec 32) |test::op11@4|) +(define-fun _751 () Bool (= _750 _153)) +(define-fun _752 () Bool (and _749 _751)) +(define-fun _753 () Bool (= _715 _741)) +(define-fun _754 () Bool (and _695 _728)) +(define-fun _755 () Bool (= _302 _750)) +(define-fun _756 () Bool (and _753 _755)) +(define-fun _757 () Bool (and _352 _754)) +(define-fun _758 () Bool (and _378 _757)) +(define-fun _759 () Bool (and _404 _758)) +(define-fun _760 () Bool (and _430 _759)) +(define-fun _761 () Bool (and _483 _760)) +(define-fun _762 () Bool (and _516 _761)) +(define-fun _763 () Bool (and _656 _762)) +(define-fun _764 () Bool (and _703 _763)) +(define-fun _765 () (_ BitVec 32) |test::tmp@2|) +(define-fun _766 () Bool (= _742 _765)) +(define-fun _767 () Bool (and _756 _766)) +(define-fun _768 () Bool (and _752 _764)) +(define-fun _769 () Bool (and _736 _767)) +(define-fun _770 () Bool (or _768 _769)) +(assert _770) +(set-info :status sat) +(check-sat) +(pop 1) +(exit) diff --git a/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.gold b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.gold new file mode 100644 index 000000000..fea55f7e1 --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.gold @@ -0,0 +1,2 @@ +unsat +sat diff --git a/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.options b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.options new file mode 100644 index 000000000..1cb8ff7d0 --- /dev/null +++ b/tests/regress/coverage/smtlib/QF_UFBVLIA/20190307-CPAchecker_kInduction-SoSy_Lab/email_spec0_product09.cil_smt-query.0.smt2.options @@ -0,0 +1 @@ +--incremental \ No newline at end of file diff --git a/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2 b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2 new file mode 100644 index 000000000..33f70e816 --- /dev/null +++ b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2 @@ -0,0 +1,2139 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_AUFBVNIA) +(set-info :source | +Generated by: SoSy-Lab +Generated on: 2019-03-07 +Generator: CPAchecker 1.8-svn 30724 using kInduction +Application: Software Verification for programs written in C +Target solver: MathSAT5 +|) +(set-info :license "https://www.gnu.org/licenses/gpl-2.0.html") +(set-info :category "industrial") +(set-info :status unsat) + +(push 1) +(define-fun _2 () Bool false) +(assert _2) +(check-sat) +(pop 1) +(push 1) +(declare-fun __string__ (Int) (_ BitVec 64)) +(declare-fun __ADDRESS_OF___this_module@ () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_gpio_keys_polled_driver@ () (_ BitVec 64)) +(declare-fun res_gpio_keys_polled_probe_4@2 () (_ BitVec 32)) +(declare-fun ldv_mutex@2 () (_ BitVec 32)) +(declare-fun |main::ldv_s_gpio_keys_polled_driver_platform_driver@3| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@2 () (_ BitVec 32)) +(declare-fun |main::tmp___0@3| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@3 () (_ BitVec 32)) +(declare-fun |main::tmp@3| () (_ BitVec 32)) +(declare-fun |main::var_group1@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::pdev@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp16@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp17@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp18@3| () (_ BitVec 64)) +(declare-fun |*(void)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp19@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::pdata@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp20@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp21@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::dev@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp22@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp23@3| () (_ BitVec 64)) +(declare-fun *int@1 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp24@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp25@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp26@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp27@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp28@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp29@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp30@3| () (_ BitVec 64)) +(declare-fun |kzalloc::size@2| () (_ BitVec 64)) +(declare-fun |kmalloc::size@2| () (_ BitVec 64)) +(declare-fun |__kmalloc::size@2| () (_ BitVec 64)) +(declare-fun |ldv_malloc::size@2| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_int@4 () (_ BitVec 32)) +(declare-fun |ldv_malloc::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun malloc@2 () (_ BitVec 64)) +(declare-fun |__ADDRESS_OF___VERIFIER_successful_alloc_*void#1@| () (_ BitVec 64)) +(declare-fun |ldv_malloc::res@3| () (_ BitVec 64)) +(declare-fun |ldv_is_err::ptr@2| () (_ BitVec 64)) +(declare-fun |ldv_is_err::__retval__@2| () (_ BitVec 64)) +(declare-fun |ldv_malloc::__CPAchecker_TMP_1@3| () (_ BitVec 64)) +(declare-fun |ldv_malloc::__retval__@2| () (_ BitVec 64)) +(declare-fun |ldv_is_err::__retval__@1| () (_ BitVec 64)) +(declare-fun |ldv_is_err::ptr@1| () (_ BitVec 64)) +(declare-fun |ldv_malloc::__CPAchecker_TMP_1@1| () (_ BitVec 64)) +(declare-fun |ldv_malloc::res@1| () (_ BitVec 64)) +(declare-fun malloc@1 () (_ BitVec 64)) +(declare-fun |__kmalloc::__CPAchecker_TMP_0@3| () (_ BitVec 64)) +(declare-fun |__kmalloc::__retval__@2| () (_ BitVec 64)) +(declare-fun |kmalloc::tmp___2@3| () (_ BitVec 64)) +(declare-fun |kmalloc::__retval__@2| () (_ BitVec 64)) +(declare-fun |kzalloc::tmp@3| () (_ BitVec 64)) +(declare-fun |kzalloc::__retval__@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::bdev@3| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_pointer@2 () (_ BitVec 64)) +(declare-fun |external_alloc::__CPAchecker_TMP_0@3| () (_ BitVec 64)) +(declare-fun |external_alloc::__retval__@2| () (_ BitVec 64)) +(declare-fun |input_allocate_polled_device::__CPAchecker_TMP_0@3| () (_ BitVec 64)) +(declare-fun |input_allocate_polled_device::__retval__@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::poll_dev@3| () (_ BitVec 64)) +(declare-fun |*(void)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp33@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp34@3| () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_gpio_keys_polled_poll@ () (_ BitVec 64)) +(declare-fun |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp35@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp36@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp37@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp38@3| () (_ BitVec 64)) +(declare-fun *int@2 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp39@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp40@3| () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_gpio_keys_polled_open@ () (_ BitVec 64)) +(declare-fun |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@3| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp41@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp42@3| () (_ BitVec 64)) +(declare-fun __ADDRESS_OF_gpio_keys_polled_close@ () (_ BitVec 64)) +(declare-fun |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@4| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp43@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp44@3| () (_ BitVec 64)) +(declare-fun |*(struct_input_dev)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::input@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp45@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp46@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp47@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp48@3| () (_ BitVec 64)) +(declare-fun *long_int@1 () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun *long_int@2 () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(char)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(char)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp49@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp50@3| () (_ BitVec 64)) +(declare-fun |*(char)*@3| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp51@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp52@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp53@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp54@3| () (_ BitVec 64)) +(declare-fun |*(struct_device)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(struct_device)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp55@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp56@3| () (_ BitVec 64)) +(declare-fun *short_int@1 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun *short_int@2 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp57@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp58@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp59@3| () (_ BitVec 64)) +(declare-fun *short_int@3 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp60@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp61@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp62@3| () (_ BitVec 64)) +(declare-fun *short_int@4 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp63@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp64@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp65@3| () (_ BitVec 64)) +(declare-fun *short_int@5 () (Array (_ BitVec 64) (_ BitVec 16))) +(declare-fun |gpio_keys_polled_probe::i@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp66@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp67@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp68@3| () (_ BitVec 32)) +(declare-fun |*(struct_input_polled_dev)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(struct_input_polled_dev)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp106@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp107@3| () (_ BitVec 64)) +(declare-fun |*(struct_device)*@3| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp108@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp109@3| () (_ BitVec 64)) +(declare-fun |*(struct_gpio_keys_platform_data)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |*(struct_gpio_keys_platform_data)*@2| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |dev_set_drvdata::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |dev_set_drvdata::__retval__@2| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_int@5 () (_ BitVec 32)) +(declare-fun |input_register_polled_device::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |input_register_polled_device::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::error@3| () (_ BitVec 32)) +(declare-fun |dev_err::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |dev_err::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::i@4| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp112@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp113@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp114@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__retval__@2| () (_ BitVec 32)) +(declare-fun |*(struct_gpio_keys_button)*@1| () (Array (_ BitVec 64) (_ BitVec 64))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp115@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp116@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp117@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp118@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp119@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp120@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp121@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::button@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::bdata@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp11@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp12@3| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_int@6 () (_ BitVec 32)) +(declare-fun |gpio_get_value_cansleep::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |gpio_get_value_cansleep::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___0@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::state@3| () (_ BitVec 32)) +(declare-fun |__gpio_get_value::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |__gpio_get_value::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_get_value::tmp@3| () (_ BitVec 32)) +(declare-fun |gpio_get_value::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___1@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___2@3| () (_ BitVec 32)) +(declare-fun |__gpio_get_value::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |__gpio_get_value::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_get_value::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_get_value::tmp@1| () (_ BitVec 32)) +(declare-fun |gpio_get_value_cansleep::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |gpio_get_value_cansleep::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___0@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___1@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___2@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp21@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp22@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp23@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::tmp___3@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::tmp___3@4| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp31@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp32@3| () (_ BitVec 64)) +(declare-fun *int@3 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun *int@4 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp22@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp23@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp31@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::__cil_tmp32@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_check_state::tmp___3@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::i@5| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp69@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::button@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp70@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp71@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp72@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp73@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::bdata@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp77@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp78@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp___0@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::tmp___0@4| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp79@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp80@3| () (_ BitVec 64)) +(declare-fun |dev_set_drvdata::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp106@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp107@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp108@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp109@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp69@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp70@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp71@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp72@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp73@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp77@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp78@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp79@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp80@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::bdata@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::button@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp___0@2| () (_ BitVec 32)) +(declare-fun |input_register_polled_device::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |input_register_polled_device::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp82@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp83@3| () (_ BitVec 64)) +(declare-fun |gpio_request::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |gpio_request::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp82@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp83@2| () (_ BitVec 64)) +(declare-fun |gpio_request::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |gpio_request::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_direction_input::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |gpio_direction_input::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::error@4| () (_ BitVec 32)) +(declare-fun |gpio_direction_input::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |gpio_direction_input::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp88@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp89@3| () (_ BitVec 64)) +(declare-fun __VERIFIER_nondet_int@7 () (_ BitVec 32)) +(declare-fun |__gpio_cansleep::__CPAchecker_TMP_0@3| () (_ BitVec 32)) +(declare-fun |__gpio_cansleep::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_cansleep::tmp@3| () (_ BitVec 32)) +(declare-fun |gpio_cansleep::__retval__@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp90@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp91@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp92@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp93@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp94@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp95@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp96@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp97@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp98@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp99@3| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp100@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp101@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp102@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp103@3| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp104@3| () (_ BitVec 32)) +(declare-fun *int@5 () (Array (_ BitVec 64) (_ BitVec 32))) +(declare-fun |gpio_keys_polled_probe::__cil_tmp128@3| () (_ BitVec 64)) +(declare-fun |kfree::p@2| () (_ BitVec 64)) +(declare-fun __nondet_value_void@2 () (_ BitVec 8)) +(declare-fun |dev_set_drvdata::__retval__@3| () (_ BitVec 32)) +(declare-fun __VERIFIER_nondet_pointer@1 () (_ BitVec 64)) +(declare-fun __nondet_value_void@1 () (_ BitVec 8)) +(declare-fun |external_alloc::__CPAchecker_TMP_0@1| () (_ BitVec 64)) +(declare-fun |external_alloc::__retval__@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp128@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::error@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::poll_dev@2| () (_ BitVec 64)) +(declare-fun |input_allocate_polled_device::__CPAchecker_TMP_0@1| () (_ BitVec 64)) +(declare-fun |input_allocate_polled_device::__retval__@1| () (_ BitVec 64)) +(declare-fun |kfree::p@1| () (_ BitVec 64)) +(declare-fun |__kmalloc::__CPAchecker_TMP_0@1| () (_ BitVec 64)) +(declare-fun |__kmalloc::__retval__@1| () (_ BitVec 64)) +(declare-fun |__kmalloc::size@1| () (_ BitVec 64)) +(declare-fun |dev_err::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp25@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp26@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp27@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp28@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp29@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp30@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::bdev@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp@2| () (_ BitVec 64)) +(declare-fun |kmalloc::__retval__@1| () (_ BitVec 64)) +(declare-fun |kmalloc::size@1| () (_ BitVec 64)) +(declare-fun |kmalloc::tmp___2@1| () (_ BitVec 64)) +(declare-fun |kzalloc::__retval__@1| () (_ BitVec 64)) +(declare-fun |kzalloc::size@1| () (_ BitVec 64)) +(declare-fun |kzalloc::tmp@1| () (_ BitVec 64)) +(declare-fun |ldv_malloc::__CPAchecker_TMP_0@1| () (_ BitVec 32)) +(declare-fun |ldv_malloc::__retval__@1| () (_ BitVec 64)) +(declare-fun |ldv_malloc::size@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp22@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp23@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp24@2| () (_ BitVec 32)) +(declare-fun res_gpio_keys_polled_probe_4@3 () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp100@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp100@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp101@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp101@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp102@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp102@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp103@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp103@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp104@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp104@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp106@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp107@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp108@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp109@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp112@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp112@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp113@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp113@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp114@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp114@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp115@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp115@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp116@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp116@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp117@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp117@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp118@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp118@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp119@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp119@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp120@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp120@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp121@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp121@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp128@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp16@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp17@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp18@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp19@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp20@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp21@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp22@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp23@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp24@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp25@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp26@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp27@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp28@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp29@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp30@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp33@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp33@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp34@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp34@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp35@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp35@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp36@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp36@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp37@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp37@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp38@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp38@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp39@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp39@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp40@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp40@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp41@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp41@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp42@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp42@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp43@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp43@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp44@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp44@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp45@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp45@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp46@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp46@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp47@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp47@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp48@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp48@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp49@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp49@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp50@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp50@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp51@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp51@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp52@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp52@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp53@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp53@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp54@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp54@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp55@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp55@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp56@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp56@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp57@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp57@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp58@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp58@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp59@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp59@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp60@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp60@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp61@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp61@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp62@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp62@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp63@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp63@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp64@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp64@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp65@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp65@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp66@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp66@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp67@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp67@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp68@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp68@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp69@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp70@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp71@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp72@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp73@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp77@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp78@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp79@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp80@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp82@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp83@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp88@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp88@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp89@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp89@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp90@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp90@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp91@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp91@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp92@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp92@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp93@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp93@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp94@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp94@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp95@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp95@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp96@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp96@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp97@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp97@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp98@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp98@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp99@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__cil_tmp99@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::__retval__@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::bdata@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::bdev@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::button@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::dev@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::error@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::i@1| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::i@2| () (_ BitVec 32)) +(declare-fun |gpio_keys_polled_probe::input@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::input@2| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::pdata@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::pdev@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::poll_dev@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp@1| () (_ BitVec 64)) +(declare-fun |gpio_keys_polled_probe::tmp___0@1| () (_ BitVec 32)) +(declare-fun |main::ldv_s_gpio_keys_polled_driver_platform_driver@4| () (_ BitVec 32)) +(define-fun _8 () (_ BitVec 64) (_ bv0 64)) +(define-fun _9 () (_ BitVec 64) (_ bv600 64)) +(define-fun _10 () (_ BitVec 64) __ADDRESS_OF___this_module@) +(define-fun _11 () Bool (bvslt _8 _10)) +(define-fun _13 () (_ BitVec 64) (bvadd _9 _10)) +(define-fun _14 () Bool (bvslt _8 _13)) +(define-fun _15 () Bool (and _11 _14)) +(define-fun _16 () (_ BitVec 64) (_ bv160 64)) +(define-fun _17 () (_ BitVec 64) __ADDRESS_OF_gpio_keys_polled_driver@) +(define-fun _18 () Bool (bvslt _13 _17)) +(define-fun _20 () (_ BitVec 64) (bvadd _16 _17)) +(define-fun _21 () Bool (bvslt _8 _20)) +(define-fun _22 () Bool (and _18 _21)) +(define-fun _23 () Bool (and _15 _22)) +(define-fun _24 () (_ BitVec 64) (_ bv4 64)) +(define-fun _25 () (_ BitVec 32) (_ bv0 32)) +(define-fun _26 () (_ BitVec 32) res_gpio_keys_polled_probe_4@2) +(define-fun _27 () Bool (= _26 _25)) +(define-fun _28 () Bool (and _23 _27)) +(define-fun _29 () (_ BitVec 32) (_ bv1 32)) +(define-fun _30 () (_ BitVec 32) ldv_mutex@2) +(define-fun _31 () Bool (= _30 _29)) +(define-fun _32 () Bool (and _28 _31)) +(define-fun _33 () (_ BitVec 64) (_ bv8 64)) +(define-fun _34 () (_ BitVec 32) |main::ldv_s_gpio_keys_polled_driver_platform_driver@3|) +(define-fun _35 () Bool (= _34 _25)) +(define-fun _36 () Bool (and _32 _35)) +(define-fun _37 () (_ BitVec 32) __VERIFIER_nondet_int@2) +(define-fun _38 () (_ BitVec 32) |main::tmp___0@3|) +(define-fun _39 () Bool (= _37 _38)) +(define-fun _40 () Bool (and _36 _39)) +(define-fun _41 () Bool (= _38 _25)) +(define-fun _44 () Bool (not _41)) +(define-fun _45 () Bool (and _40 _44)) +(define-fun _55 () (_ BitVec 32) __VERIFIER_nondet_int@3) +(define-fun _56 () (_ BitVec 32) |main::tmp@3|) +(define-fun _57 () Bool (= _55 _56)) +(define-fun _58 () Bool (and _45 _57)) +(define-fun _59 () Bool (= _56 _25)) +(define-fun _61 () Bool (and _58 _59)) +(define-fun _62 () Bool (not _59)) +(define-fun _63 () Bool (and _58 _62)) +(define-fun _64 () Bool (and _35 _61)) +(define-fun _67 () (_ BitVec 64) |main::var_group1@2|) +(define-fun _68 () (_ BitVec 64) |gpio_keys_polled_probe::pdev@2|) +(define-fun _69 () Bool (= _67 _68)) +(define-fun _70 () Bool (and _64 _69)) +(define-fun _72 () (_ BitVec 64) (_ bv200 64)) +(define-fun _73 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp16@3|) +(define-fun _74 () Bool (= _73 _72)) +(define-fun _75 () Bool (and _70 _74)) +(define-fun _76 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp17@3|) +(define-fun _77 () Bool (= _68 _76)) +(define-fun _78 () Bool (and _75 _77)) +(define-fun _80 () (_ BitVec 64) (bvadd _73 _76)) +(define-fun _81 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp18@3|) +(define-fun _82 () Bool (= _80 _81)) +(define-fun _83 () Bool (and _78 _82)) +(define-fun _84 () (Array (_ BitVec 64) (_ BitVec 64)) |*(void)*@1|) +(define-fun _85 () (_ BitVec 64) (select _84 _81)) +(define-fun _86 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp19@3|) +(define-fun _87 () Bool (= _85 _86)) +(define-fun _88 () Bool (and _83 _87)) +(define-fun _89 () (_ BitVec 64) |gpio_keys_polled_probe::pdata@3|) +(define-fun _90 () Bool (= _86 _89)) +(define-fun _91 () Bool (and _88 _90)) +(define-fun _92 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp20@3|) +(define-fun _93 () Bool (= _68 _92)) +(define-fun _94 () Bool (and _91 _93)) +(define-fun _96 () (_ BitVec 64) (_ bv16 64)) +(define-fun _98 () (_ BitVec 64) (bvadd _96 _92)) +(define-fun _99 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp21@3|) +(define-fun _100 () Bool (= _98 _99)) +(define-fun _101 () Bool (and _94 _100)) +(define-fun _102 () (_ BitVec 64) |gpio_keys_polled_probe::dev@3|) +(define-fun _103 () Bool (= _99 _102)) +(define-fun _104 () Bool (and _101 _103)) +(define-fun _105 () Bool (= _89 _8)) +(define-fun _107 () Bool (and _104 _105)) +(define-fun _108 () Bool (not _105)) +(define-fun _109 () Bool (and _104 _108)) +(define-fun _110 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp22@3|) +(define-fun _111 () Bool (= _89 _110)) +(define-fun _112 () Bool (and _109 _111)) +(define-fun _114 () (_ BitVec 64) (_ bv12 64)) +(define-fun _116 () (_ BitVec 64) (bvadd _114 _110)) +(define-fun _117 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp23@3|) +(define-fun _118 () Bool (= _116 _117)) +(define-fun _119 () Bool (and _112 _118)) +(define-fun _120 () (Array (_ BitVec 64) (_ BitVec 32)) *int@1) +(define-fun _121 () (_ BitVec 32) (select _120 _117)) +(define-fun _122 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp24@3|) +(define-fun _123 () Bool (= _121 _122)) +(define-fun _124 () Bool (and _119 _123)) +(define-fun _125 () Bool (= _122 _25)) +(define-fun _127 () Bool (and _124 _125)) +(define-fun _128 () Bool (not _125)) +(define-fun _129 () Bool (and _124 _128)) +(define-fun _130 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp25@3|) +(define-fun _131 () Bool (= _89 _130)) +(define-fun _132 () Bool (and _129 _131)) +(define-fun _135 () (_ BitVec 64) (bvadd _33 _130)) +(define-fun _136 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp26@3|) +(define-fun _137 () Bool (= _135 _136)) +(define-fun _138 () Bool (and _132 _137)) +(define-fun _139 () (_ BitVec 32) (select _120 _136)) +(define-fun _140 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp27@3|) +(define-fun _141 () Bool (= _139 _140)) +(define-fun _142 () Bool (and _138 _141)) +(define-fun _143 () (_ BitVec 64) ((_ sign_extend 32) _140)) +(define-fun _144 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp28@3|) +(define-fun _145 () Bool (= _143 _144)) +(define-fun _146 () Bool (and _142 _145)) +(define-fun _149 () (_ BitVec 64) (bvshl _144 _24)) +(define-fun _150 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp29@3|) +(define-fun _151 () Bool (= _149 _150)) +(define-fun _152 () Bool (and _146 _151)) +(define-fun _153 () (_ BitVec 64) (_ bv24 64)) +(define-fun _154 () (_ BitVec 64) (bvadd _153 _150)) +(define-fun _155 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp30@3|) +(define-fun _156 () Bool (= _154 _155)) +(define-fun _157 () Bool (and _152 _156)) +(define-fun _158 () (_ BitVec 64) |kzalloc::size@2|) +(define-fun _159 () Bool (= _155 _158)) +(define-fun _160 () Bool (and _157 _159)) +(define-fun _161 () (_ BitVec 64) |kmalloc::size@2|) +(define-fun _162 () Bool (= _158 _161)) +(define-fun _163 () Bool (and _160 _162)) +(define-fun _164 () (_ BitVec 64) |__kmalloc::size@2|) +(define-fun _165 () Bool (= _161 _164)) +(define-fun _166 () Bool (and _163 _165)) +(define-fun _167 () (_ BitVec 64) |ldv_malloc::size@2|) +(define-fun _168 () Bool (= _164 _167)) +(define-fun _169 () Bool (and _166 _168)) +(define-fun _170 () (_ BitVec 32) __VERIFIER_nondet_int@4) +(define-fun _171 () (_ BitVec 32) |ldv_malloc::__CPAchecker_TMP_0@3|) +(define-fun _172 () Bool (= _170 _171)) +(define-fun _173 () Bool (and _169 _172)) +(define-fun _174 () Bool (= _171 _25)) +(define-fun _176 () Bool (and _173 _174)) +(define-fun _177 () Bool (not _174)) +(define-fun _178 () Bool (and _173 _177)) +(define-fun _179 () (_ BitVec 64) malloc@2) +(define-fun _180 () Bool (= _179 _8)) +(define-fun _181 () Bool (not _180)) +(define-fun _182 () (_ BitVec 64) |__ADDRESS_OF___VERIFIER_successful_alloc_*void#1@|) +(define-fun _183 () Bool (bvslt _8 _182)) +(define-fun _184 () (_ BitVec 64) (ite _181 _182 _8)) +(define-fun _185 () (_ BitVec 64) |ldv_malloc::res@3|) +(define-fun _186 () Bool (= _184 _185)) +(define-fun _187 () Bool (and _183 _186)) +(define-fun _188 () Bool (and _178 _187)) +(define-fun _189 () (_ BitVec 64) |ldv_is_err::ptr@2|) +(define-fun _190 () Bool (= _185 _189)) +(define-fun _191 () Bool (and _188 _190)) +(define-fun _192 () (_ BitVec 64) (_ bv18446744073709547521 64)) +(define-fun _193 () Bool (bvult _192 _189)) +(define-fun _194 () (_ BitVec 32) (ite _193 _29 _25)) +(define-fun _195 () (_ BitVec 64) ((_ sign_extend 32) _194)) +(define-fun _196 () (_ BitVec 64) |ldv_is_err::__retval__@2|) +(define-fun _197 () Bool (= _195 _196)) +(define-fun _198 () Bool (and _191 _197)) +(define-fun _199 () (_ BitVec 64) |ldv_malloc::__CPAchecker_TMP_1@3|) +(define-fun _200 () Bool (= _196 _199)) +(define-fun _201 () Bool (and _198 _200)) +(define-fun _202 () Bool (= _199 _8)) +(define-fun _204 () Bool (and _201 _202)) +(define-fun _207 () (_ BitVec 64) |ldv_malloc::__retval__@2|) +(define-fun _208 () Bool (= _185 _207)) +(define-fun _209 () Bool (and _204 _208)) +(define-fun _210 () Bool (= _207 _8)) +(define-fun _211 () Bool (and _176 _210)) +(define-fun _212 () (_ BitVec 64) |ldv_is_err::__retval__@1|) +(define-fun _213 () Bool (= _196 _212)) +(define-fun _214 () (_ BitVec 64) |ldv_is_err::ptr@1|) +(define-fun _215 () Bool (= _189 _214)) +(define-fun _216 () Bool (and _213 _215)) +(define-fun _217 () (_ BitVec 64) |ldv_malloc::__CPAchecker_TMP_1@1|) +(define-fun _218 () Bool (= _199 _217)) +(define-fun _219 () Bool (and _216 _218)) +(define-fun _220 () (_ BitVec 64) |ldv_malloc::res@1|) +(define-fun _221 () Bool (= _185 _220)) +(define-fun _222 () Bool (and _219 _221)) +(define-fun _223 () (_ BitVec 64) malloc@1) +(define-fun _224 () Bool (= _179 _223)) +(define-fun _225 () Bool (and _222 _224)) +(define-fun _226 () Bool (and _211 _225)) +(define-fun _227 () Bool (or _209 _226)) +(define-fun _228 () (_ BitVec 64) |__kmalloc::__CPAchecker_TMP_0@3|) +(define-fun _229 () Bool (= _207 _228)) +(define-fun _230 () Bool (and _227 _229)) +(define-fun _231 () (_ BitVec 64) |__kmalloc::__retval__@2|) +(define-fun _232 () Bool (= _228 _231)) +(define-fun _233 () Bool (and _230 _232)) +(define-fun _234 () (_ BitVec 64) |kmalloc::tmp___2@3|) +(define-fun _235 () Bool (= _231 _234)) +(define-fun _236 () Bool (and _233 _235)) +(define-fun _237 () (_ BitVec 64) |kmalloc::__retval__@2|) +(define-fun _238 () Bool (= _234 _237)) +(define-fun _239 () Bool (and _236 _238)) +(define-fun _240 () (_ BitVec 64) |kzalloc::tmp@3|) +(define-fun _241 () Bool (= _237 _240)) +(define-fun _242 () Bool (and _239 _241)) +(define-fun _243 () (_ BitVec 64) |kzalloc::__retval__@2|) +(define-fun _244 () Bool (= _240 _243)) +(define-fun _245 () Bool (and _242 _244)) +(define-fun _246 () (_ BitVec 64) |gpio_keys_polled_probe::tmp@3|) +(define-fun _247 () Bool (= _243 _246)) +(define-fun _248 () Bool (and _245 _247)) +(define-fun _249 () Bool (bvslt _20 _182)) +(define-fun _251 () (_ BitVec 64) (bvadd _153 _182)) +(define-fun _252 () Bool (bvslt _8 _251)) +(define-fun _254 () (_ BitVec 64) (bvadd _167 _182)) +(define-fun _255 () Bool (bvslt _8 _254)) +(define-fun _256 () (_ BitVec 64) |gpio_keys_polled_probe::bdev@3|) +(define-fun _257 () Bool (= _246 _256)) +(define-fun _258 () Bool (and _249 _252)) +(define-fun _259 () Bool (and _255 _258)) +(define-fun _260 () Bool (and _257 _259)) +(define-fun _261 () Bool (and _248 _260)) +(define-fun _262 () Bool (= _256 _8)) +(define-fun _264 () Bool (and _261 _262)) +(define-fun _265 () Bool (not _262)) +(define-fun _266 () Bool (and _261 _265)) +(define-fun _267 () (_ BitVec 64) __VERIFIER_nondet_pointer@2) +(define-fun _268 () (_ BitVec 64) |external_alloc::__CPAchecker_TMP_0@3|) +(define-fun _269 () Bool (= _267 _268)) +(define-fun _270 () Bool (and _266 _269)) +(define-fun _271 () (_ BitVec 64) |external_alloc::__retval__@2|) +(define-fun _272 () Bool (= _268 _271)) +(define-fun _273 () Bool (and _270 _272)) +(define-fun _274 () (_ BitVec 64) |input_allocate_polled_device::__CPAchecker_TMP_0@3|) +(define-fun _275 () Bool (= _271 _274)) +(define-fun _276 () Bool (and _273 _275)) +(define-fun _277 () (_ BitVec 64) |input_allocate_polled_device::__retval__@2|) +(define-fun _278 () Bool (= _274 _277)) +(define-fun _279 () Bool (and _276 _278)) +(define-fun _280 () (_ BitVec 64) |gpio_keys_polled_probe::poll_dev@3|) +(define-fun _281 () Bool (= _277 _280)) +(define-fun _282 () Bool (and _279 _281)) +(define-fun _283 () Bool (= _280 _8)) +(define-fun _285 () Bool (and _282 _283)) +(define-fun _286 () Bool (not _283)) +(define-fun _287 () Bool (and _282 _286)) +(define-fun _288 () (Array (_ BitVec 64) (_ BitVec 64)) |*(void)*@2|) +(define-fun _289 () (Array (_ BitVec 64) (_ BitVec 64)) (store _84 _280 _256)) +(define-fun _290 () Bool (= _288 _289)) +(define-fun _291 () Bool (and _287 _290)) +(define-fun _292 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp33@3|) +(define-fun _293 () Bool (= _280 _292)) +(define-fun _294 () Bool (and _291 _293)) +(define-fun _297 () (_ BitVec 64) (bvadd _153 _292)) +(define-fun _298 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp34@3|) +(define-fun _299 () Bool (= _297 _298)) +(define-fun _300 () Bool (and _294 _299)) +(define-fun _301 () (_ BitVec 64) __ADDRESS_OF_gpio_keys_polled_poll@) +(define-fun _302 () Bool (bvslt _254 _301)) +(define-fun _303 () Bool (bvslt _251 _301)) +(define-fun _305 () (_ BitVec 64) (bvadd _33 _301)) +(define-fun _306 () Bool (bvslt _8 _305)) +(define-fun _307 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@1|) +(define-fun _308 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@2|) +(define-fun _309 () (Array (_ BitVec 64) (_ BitVec 64)) (store _307 _298 _301)) +(define-fun _310 () Bool (= _308 _309)) +(define-fun _311 () Bool (and _302 _303)) +(define-fun _312 () Bool (and _306 _311)) +(define-fun _313 () Bool (and _310 _312)) +(define-fun _314 () Bool (and _300 _313)) +(define-fun _315 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp35@3|) +(define-fun _316 () Bool (= _280 _315)) +(define-fun _317 () Bool (and _314 _316)) +(define-fun _319 () (_ BitVec 64) (_ bv32 64)) +(define-fun _321 () (_ BitVec 64) (bvadd _319 _315)) +(define-fun _322 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp36@3|) +(define-fun _323 () Bool (= _321 _322)) +(define-fun _324 () Bool (and _317 _323)) +(define-fun _325 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp37@3|) +(define-fun _326 () Bool (= _89 _325)) +(define-fun _327 () Bool (and _324 _326)) +(define-fun _329 () (_ BitVec 64) (bvadd _114 _325)) +(define-fun _330 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp38@3|) +(define-fun _331 () Bool (= _329 _330)) +(define-fun _332 () Bool (and _327 _331)) +(define-fun _333 () (_ BitVec 32) (select _120 _330)) +(define-fun _334 () (Array (_ BitVec 64) (_ BitVec 32)) *int@2) +(define-fun _335 () (Array (_ BitVec 64) (_ BitVec 32)) (store _120 _322 _333)) +(define-fun _336 () Bool (= _334 _335)) +(define-fun _337 () Bool (and _332 _336)) +(define-fun _338 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp39@3|) +(define-fun _339 () Bool (= _280 _338)) +(define-fun _340 () Bool (and _337 _339)) +(define-fun _342 () (_ BitVec 64) (bvadd _33 _338)) +(define-fun _343 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp40@3|) +(define-fun _344 () Bool (= _342 _343)) +(define-fun _345 () Bool (and _340 _344)) +(define-fun _346 () (_ BitVec 64) __ADDRESS_OF_gpio_keys_polled_open@) +(define-fun _347 () Bool (bvslt _305 _346)) +(define-fun _349 () (_ BitVec 64) (bvadd _33 _346)) +(define-fun _350 () Bool (bvslt _8 _349)) +(define-fun _351 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@3|) +(define-fun _352 () (Array (_ BitVec 64) (_ BitVec 64)) (store _308 _343 _346)) +(define-fun _353 () Bool (= _351 _352)) +(define-fun _354 () Bool (and _347 _350)) +(define-fun _355 () Bool (and _353 _354)) +(define-fun _356 () Bool (and _345 _355)) +(define-fun _357 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp41@3|) +(define-fun _358 () Bool (= _280 _357)) +(define-fun _359 () Bool (and _356 _358)) +(define-fun _361 () (_ BitVec 64) (bvadd _96 _357)) +(define-fun _362 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp42@3|) +(define-fun _363 () Bool (= _361 _362)) +(define-fun _364 () Bool (and _359 _363)) +(define-fun _365 () (_ BitVec 64) __ADDRESS_OF_gpio_keys_polled_close@) +(define-fun _366 () Bool (bvslt _349 _365)) +(define-fun _368 () (_ BitVec 64) (bvadd _33 _365)) +(define-fun _369 () Bool (bvslt _8 _368)) +(define-fun _370 () (Array (_ BitVec 64) (_ BitVec 64)) |*(Return_type:_[void],_Parameters:_1,_Parameter_1_type:_[(struct_input_polled_dev)*],_VarArgs:_false)*@4|) +(define-fun _371 () (Array (_ BitVec 64) (_ BitVec 64)) (store _351 _362 _365)) +(define-fun _372 () Bool (= _370 _371)) +(define-fun _373 () Bool (and _366 _369)) +(define-fun _374 () Bool (and _372 _373)) +(define-fun _375 () Bool (and _364 _374)) +(define-fun _376 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp43@3|) +(define-fun _377 () Bool (= _280 _376)) +(define-fun _378 () Bool (and _375 _377)) +(define-fun _380 () (_ BitVec 64) (_ bv48 64)) +(define-fun _382 () (_ BitVec 64) (bvadd _380 _376)) +(define-fun _383 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp44@3|) +(define-fun _384 () Bool (= _382 _383)) +(define-fun _385 () Bool (and _378 _384)) +(define-fun _386 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_input_dev)*@1|) +(define-fun _387 () (_ BitVec 64) (select _386 _383)) +(define-fun _388 () (_ BitVec 64) |gpio_keys_polled_probe::input@3|) +(define-fun _389 () Bool (= _387 _388)) +(define-fun _390 () Bool (and _385 _389)) +(define-fun _391 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp45@3|) +(define-fun _392 () Bool (= _391 _8)) +(define-fun _393 () Bool (and _390 _392)) +(define-fun _395 () (_ BitVec 64) (_ bv40 64)) +(define-fun _396 () (_ BitVec 64) (bvadd _395 _391)) +(define-fun _397 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp46@3|) +(define-fun _398 () Bool (= _396 _397)) +(define-fun _399 () Bool (and _393 _398)) +(define-fun _400 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp47@3|) +(define-fun _401 () Bool (= _388 _400)) +(define-fun _402 () Bool (and _399 _401)) +(define-fun _404 () (_ BitVec 64) (bvadd _397 _400)) +(define-fun _405 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp48@3|) +(define-fun _406 () Bool (= _404 _405)) +(define-fun _407 () Bool (and _402 _406)) +(define-fun _408 () (_ BitVec 64) (_ bv2 64)) +(define-fun _409 () (Array (_ BitVec 64) (_ BitVec 64)) *long_int@1) +(define-fun _410 () (Array (_ BitVec 64) (_ BitVec 64)) *long_int@2) +(define-fun _411 () (Array (_ BitVec 64) (_ BitVec 64)) (store _409 _405 _408)) +(define-fun _412 () Bool (= _410 _411)) +(define-fun _413 () Bool (and _407 _412)) +(define-fun _414 () (Array (_ BitVec 64) (_ BitVec 64)) |*(char)*@1|) +(define-fun _415 () (_ BitVec 64) (select _414 _68)) +(define-fun _416 () (Array (_ BitVec 64) (_ BitVec 64)) |*(char)*@2|) +(define-fun _417 () (Array (_ BitVec 64) (_ BitVec 64)) (store _414 _388 _415)) +(define-fun _418 () Bool (= _416 _417)) +(define-fun _419 () Bool (and _413 _418)) +(define-fun _420 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp49@3|) +(define-fun _421 () Bool (= _388 _420)) +(define-fun _422 () Bool (and _419 _421)) +(define-fun _424 () (_ BitVec 64) (bvadd _33 _420)) +(define-fun _425 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp50@3|) +(define-fun _426 () Bool (= _424 _425)) +(define-fun _427 () Bool (and _422 _426)) +(define-fun _428 () Int 0) +(define-fun _429 () (_ BitVec 64) (__string__ _428)) +(define-fun _430 () (Array (_ BitVec 64) (_ BitVec 64)) |*(char)*@3|) +(define-fun _431 () (Array (_ BitVec 64) (_ BitVec 64)) (store _416 _425 _429)) +(define-fun _432 () Bool (= _430 _431)) +(define-fun _433 () Bool (and _427 _432)) +(define-fun _434 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp51@3|) +(define-fun _435 () Bool (= _388 _434)) +(define-fun _436 () Bool (and _433 _435)) +(define-fun _438 () (_ BitVec 64) (_ bv648 64)) +(define-fun _440 () (_ BitVec 64) (bvadd _438 _434)) +(define-fun _441 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp52@3|) +(define-fun _442 () Bool (= _440 _441)) +(define-fun _443 () Bool (and _436 _442)) +(define-fun _444 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp53@3|) +(define-fun _445 () Bool (= _68 _444)) +(define-fun _446 () Bool (and _443 _445)) +(define-fun _448 () (_ BitVec 64) (bvadd _96 _444)) +(define-fun _449 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp54@3|) +(define-fun _450 () Bool (= _448 _449)) +(define-fun _451 () Bool (and _446 _450)) +(define-fun _452 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_device)*@1|) +(define-fun _453 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_device)*@2|) +(define-fun _454 () (Array (_ BitVec 64) (_ BitVec 64)) (store _452 _441 _449)) +(define-fun _455 () Bool (= _453 _454)) +(define-fun _456 () Bool (and _451 _455)) +(define-fun _457 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp55@3|) +(define-fun _458 () Bool (= _388 _457)) +(define-fun _459 () Bool (and _456 _458)) +(define-fun _461 () (_ BitVec 64) (bvadd _153 _457)) +(define-fun _462 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp56@3|) +(define-fun _463 () Bool (= _461 _462)) +(define-fun _464 () Bool (and _459 _463)) +(define-fun _466 () (_ BitVec 16) (_ bv25 16)) +(define-fun _467 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@1) +(define-fun _468 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@2) +(define-fun _469 () (Array (_ BitVec 64) (_ BitVec 16)) (store _467 _462 _466)) +(define-fun _470 () Bool (= _468 _469)) +(define-fun _471 () Bool (and _464 _470)) +(define-fun _473 () (_ BitVec 64) (_ bv26 64)) +(define-fun _474 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp57@3|) +(define-fun _475 () Bool (= _474 _473)) +(define-fun _476 () Bool (and _471 _475)) +(define-fun _477 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp58@3|) +(define-fun _478 () Bool (= _388 _477)) +(define-fun _479 () Bool (and _476 _478)) +(define-fun _481 () (_ BitVec 64) (bvadd _474 _477)) +(define-fun _482 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp59@3|) +(define-fun _483 () Bool (= _481 _482)) +(define-fun _484 () Bool (and _479 _483)) +(define-fun _485 () (_ BitVec 16) (_ bv1 16)) +(define-fun _486 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@3) +(define-fun _487 () (Array (_ BitVec 64) (_ BitVec 16)) (store _468 _482 _485)) +(define-fun _488 () Bool (= _486 _487)) +(define-fun _489 () Bool (and _484 _488)) +(define-fun _491 () (_ BitVec 64) (_ bv28 64)) +(define-fun _492 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp60@3|) +(define-fun _493 () Bool (= _492 _491)) +(define-fun _494 () Bool (and _489 _493)) +(define-fun _495 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp61@3|) +(define-fun _496 () Bool (= _388 _495)) +(define-fun _497 () Bool (and _494 _496)) +(define-fun _499 () (_ BitVec 64) (bvadd _492 _495)) +(define-fun _500 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp62@3|) +(define-fun _501 () Bool (= _499 _500)) +(define-fun _502 () Bool (and _497 _501)) +(define-fun _503 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@4) +(define-fun _504 () (Array (_ BitVec 64) (_ BitVec 16)) (store _486 _500 _485)) +(define-fun _505 () Bool (= _503 _504)) +(define-fun _506 () Bool (and _502 _505)) +(define-fun _508 () (_ BitVec 64) (_ bv30 64)) +(define-fun _509 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp63@3|) +(define-fun _510 () Bool (= _509 _508)) +(define-fun _511 () Bool (and _506 _510)) +(define-fun _512 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp64@3|) +(define-fun _513 () Bool (= _388 _512)) +(define-fun _514 () Bool (and _511 _513)) +(define-fun _516 () (_ BitVec 64) (bvadd _509 _512)) +(define-fun _517 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp65@3|) +(define-fun _518 () Bool (= _516 _517)) +(define-fun _519 () Bool (and _514 _518)) +(define-fun _521 () (_ BitVec 16) (_ bv256 16)) +(define-fun _522 () (Array (_ BitVec 64) (_ BitVec 16)) *short_int@5) +(define-fun _523 () (Array (_ BitVec 64) (_ BitVec 16)) (store _503 _517 _521)) +(define-fun _524 () Bool (= _522 _523)) +(define-fun _525 () Bool (and _519 _524)) +(define-fun _526 () (_ BitVec 32) |gpio_keys_polled_probe::i@3|) +(define-fun _527 () Bool (= _526 _25)) +(define-fun _528 () Bool (and _525 _527)) +(define-fun _529 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp66@3|) +(define-fun _530 () Bool (= _89 _529)) +(define-fun _531 () Bool (and _528 _530)) +(define-fun _533 () (_ BitVec 64) (bvadd _33 _529)) +(define-fun _534 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp67@3|) +(define-fun _535 () Bool (= _533 _534)) +(define-fun _536 () Bool (and _531 _535)) +(define-fun _537 () (_ BitVec 32) (select _334 _534)) +(define-fun _538 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp68@3|) +(define-fun _539 () Bool (= _537 _538)) +(define-fun _540 () Bool (and _536 _539)) +(define-fun _541 () Bool (bvslt _526 _538)) +(define-fun _543 () Bool (and _540 _541)) +(define-fun _544 () Bool (not _541)) +(define-fun _545 () Bool (and _540 _544)) +(define-fun _546 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_input_polled_dev)*@1|) +(define-fun _547 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_input_polled_dev)*@2|) +(define-fun _548 () (Array (_ BitVec 64) (_ BitVec 64)) (store _546 _256 _280)) +(define-fun _549 () Bool (= _547 _548)) +(define-fun _550 () Bool (and _545 _549)) +(define-fun _551 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp106@3|) +(define-fun _552 () Bool (= _256 _551)) +(define-fun _553 () Bool (and _550 _552)) +(define-fun _555 () (_ BitVec 64) (bvadd _33 _551)) +(define-fun _556 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp107@3|) +(define-fun _557 () Bool (= _555 _556)) +(define-fun _558 () Bool (and _553 _557)) +(define-fun _559 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_device)*@3|) +(define-fun _560 () (Array (_ BitVec 64) (_ BitVec 64)) (store _453 _556 _102)) +(define-fun _561 () Bool (= _559 _560)) +(define-fun _562 () Bool (and _558 _561)) +(define-fun _563 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp108@3|) +(define-fun _564 () Bool (= _256 _563)) +(define-fun _565 () Bool (and _562 _564)) +(define-fun _567 () (_ BitVec 64) (bvadd _96 _563)) +(define-fun _568 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp109@3|) +(define-fun _569 () Bool (= _567 _568)) +(define-fun _570 () Bool (and _565 _569)) +(define-fun _571 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_gpio_keys_platform_data)*@1|) +(define-fun _572 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_gpio_keys_platform_data)*@2|) +(define-fun _573 () (Array (_ BitVec 64) (_ BitVec 64)) (store _571 _568 _89)) +(define-fun _574 () Bool (= _572 _573)) +(define-fun _575 () Bool (and _570 _574)) +(define-fun _576 () (_ BitVec 32) |dev_set_drvdata::__CPAchecker_TMP_0@1|) +(define-fun _577 () (_ BitVec 32) |dev_set_drvdata::__retval__@2|) +(define-fun _578 () Bool (= _576 _577)) +(define-fun _579 () Bool (and _575 _578)) +(define-fun _580 () (_ BitVec 32) __VERIFIER_nondet_int@5) +(define-fun _581 () (_ BitVec 32) |input_register_polled_device::__CPAchecker_TMP_0@3|) +(define-fun _582 () Bool (= _580 _581)) +(define-fun _583 () Bool (and _579 _582)) +(define-fun _584 () (_ BitVec 32) |input_register_polled_device::__retval__@2|) +(define-fun _585 () Bool (= _581 _584)) +(define-fun _586 () Bool (and _583 _585)) +(define-fun _587 () (_ BitVec 32) |gpio_keys_polled_probe::error@3|) +(define-fun _588 () Bool (= _584 _587)) +(define-fun _589 () Bool (and _586 _588)) +(define-fun _590 () Bool (= _587 _25)) +(define-fun _592 () Bool (and _589 _590)) +(define-fun _593 () Bool (not _590)) +(define-fun _594 () Bool (and _589 _593)) +(define-fun _595 () (_ BitVec 32) |dev_err::__CPAchecker_TMP_0@1|) +(define-fun _596 () (_ BitVec 32) |dev_err::__retval__@2|) +(define-fun _597 () Bool (= _595 _596)) +(define-fun _598 () Bool (and _594 _597)) +(define-fun _599 () (_ BitVec 32) |gpio_keys_polled_probe::i@4|) +(define-fun _600 () Bool (= _599 _25)) +(define-fun _601 () Bool (and _592 _600)) +(define-fun _602 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp112@3|) +(define-fun _603 () Bool (= _89 _602)) +(define-fun _604 () Bool (and _601 _603)) +(define-fun _606 () (_ BitVec 64) (bvadd _33 _602)) +(define-fun _607 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp113@3|) +(define-fun _608 () Bool (= _606 _607)) +(define-fun _609 () Bool (and _604 _608)) +(define-fun _610 () (_ BitVec 32) (select _334 _607)) +(define-fun _611 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp114@3|) +(define-fun _612 () Bool (= _610 _611)) +(define-fun _613 () Bool (and _609 _612)) +(define-fun _614 () Bool (bvslt _599 _611)) +(define-fun _616 () Bool (and _613 _614)) +(define-fun _617 () Bool (not _614)) +(define-fun _618 () Bool (and _613 _617)) +(define-fun _619 () (_ BitVec 32) |gpio_keys_polled_probe::__retval__@2|) +(define-fun _620 () Bool (= _619 _25)) +(define-fun _621 () Bool (and _618 _620)) +(define-fun _622 () (Array (_ BitVec 64) (_ BitVec 64)) |*(struct_gpio_keys_button)*@1|) +(define-fun _623 () (_ BitVec 64) (select _622 _89)) +(define-fun _624 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp115@3|) +(define-fun _625 () Bool (= _623 _624)) +(define-fun _626 () Bool (and _616 _625)) +(define-fun _627 () (_ BitVec 64) ((_ sign_extend 32) _599)) +(define-fun _629 () (_ BitVec 64) (bvmul _380 _627)) +(define-fun _630 () (_ BitVec 64) (bvadd _624 _629)) +(define-fun _631 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp116@3|) +(define-fun _632 () Bool (= _630 _631)) +(define-fun _633 () Bool (and _626 _632)) +(define-fun _636 () (_ BitVec 64) (bvshl _627 _24)) +(define-fun _637 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp117@3|) +(define-fun _638 () Bool (= _636 _637)) +(define-fun _639 () Bool (and _633 _638)) +(define-fun _640 () (_ BitVec 64) (bvadd _153 _637)) +(define-fun _641 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp118@3|) +(define-fun _642 () Bool (= _640 _641)) +(define-fun _643 () Bool (and _639 _642)) +(define-fun _644 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp119@3|) +(define-fun _645 () Bool (= _256 _644)) +(define-fun _646 () Bool (and _643 _645)) +(define-fun _648 () (_ BitVec 64) (bvadd _641 _644)) +(define-fun _649 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp120@3|) +(define-fun _650 () Bool (= _648 _649)) +(define-fun _651 () Bool (and _646 _650)) +(define-fun _652 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp121@3|) +(define-fun _653 () Bool (= _649 _652)) +(define-fun _654 () Bool (and _651 _653)) +(define-fun _655 () (_ BitVec 64) |gpio_keys_polled_check_state::button@2|) +(define-fun _656 () Bool (= _631 _655)) +(define-fun _657 () (_ BitVec 64) |gpio_keys_polled_check_state::bdata@2|) +(define-fun _658 () Bool (= _652 _657)) +(define-fun _659 () Bool (and _656 _658)) +(define-fun _660 () Bool (and _654 _659)) +(define-fun _661 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp11@3|) +(define-fun _662 () Bool (= _657 _661)) +(define-fun _663 () Bool (and _660 _662)) +(define-fun _665 () (_ BitVec 64) (bvadd _114 _661)) +(define-fun _666 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp12@3|) +(define-fun _667 () Bool (= _665 _666)) +(define-fun _668 () Bool (and _663 _667)) +(define-fun _669 () (_ BitVec 32) (select _334 _666)) +(define-fun _670 () Bool (= _669 _25)) +(define-fun _672 () Bool (and _668 _670)) +(define-fun _673 () Bool (not _670)) +(define-fun _674 () Bool (and _668 _673)) +(define-fun _675 () (_ BitVec 32) __VERIFIER_nondet_int@6) +(define-fun _676 () (_ BitVec 32) |gpio_get_value_cansleep::__CPAchecker_TMP_0@3|) +(define-fun _677 () Bool (= _675 _676)) +(define-fun _678 () Bool (and _674 _677)) +(define-fun _679 () (_ BitVec 32) |gpio_get_value_cansleep::__retval__@2|) +(define-fun _680 () Bool (= _676 _679)) +(define-fun _681 () Bool (and _678 _680)) +(define-fun _682 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp@3|) +(define-fun _683 () Bool (= _679 _682)) +(define-fun _684 () Bool (and _681 _683)) +(define-fun _685 () Bool (= _682 _25)) +(define-fun _687 () Bool (and _684 _685)) +(define-fun _688 () Bool (not _685)) +(define-fun _689 () Bool (and _684 _688)) +(define-fun _690 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___0@3|) +(define-fun _691 () Bool (= _690 _29)) +(define-fun _692 () Bool (and _689 _691)) +(define-fun _693 () Bool (= _690 _25)) +(define-fun _694 () Bool (and _687 _693)) +(define-fun _695 () Bool (or _692 _694)) +(define-fun _696 () (_ BitVec 32) |gpio_keys_polled_check_state::state@3|) +(define-fun _697 () Bool (= _690 _696)) +(define-fun _698 () Bool (and _695 _697)) +(define-fun _699 () (_ BitVec 32) |__gpio_get_value::__CPAchecker_TMP_0@3|) +(define-fun _700 () Bool (= _675 _699)) +(define-fun _701 () Bool (and _672 _700)) +(define-fun _702 () (_ BitVec 32) |__gpio_get_value::__retval__@2|) +(define-fun _703 () Bool (= _699 _702)) +(define-fun _704 () Bool (and _701 _703)) +(define-fun _705 () (_ BitVec 32) |gpio_get_value::tmp@3|) +(define-fun _706 () Bool (= _702 _705)) +(define-fun _707 () Bool (and _704 _706)) +(define-fun _708 () (_ BitVec 32) |gpio_get_value::__retval__@2|) +(define-fun _709 () Bool (= _705 _708)) +(define-fun _710 () Bool (and _707 _709)) +(define-fun _711 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___1@3|) +(define-fun _712 () Bool (= _708 _711)) +(define-fun _713 () Bool (and _710 _712)) +(define-fun _714 () Bool (= _711 _25)) +(define-fun _716 () Bool (and _713 _714)) +(define-fun _717 () Bool (not _714)) +(define-fun _718 () Bool (and _713 _717)) +(define-fun _719 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___2@3|) +(define-fun _720 () Bool (= _719 _29)) +(define-fun _721 () Bool (and _718 _720)) +(define-fun _722 () Bool (= _719 _25)) +(define-fun _723 () Bool (and _716 _722)) +(define-fun _724 () Bool (or _721 _723)) +(define-fun _725 () Bool (= _696 _719)) +(define-fun _726 () Bool (and _724 _725)) +(define-fun _727 () (_ BitVec 32) |__gpio_get_value::__CPAchecker_TMP_0@1|) +(define-fun _728 () Bool (= _699 _727)) +(define-fun _729 () (_ BitVec 32) |__gpio_get_value::__retval__@1|) +(define-fun _730 () Bool (= _702 _729)) +(define-fun _731 () Bool (and _728 _730)) +(define-fun _732 () (_ BitVec 32) |gpio_get_value::__retval__@1|) +(define-fun _733 () Bool (= _708 _732)) +(define-fun _734 () Bool (and _731 _733)) +(define-fun _735 () (_ BitVec 32) |gpio_get_value::tmp@1|) +(define-fun _736 () Bool (= _705 _735)) +(define-fun _737 () Bool (and _734 _736)) +(define-fun _738 () (_ BitVec 32) |gpio_get_value_cansleep::__CPAchecker_TMP_0@1|) +(define-fun _739 () Bool (= _676 _738)) +(define-fun _740 () (_ BitVec 32) |gpio_get_value_cansleep::__retval__@1|) +(define-fun _741 () Bool (= _679 _740)) +(define-fun _742 () Bool (and _739 _741)) +(define-fun _743 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp@2|) +(define-fun _744 () Bool (= _682 _743)) +(define-fun _745 () Bool (and _742 _744)) +(define-fun _746 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___0@2|) +(define-fun _747 () Bool (= _690 _746)) +(define-fun _748 () Bool (and _745 _747)) +(define-fun _749 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___1@2|) +(define-fun _750 () Bool (= _711 _749)) +(define-fun _751 () Bool (and _737 _750)) +(define-fun _752 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___2@2|) +(define-fun _753 () Bool (= _719 _752)) +(define-fun _754 () Bool (and _751 _753)) +(define-fun _755 () Bool (and _726 _748)) +(define-fun _756 () Bool (and _698 _754)) +(define-fun _757 () Bool (or _755 _756)) +(define-fun _758 () (_ BitVec 32) (select _334 _657)) +(define-fun _759 () (_ BitVec 32) |gpio_keys_polled_check_state::__cil_tmp21@3|) +(define-fun _760 () Bool (= _758 _759)) +(define-fun _761 () Bool (and _757 _760)) +(define-fun _762 () Bool (= _696 _759)) +(define-fun _763 () Bool (not _762)) +(define-fun _765 () Bool (and _761 _763)) +(define-fun _766 () Bool (and _761 _762)) +(define-fun _767 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp22@3|) +(define-fun _768 () Bool (= _655 _767)) +(define-fun _769 () Bool (and _765 _768)) +(define-fun _771 () (_ BitVec 64) (bvadd _153 _767)) +(define-fun _772 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp23@3|) +(define-fun _773 () Bool (= _771 _772)) +(define-fun _774 () Bool (and _769 _773)) +(define-fun _775 () (_ BitVec 32) (select _334 _772)) +(define-fun _776 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___3@3|) +(define-fun _777 () Bool (= _775 _776)) +(define-fun _778 () Bool (and _774 _777)) +(define-fun _779 () Bool (= _776 _25)) +(define-fun _781 () Bool (and _778 _779)) +(define-fun _782 () Bool (not _779)) +(define-fun _783 () Bool (and _778 _782)) +(define-fun _784 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___3@4|) +(define-fun _785 () Bool (= _784 _29)) +(define-fun _786 () Bool (and _781 _785)) +(define-fun _787 () Bool (= _776 _784)) +(define-fun _788 () Bool (and _783 _787)) +(define-fun _789 () Bool (or _786 _788)) +(define-fun _790 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp31@3|) +(define-fun _791 () Bool (= _657 _790)) +(define-fun _792 () Bool (and _789 _791)) +(define-fun _795 () (_ BitVec 64) (bvadd _24 _790)) +(define-fun _796 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp32@3|) +(define-fun _797 () Bool (= _795 _796)) +(define-fun _798 () Bool (and _792 _797)) +(define-fun _799 () (Array (_ BitVec 64) (_ BitVec 32)) *int@3) +(define-fun _800 () (Array (_ BitVec 64) (_ BitVec 32)) (store _334 _796 _25)) +(define-fun _801 () Bool (= _799 _800)) +(define-fun _802 () Bool (and _798 _801)) +(define-fun _803 () (Array (_ BitVec 64) (_ BitVec 32)) *int@4) +(define-fun _804 () (Array (_ BitVec 64) (_ BitVec 32)) (store _799 _657 _696)) +(define-fun _805 () Bool (= _803 _804)) +(define-fun _806 () Bool (and _802 _805)) +(define-fun _807 () Bool (= _334 _803)) +(define-fun _808 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp22@2|) +(define-fun _809 () Bool (= _767 _808)) +(define-fun _810 () Bool (and _807 _809)) +(define-fun _811 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp23@2|) +(define-fun _812 () Bool (= _772 _811)) +(define-fun _813 () Bool (and _810 _812)) +(define-fun _814 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp31@2|) +(define-fun _815 () Bool (= _790 _814)) +(define-fun _816 () Bool (and _813 _815)) +(define-fun _817 () (_ BitVec 64) |gpio_keys_polled_check_state::__cil_tmp32@2|) +(define-fun _818 () Bool (= _796 _817)) +(define-fun _819 () Bool (and _816 _818)) +(define-fun _820 () (_ BitVec 32) |gpio_keys_polled_check_state::tmp___3@2|) +(define-fun _821 () Bool (= _784 _820)) +(define-fun _822 () Bool (and _819 _821)) +(define-fun _823 () Bool (and _766 _822)) +(define-fun _824 () Bool (or _806 _823)) +(define-fun _826 () (_ BitVec 32) (bvadd _29 _599)) +(define-fun _827 () (_ BitVec 32) |gpio_keys_polled_probe::i@5|) +(define-fun _828 () Bool (= _826 _827)) +(define-fun _829 () Bool (and _824 _828)) +(define-fun _830 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp69@3|) +(define-fun _831 () Bool (= _623 _830)) +(define-fun _832 () Bool (and _543 _831)) +(define-fun _833 () (_ BitVec 64) ((_ sign_extend 32) _526)) +(define-fun _835 () (_ BitVec 64) (bvmul _380 _833)) +(define-fun _836 () (_ BitVec 64) (bvadd _830 _835)) +(define-fun _837 () (_ BitVec 64) |gpio_keys_polled_probe::button@3|) +(define-fun _838 () Bool (= _836 _837)) +(define-fun _839 () Bool (and _832 _838)) +(define-fun _842 () (_ BitVec 64) (bvshl _833 _24)) +(define-fun _843 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp70@3|) +(define-fun _844 () Bool (= _842 _843)) +(define-fun _845 () Bool (and _839 _844)) +(define-fun _846 () (_ BitVec 64) (bvadd _153 _843)) +(define-fun _847 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp71@3|) +(define-fun _848 () Bool (= _846 _847)) +(define-fun _849 () Bool (and _845 _848)) +(define-fun _850 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp72@3|) +(define-fun _851 () Bool (= _256 _850)) +(define-fun _852 () Bool (and _849 _851)) +(define-fun _854 () (_ BitVec 64) (bvadd _847 _850)) +(define-fun _855 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp73@3|) +(define-fun _856 () Bool (= _854 _855)) +(define-fun _857 () Bool (and _852 _856)) +(define-fun _858 () (_ BitVec 64) |gpio_keys_polled_probe::bdata@3|) +(define-fun _859 () Bool (= _855 _858)) +(define-fun _860 () Bool (and _857 _859)) +(define-fun _861 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp77@3|) +(define-fun _862 () Bool (= _837 _861)) +(define-fun _863 () Bool (and _860 _862)) +(define-fun _865 () (_ BitVec 64) (bvadd _153 _861)) +(define-fun _866 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp78@3|) +(define-fun _867 () Bool (= _865 _866)) +(define-fun _868 () Bool (and _863 _867)) +(define-fun _869 () (_ BitVec 32) (select _334 _866)) +(define-fun _870 () (_ BitVec 32) |gpio_keys_polled_probe::tmp___0@3|) +(define-fun _871 () Bool (= _869 _870)) +(define-fun _872 () Bool (and _868 _871)) +(define-fun _873 () Bool (= _870 _25)) +(define-fun _875 () Bool (and _872 _873)) +(define-fun _876 () Bool (not _873)) +(define-fun _877 () Bool (and _872 _876)) +(define-fun _878 () (_ BitVec 32) |gpio_keys_polled_probe::tmp___0@4|) +(define-fun _879 () Bool (= _878 _29)) +(define-fun _880 () Bool (and _875 _879)) +(define-fun _881 () Bool (= _870 _878)) +(define-fun _882 () Bool (and _877 _881)) +(define-fun _883 () Bool (or _880 _882)) +(define-fun _884 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp79@3|) +(define-fun _885 () Bool (= _837 _884)) +(define-fun _886 () Bool (and _883 _885)) +(define-fun _888 () (_ BitVec 64) (bvadd _491 _884)) +(define-fun _889 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp80@3|) +(define-fun _890 () Bool (= _888 _889)) +(define-fun _891 () Bool (and _886 _890)) +(define-fun _892 () (_ BitVec 32) (select _334 _889)) +(define-fun _893 () Bool (= _892 _25)) +(define-fun _895 () Bool (and _891 _893)) +(define-fun _896 () Bool (not _893)) +(define-fun _897 () Bool (and _891 _896)) +(define-fun _898 () Bool (and _597 _897)) +(define-fun _899 () (_ BitVec 32) (_ bv4294967274 32)) +(define-fun _900 () Bool (= _587 _899)) +(define-fun _901 () Bool (and _898 _900)) +(define-fun _902 () Bool (= _453 _559)) +(define-fun _903 () Bool (= _571 _572)) +(define-fun _904 () Bool (and _902 _903)) +(define-fun _905 () Bool (= _546 _547)) +(define-fun _906 () Bool (and _904 _905)) +(define-fun _907 () Bool (= _170 _580)) +(define-fun _908 () Bool (and _906 _907)) +(define-fun _909 () (_ BitVec 32) |dev_set_drvdata::__retval__@1|) +(define-fun _910 () Bool (= _577 _909)) +(define-fun _911 () Bool (and _908 _910)) +(define-fun _912 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp106@2|) +(define-fun _913 () Bool (= _551 _912)) +(define-fun _914 () Bool (and _911 _913)) +(define-fun _915 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp107@2|) +(define-fun _916 () Bool (= _556 _915)) +(define-fun _917 () Bool (and _914 _916)) +(define-fun _918 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp108@2|) +(define-fun _919 () Bool (= _563 _918)) +(define-fun _920 () Bool (and _917 _919)) +(define-fun _921 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp109@2|) +(define-fun _922 () Bool (= _568 _921)) +(define-fun _923 () Bool (and _920 _922)) +(define-fun _924 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp69@2|) +(define-fun _925 () Bool (= _830 _924)) +(define-fun _926 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp70@2|) +(define-fun _927 () Bool (= _843 _926)) +(define-fun _928 () Bool (and _925 _927)) +(define-fun _929 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp71@2|) +(define-fun _930 () Bool (= _847 _929)) +(define-fun _931 () Bool (and _928 _930)) +(define-fun _932 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp72@2|) +(define-fun _933 () Bool (= _850 _932)) +(define-fun _934 () Bool (and _931 _933)) +(define-fun _935 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp73@2|) +(define-fun _936 () Bool (= _855 _935)) +(define-fun _937 () Bool (and _934 _936)) +(define-fun _938 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp77@2|) +(define-fun _939 () Bool (= _861 _938)) +(define-fun _940 () Bool (and _937 _939)) +(define-fun _941 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp78@2|) +(define-fun _942 () Bool (= _866 _941)) +(define-fun _943 () Bool (and _940 _942)) +(define-fun _944 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp79@2|) +(define-fun _945 () Bool (= _884 _944)) +(define-fun _946 () Bool (and _943 _945)) +(define-fun _947 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp80@2|) +(define-fun _948 () Bool (= _889 _947)) +(define-fun _949 () Bool (and _946 _948)) +(define-fun _950 () (_ BitVec 64) |gpio_keys_polled_probe::bdata@2|) +(define-fun _951 () Bool (= _858 _950)) +(define-fun _952 () Bool (and _949 _951)) +(define-fun _953 () (_ BitVec 64) |gpio_keys_polled_probe::button@2|) +(define-fun _954 () Bool (= _837 _953)) +(define-fun _955 () Bool (and _952 _954)) +(define-fun _956 () (_ BitVec 32) |gpio_keys_polled_probe::tmp___0@2|) +(define-fun _957 () Bool (= _878 _956)) +(define-fun _958 () Bool (and _955 _957)) +(define-fun _959 () (_ BitVec 32) |input_register_polled_device::__CPAchecker_TMP_0@1|) +(define-fun _960 () Bool (= _581 _959)) +(define-fun _961 () Bool (and _923 _960)) +(define-fun _962 () (_ BitVec 32) |input_register_polled_device::__retval__@1|) +(define-fun _963 () Bool (= _584 _962)) +(define-fun _964 () Bool (and _961 _963)) +(define-fun _965 () Bool (and _901 _964)) +(define-fun _966 () Bool (and _598 _958)) +(define-fun _967 () Bool (or _965 _966)) +(define-fun _968 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp82@3|) +(define-fun _969 () Bool (= _837 _968)) +(define-fun _970 () Bool (and _895 _969)) +(define-fun _972 () (_ BitVec 64) (bvadd _96 _968)) +(define-fun _973 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp83@3|) +(define-fun _974 () Bool (= _972 _973)) +(define-fun _975 () Bool (and _970 _974)) +(define-fun _976 () (_ BitVec 64) (select _430 _973)) +(define-fun _977 () Bool (= _976 _8)) +(define-fun _979 () Bool (and _975 _977)) +(define-fun _980 () Bool (not _977)) +(define-fun _981 () Bool (and _975 _980)) +(define-fun _982 () Bool (or _979 _981)) +(define-fun _983 () (_ BitVec 32) |gpio_request::__CPAchecker_TMP_0@3|) +(define-fun _984 () Bool (= _580 _983)) +(define-fun _985 () Bool (and _982 _984)) +(define-fun _986 () (_ BitVec 32) |gpio_request::__retval__@2|) +(define-fun _987 () Bool (= _983 _986)) +(define-fun _988 () Bool (and _985 _987)) +(define-fun _989 () Bool (= _587 _986)) +(define-fun _990 () Bool (and _988 _989)) +(define-fun _991 () Bool (and _590 _990)) +(define-fun _992 () Bool (and _593 _990)) +(define-fun _993 () Bool (and _597 _992)) +(define-fun _994 () Bool (and _906 _910)) +(define-fun _995 () Bool (and _913 _994)) +(define-fun _996 () Bool (and _916 _995)) +(define-fun _997 () Bool (and _919 _996)) +(define-fun _998 () Bool (and _922 _997)) +(define-fun _999 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp82@2|) +(define-fun _1000 () Bool (= _968 _999)) +(define-fun _1001 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp83@2|) +(define-fun _1002 () Bool (= _973 _1001)) +(define-fun _1003 () Bool (and _1000 _1002)) +(define-fun _1004 () (_ BitVec 32) |gpio_request::__CPAchecker_TMP_0@1|) +(define-fun _1005 () Bool (= _983 _1004)) +(define-fun _1006 () Bool (and _1003 _1005)) +(define-fun _1007 () (_ BitVec 32) |gpio_request::__retval__@1|) +(define-fun _1008 () Bool (= _986 _1007)) +(define-fun _1009 () Bool (and _1006 _1008)) +(define-fun _1010 () Bool (and _960 _998)) +(define-fun _1011 () Bool (and _963 _1010)) +(define-fun _1012 () Bool (and _993 _1011)) +(define-fun _1013 () Bool (and _967 _1009)) +(define-fun _1014 () Bool (or _1012 _1013)) +(define-fun _1015 () (_ BitVec 32) |gpio_direction_input::__CPAchecker_TMP_0@3|) +(define-fun _1016 () Bool (= _675 _1015)) +(define-fun _1017 () Bool (and _991 _1016)) +(define-fun _1018 () (_ BitVec 32) |gpio_direction_input::__retval__@2|) +(define-fun _1019 () Bool (= _1015 _1018)) +(define-fun _1020 () Bool (and _1017 _1019)) +(define-fun _1021 () (_ BitVec 32) |gpio_keys_polled_probe::error@4|) +(define-fun _1022 () Bool (= _1018 _1021)) +(define-fun _1023 () Bool (and _1020 _1022)) +(define-fun _1024 () Bool (= _1021 _25)) +(define-fun _1026 () Bool (and _1023 _1024)) +(define-fun _1027 () Bool (not _1024)) +(define-fun _1028 () Bool (and _1023 _1027)) +(define-fun _1029 () Bool (and _597 _1028)) +(define-fun _1030 () Bool (= _580 _675)) +(define-fun _1031 () (_ BitVec 32) |gpio_direction_input::__CPAchecker_TMP_0@1|) +(define-fun _1032 () Bool (= _1015 _1031)) +(define-fun _1033 () Bool (and _1030 _1032)) +(define-fun _1034 () (_ BitVec 32) |gpio_direction_input::__retval__@1|) +(define-fun _1035 () Bool (= _1018 _1034)) +(define-fun _1036 () Bool (and _1033 _1035)) +(define-fun _1037 () Bool (= _587 _1021)) +(define-fun _1038 () Bool (and _1036 _1037)) +(define-fun _1039 () Bool (and _1011 _1029)) +(define-fun _1040 () Bool (and _1014 _1038)) +(define-fun _1041 () Bool (or _1039 _1040)) +(define-fun _1043 () (_ BitVec 32) (_ bv4294967295 32)) +(define-fun _1045 () (_ BitVec 32) (bvadd _1043 _526)) +(define-fun _1046 () Bool (= _599 _1045)) +(define-fun _1047 () Bool (and _1041 _1046)) +(define-fun _1050 () (_ BitVec 1) (_ bv1 1)) +(define-fun _1051 () (_ BitVec 1) ((_ extract 31 31) _599)) +(define-fun _1052 () Bool (= _1051 _1050)) +(define-fun _1056 () Bool (and _1047 _1052)) +(define-fun _1057 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp88@3|) +(define-fun _1058 () Bool (= _858 _1057)) +(define-fun _1059 () Bool (and _1026 _1058)) +(define-fun _1061 () (_ BitVec 64) (bvadd _114 _1057)) +(define-fun _1062 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp89@3|) +(define-fun _1063 () Bool (= _1061 _1062)) +(define-fun _1064 () Bool (and _1059 _1063)) +(define-fun _1065 () (_ BitVec 32) __VERIFIER_nondet_int@7) +(define-fun _1066 () (_ BitVec 32) |__gpio_cansleep::__CPAchecker_TMP_0@3|) +(define-fun _1067 () Bool (= _1065 _1066)) +(define-fun _1068 () Bool (and _1064 _1067)) +(define-fun _1069 () (_ BitVec 32) |__gpio_cansleep::__retval__@2|) +(define-fun _1070 () Bool (= _1066 _1069)) +(define-fun _1071 () Bool (and _1068 _1070)) +(define-fun _1072 () (_ BitVec 32) |gpio_cansleep::tmp@3|) +(define-fun _1073 () Bool (= _1069 _1072)) +(define-fun _1074 () Bool (and _1071 _1073)) +(define-fun _1075 () (_ BitVec 32) |gpio_cansleep::__retval__@2|) +(define-fun _1076 () Bool (= _1072 _1075)) +(define-fun _1077 () Bool (and _1074 _1076)) +(define-fun _1078 () (Array (_ BitVec 64) (_ BitVec 32)) (store _334 _1062 _1075)) +(define-fun _1079 () Bool (= _799 _1078)) +(define-fun _1080 () Bool (and _1077 _1079)) +(define-fun _1081 () (Array (_ BitVec 64) (_ BitVec 32)) (store _799 _858 _1043)) +(define-fun _1082 () Bool (= _803 _1081)) +(define-fun _1083 () Bool (and _1080 _1082)) +(define-fun _1084 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp90@3|) +(define-fun _1085 () Bool (= _858 _1084)) +(define-fun _1086 () Bool (and _1083 _1085)) +(define-fun _1088 () (_ BitVec 64) (bvadd _33 _1084)) +(define-fun _1089 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp91@3|) +(define-fun _1090 () Bool (= _1088 _1089)) +(define-fun _1091 () Bool (and _1086 _1090)) +(define-fun _1092 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp92@3|) +(define-fun _1093 () Bool (= _89 _1092)) +(define-fun _1094 () Bool (and _1091 _1093)) +(define-fun _1096 () (_ BitVec 64) (bvadd _114 _1092)) +(define-fun _1097 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp93@3|) +(define-fun _1098 () Bool (= _1096 _1097)) +(define-fun _1099 () Bool (and _1094 _1098)) +(define-fun _1100 () (_ BitVec 32) (select _803 _1097)) +(define-fun _1101 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp94@3|) +(define-fun _1102 () Bool (= _1100 _1101)) +(define-fun _1103 () Bool (and _1099 _1102)) +(define-fun _1104 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp95@3|) +(define-fun _1105 () Bool (= _89 _1104)) +(define-fun _1106 () Bool (and _1103 _1105)) +(define-fun _1108 () (_ BitVec 64) (bvadd _114 _1104)) +(define-fun _1109 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp96@3|) +(define-fun _1110 () Bool (= _1108 _1109)) +(define-fun _1111 () Bool (and _1106 _1110)) +(define-fun _1112 () (_ BitVec 32) (select _803 _1109)) +(define-fun _1113 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp97@3|) +(define-fun _1114 () Bool (= _1112 _1113)) +(define-fun _1115 () Bool (and _1111 _1114)) +(define-fun _1116 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp98@3|) +(define-fun _1117 () Bool (= _837 _1116)) +(define-fun _1118 () Bool (and _1115 _1117)) +(define-fun _1120 () (_ BitVec 64) (bvadd _319 _1116)) +(define-fun _1121 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp99@3|) +(define-fun _1122 () Bool (= _1120 _1121)) +(define-fun _1123 () Bool (and _1118 _1122)) +(define-fun _1124 () (_ BitVec 32) (select _803 _1121)) +(define-fun _1125 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp100@3|) +(define-fun _1126 () Bool (= _1124 _1125)) +(define-fun _1127 () Bool (and _1123 _1126)) +(define-fun _1128 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp101@3|) +(define-fun _1129 () Bool (= _1125 _1128)) +(define-fun _1130 () Bool (and _1127 _1129)) +(define-fun _1132 () (_ BitVec 32) (bvadd _1113 _1128)) +(define-fun _1133 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp102@3|) +(define-fun _1134 () Bool (= _1132 _1133)) +(define-fun _1135 () Bool (and _1130 _1134)) +(define-fun _1138 () (_ BitVec 32) (bvadd _1043 _1133)) +(define-fun _1139 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp103@3|) +(define-fun _1140 () Bool (= _1138 _1139)) +(define-fun _1141 () Bool (and _1135 _1140)) +(define-fun _1142 () (_ BitVec 32) (bvudiv _1139 _1101)) +(define-fun _1143 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp104@3|) +(define-fun _1144 () Bool (= _1142 _1143)) +(define-fun _1145 () Bool (and _1141 _1144)) +(define-fun _1146 () (Array (_ BitVec 64) (_ BitVec 32)) *int@5) +(define-fun _1147 () (Array (_ BitVec 64) (_ BitVec 32)) (store _803 _1089 _1143)) +(define-fun _1148 () Bool (= _1146 _1147)) +(define-fun _1149 () Bool (and _1145 _1148)) +(define-fun _1151 () (_ BitVec 32) (bvadd _29 _526)) +(define-fun _1152 () Bool (= _599 _1151)) +(define-fun _1153 () Bool (and _1149 _1152)) +(define-fun _1154 () Bool (and _285 _597)) +(define-fun _1155 () (_ BitVec 32) (_ bv4294967284 32)) +(define-fun _1156 () Bool (= _587 _1155)) +(define-fun _1157 () Bool (and _1154 _1156)) +(define-fun _1158 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp128@3|) +(define-fun _1159 () Bool (= _256 _1158)) +(define-fun _1160 () Bool (and _1056 _1159)) +(define-fun _1161 () Bool (and _1157 _1159)) +(define-fun _1162 () (_ BitVec 64) |kfree::p@2|) +(define-fun _1163 () Bool (= _1158 _1162)) +(define-fun _1164 () Bool (and _1160 _1163)) +(define-fun _1165 () (_ BitVec 8) __nondet_value_void@2) +(define-fun _1166 () Bool (and _1161 _1163)) +(define-fun _1167 () (_ BitVec 32) |dev_set_drvdata::__retval__@3|) +(define-fun _1168 () Bool (= _576 _1167)) +(define-fun _1169 () Bool (and _1164 _1168)) +(define-fun _1170 () Bool (and _578 _1166)) +(define-fun _1171 () Bool (= _619 _1021)) +(define-fun _1172 () Bool (and _1169 _1171)) +(define-fun _1173 () Bool (= _587 _619)) +(define-fun _1174 () Bool (and _1170 _1173)) +(define-fun _1175 () Bool (and _264 _597)) +(define-fun _1176 () Bool (= _619 _1155)) +(define-fun _1177 () Bool (and _1175 _1176)) +(define-fun _1178 () (_ BitVec 64) __VERIFIER_nondet_pointer@1) +(define-fun _1179 () Bool (= _267 _1178)) +(define-fun _1180 () (_ BitVec 8) __nondet_value_void@1) +(define-fun _1181 () Bool (= _1165 _1180)) +(define-fun _1182 () Bool (and _1179 _1181)) +(define-fun _1183 () Bool (and _910 _1182)) +(define-fun _1184 () (_ BitVec 64) |external_alloc::__CPAchecker_TMP_0@1|) +(define-fun _1185 () Bool (= _268 _1184)) +(define-fun _1186 () Bool (and _1183 _1185)) +(define-fun _1187 () (_ BitVec 64) |external_alloc::__retval__@1|) +(define-fun _1188 () Bool (= _271 _1187)) +(define-fun _1189 () Bool (and _1186 _1188)) +(define-fun _1190 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp128@2|) +(define-fun _1191 () Bool (= _1158 _1190)) +(define-fun _1192 () Bool (and _1189 _1191)) +(define-fun _1193 () (_ BitVec 32) |gpio_keys_polled_probe::error@2|) +(define-fun _1194 () Bool (= _587 _1193)) +(define-fun _1195 () Bool (and _1192 _1194)) +(define-fun _1196 () (_ BitVec 64) |gpio_keys_polled_probe::poll_dev@2|) +(define-fun _1197 () Bool (= _280 _1196)) +(define-fun _1198 () Bool (and _1195 _1197)) +(define-fun _1199 () (_ BitVec 64) |input_allocate_polled_device::__CPAchecker_TMP_0@1|) +(define-fun _1200 () Bool (= _274 _1199)) +(define-fun _1201 () Bool (and _1198 _1200)) +(define-fun _1202 () (_ BitVec 64) |input_allocate_polled_device::__retval__@1|) +(define-fun _1203 () Bool (= _277 _1202)) +(define-fun _1204 () Bool (and _1201 _1203)) +(define-fun _1205 () (_ BitVec 64) |kfree::p@1|) +(define-fun _1206 () Bool (= _1162 _1205)) +(define-fun _1207 () Bool (and _1204 _1206)) +(define-fun _1208 () Bool (and _1177 _1207)) +(define-fun _1209 () Bool (or _1174 _1208)) +(define-fun _1210 () Bool (= _619 _899)) +(define-fun _1211 () Bool (and _127 _1210)) +(define-fun _1212 () Bool (= _55 _170)) +(define-fun _1213 () Bool (and _1179 _1212)) +(define-fun _1214 () (_ BitVec 64) |__kmalloc::__CPAchecker_TMP_0@1|) +(define-fun _1215 () Bool (= _228 _1214)) +(define-fun _1216 () Bool (and _1213 _1215)) +(define-fun _1217 () (_ BitVec 64) |__kmalloc::__retval__@1|) +(define-fun _1218 () Bool (= _231 _1217)) +(define-fun _1219 () Bool (and _1216 _1218)) +(define-fun _1220 () (_ BitVec 64) |__kmalloc::size@1|) +(define-fun _1221 () Bool (= _164 _1220)) +(define-fun _1222 () Bool (and _1219 _1221)) +(define-fun _1223 () Bool (and _1181 _1222)) +(define-fun _1224 () (_ BitVec 32) |dev_err::__retval__@1|) +(define-fun _1225 () Bool (= _596 _1224)) +(define-fun _1226 () Bool (and _1223 _1225)) +(define-fun _1227 () Bool (and _910 _1226)) +(define-fun _1228 () Bool (and _1185 _1227)) +(define-fun _1229 () Bool (and _1188 _1228)) +(define-fun _1230 () Bool (and _1191 _1229)) +(define-fun _1231 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp25@2|) +(define-fun _1232 () Bool (= _130 _1231)) +(define-fun _1233 () Bool (and _1230 _1232)) +(define-fun _1234 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp26@2|) +(define-fun _1235 () Bool (= _136 _1234)) +(define-fun _1236 () Bool (and _1233 _1235)) +(define-fun _1237 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp27@2|) +(define-fun _1238 () Bool (= _140 _1237)) +(define-fun _1239 () Bool (and _1236 _1238)) +(define-fun _1240 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp28@2|) +(define-fun _1241 () Bool (= _144 _1240)) +(define-fun _1242 () Bool (and _1239 _1241)) +(define-fun _1243 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp29@2|) +(define-fun _1244 () Bool (= _150 _1243)) +(define-fun _1245 () Bool (and _1242 _1244)) +(define-fun _1246 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp30@2|) +(define-fun _1247 () Bool (= _155 _1246)) +(define-fun _1248 () Bool (and _1245 _1247)) +(define-fun _1249 () (_ BitVec 64) |gpio_keys_polled_probe::bdev@2|) +(define-fun _1250 () Bool (= _256 _1249)) +(define-fun _1251 () Bool (and _1248 _1250)) +(define-fun _1252 () Bool (and _1194 _1251)) +(define-fun _1253 () Bool (and _1197 _1252)) +(define-fun _1254 () (_ BitVec 64) |gpio_keys_polled_probe::tmp@2|) +(define-fun _1255 () Bool (= _246 _1254)) +(define-fun _1256 () Bool (and _1253 _1255)) +(define-fun _1257 () Bool (and _1200 _1256)) +(define-fun _1258 () Bool (and _1203 _1257)) +(define-fun _1259 () Bool (and _1206 _1258)) +(define-fun _1260 () (_ BitVec 64) |kmalloc::__retval__@1|) +(define-fun _1261 () Bool (= _237 _1260)) +(define-fun _1262 () Bool (and _1259 _1261)) +(define-fun _1263 () (_ BitVec 64) |kmalloc::size@1|) +(define-fun _1264 () Bool (= _161 _1263)) +(define-fun _1265 () Bool (and _1262 _1264)) +(define-fun _1266 () (_ BitVec 64) |kmalloc::tmp___2@1|) +(define-fun _1267 () Bool (= _234 _1266)) +(define-fun _1268 () Bool (and _1265 _1267)) +(define-fun _1269 () (_ BitVec 64) |kzalloc::__retval__@1|) +(define-fun _1270 () Bool (= _243 _1269)) +(define-fun _1271 () Bool (and _1268 _1270)) +(define-fun _1272 () (_ BitVec 64) |kzalloc::size@1|) +(define-fun _1273 () Bool (= _158 _1272)) +(define-fun _1274 () Bool (and _1271 _1273)) +(define-fun _1275 () (_ BitVec 64) |kzalloc::tmp@1|) +(define-fun _1276 () Bool (= _240 _1275)) +(define-fun _1277 () Bool (and _1274 _1276)) +(define-fun _1278 () Bool (and _213 _1277)) +(define-fun _1279 () Bool (and _215 _1278)) +(define-fun _1280 () (_ BitVec 32) |ldv_malloc::__CPAchecker_TMP_0@1|) +(define-fun _1281 () Bool (= _171 _1280)) +(define-fun _1282 () Bool (and _1279 _1281)) +(define-fun _1283 () Bool (and _218 _1282)) +(define-fun _1284 () (_ BitVec 64) |ldv_malloc::__retval__@1|) +(define-fun _1285 () Bool (= _207 _1284)) +(define-fun _1286 () Bool (and _1283 _1285)) +(define-fun _1287 () Bool (and _221 _1286)) +(define-fun _1288 () (_ BitVec 64) |ldv_malloc::size@1|) +(define-fun _1289 () Bool (= _167 _1288)) +(define-fun _1290 () Bool (and _1287 _1289)) +(define-fun _1291 () Bool (and _224 _1290)) +(define-fun _1292 () Bool (and _1211 _1291)) +(define-fun _1293 () Bool (or _1209 _1292)) +(define-fun _1294 () Bool (and _107 _1210)) +(define-fun _1295 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp22@2|) +(define-fun _1296 () Bool (= _110 _1295)) +(define-fun _1297 () Bool (and _1230 _1296)) +(define-fun _1298 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp23@2|) +(define-fun _1299 () Bool (= _117 _1298)) +(define-fun _1300 () Bool (and _1297 _1299)) +(define-fun _1301 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp24@2|) +(define-fun _1302 () Bool (= _122 _1301)) +(define-fun _1303 () Bool (and _1300 _1302)) +(define-fun _1304 () Bool (and _1232 _1303)) +(define-fun _1305 () Bool (and _1235 _1304)) +(define-fun _1306 () Bool (and _1238 _1305)) +(define-fun _1307 () Bool (and _1241 _1306)) +(define-fun _1308 () Bool (and _1244 _1307)) +(define-fun _1309 () Bool (and _1247 _1308)) +(define-fun _1310 () Bool (and _1250 _1309)) +(define-fun _1311 () Bool (and _1194 _1310)) +(define-fun _1312 () Bool (and _1197 _1311)) +(define-fun _1313 () Bool (and _1255 _1312)) +(define-fun _1314 () Bool (and _1200 _1313)) +(define-fun _1315 () Bool (and _1203 _1314)) +(define-fun _1316 () Bool (and _1206 _1315)) +(define-fun _1317 () Bool (and _1261 _1316)) +(define-fun _1318 () Bool (and _1264 _1317)) +(define-fun _1319 () Bool (and _1267 _1318)) +(define-fun _1320 () Bool (and _1270 _1319)) +(define-fun _1321 () Bool (and _1273 _1320)) +(define-fun _1322 () Bool (and _1276 _1321)) +(define-fun _1323 () Bool (and _213 _1322)) +(define-fun _1324 () Bool (and _215 _1323)) +(define-fun _1325 () Bool (and _1281 _1324)) +(define-fun _1326 () Bool (and _218 _1325)) +(define-fun _1327 () Bool (and _1285 _1326)) +(define-fun _1328 () Bool (and _221 _1327)) +(define-fun _1329 () Bool (and _1289 _1328)) +(define-fun _1330 () Bool (and _224 _1329)) +(define-fun _1331 () Bool (and _1294 _1330)) +(define-fun _1332 () Bool (or _1293 _1331)) +(define-fun _1333 () (_ BitVec 32) res_gpio_keys_polled_probe_4@3) +(define-fun _1334 () Bool (= _619 _1333)) +(define-fun _1335 () Bool (and _621 _1334)) +(define-fun _1336 () Bool (and _1172 _1334)) +(define-fun _1337 () Bool (and _1332 _1334)) +(define-fun _1338 () Bool (= _1333 _25)) +(define-fun _1340 () Bool (and _1335 _1338)) +(define-fun _1343 () Bool (and _1336 _1338)) +(define-fun _1345 () Bool (and _1337 _1338)) +(define-fun _1357 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp100@1|) +(define-fun _1358 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp100@2|) +(define-fun _1359 () Bool (= _1357 _1358)) +(define-fun _1361 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp101@1|) +(define-fun _1362 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp101@2|) +(define-fun _1363 () Bool (= _1361 _1362)) +(define-fun _1365 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp102@1|) +(define-fun _1366 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp102@2|) +(define-fun _1367 () Bool (= _1365 _1366)) +(define-fun _1369 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp103@1|) +(define-fun _1370 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp103@2|) +(define-fun _1371 () Bool (= _1369 _1370)) +(define-fun _1373 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp104@1|) +(define-fun _1374 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp104@2|) +(define-fun _1375 () Bool (= _1373 _1374)) +(define-fun _1377 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp106@1|) +(define-fun _1378 () Bool (= _912 _1377)) +(define-fun _1380 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp107@1|) +(define-fun _1381 () Bool (= _915 _1380)) +(define-fun _1383 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp108@1|) +(define-fun _1384 () Bool (= _918 _1383)) +(define-fun _1386 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp109@1|) +(define-fun _1387 () Bool (= _921 _1386)) +(define-fun _1389 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp112@1|) +(define-fun _1390 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp112@2|) +(define-fun _1391 () Bool (= _1389 _1390)) +(define-fun _1393 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp113@1|) +(define-fun _1394 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp113@2|) +(define-fun _1395 () Bool (= _1393 _1394)) +(define-fun _1397 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp114@1|) +(define-fun _1398 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp114@2|) +(define-fun _1399 () Bool (= _1397 _1398)) +(define-fun _1401 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp115@1|) +(define-fun _1402 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp115@2|) +(define-fun _1403 () Bool (= _1401 _1402)) +(define-fun _1405 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp116@1|) +(define-fun _1406 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp116@2|) +(define-fun _1407 () Bool (= _1405 _1406)) +(define-fun _1409 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp117@1|) +(define-fun _1410 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp117@2|) +(define-fun _1411 () Bool (= _1409 _1410)) +(define-fun _1413 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp118@1|) +(define-fun _1414 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp118@2|) +(define-fun _1415 () Bool (= _1413 _1414)) +(define-fun _1417 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp119@1|) +(define-fun _1418 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp119@2|) +(define-fun _1419 () Bool (= _1417 _1418)) +(define-fun _1421 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp120@1|) +(define-fun _1422 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp120@2|) +(define-fun _1423 () Bool (= _1421 _1422)) +(define-fun _1425 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp121@1|) +(define-fun _1426 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp121@2|) +(define-fun _1427 () Bool (= _1425 _1426)) +(define-fun _1429 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp128@1|) +(define-fun _1430 () Bool (= _1158 _1429)) +(define-fun _1432 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp16@1|) +(define-fun _1433 () Bool (= _73 _1432)) +(define-fun _1435 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp17@1|) +(define-fun _1436 () Bool (= _76 _1435)) +(define-fun _1438 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp18@1|) +(define-fun _1439 () Bool (= _81 _1438)) +(define-fun _1441 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp19@1|) +(define-fun _1442 () Bool (= _86 _1441)) +(define-fun _1444 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp20@1|) +(define-fun _1445 () Bool (= _92 _1444)) +(define-fun _1447 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp21@1|) +(define-fun _1448 () Bool (= _99 _1447)) +(define-fun _1450 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp22@1|) +(define-fun _1451 () Bool (= _110 _1450)) +(define-fun _1453 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp23@1|) +(define-fun _1454 () Bool (= _117 _1453)) +(define-fun _1456 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp24@1|) +(define-fun _1457 () Bool (= _122 _1456)) +(define-fun _1459 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp25@1|) +(define-fun _1460 () Bool (= _130 _1459)) +(define-fun _1462 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp26@1|) +(define-fun _1463 () Bool (= _136 _1462)) +(define-fun _1465 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp27@1|) +(define-fun _1466 () Bool (= _140 _1465)) +(define-fun _1468 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp28@1|) +(define-fun _1469 () Bool (= _144 _1468)) +(define-fun _1471 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp29@1|) +(define-fun _1472 () Bool (= _150 _1471)) +(define-fun _1474 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp30@1|) +(define-fun _1475 () Bool (= _155 _1474)) +(define-fun _1477 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp33@1|) +(define-fun _1478 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp33@2|) +(define-fun _1479 () Bool (= _1477 _1478)) +(define-fun _1481 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp34@1|) +(define-fun _1482 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp34@2|) +(define-fun _1483 () Bool (= _1481 _1482)) +(define-fun _1485 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp35@1|) +(define-fun _1486 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp35@2|) +(define-fun _1487 () Bool (= _1485 _1486)) +(define-fun _1489 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp36@1|) +(define-fun _1490 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp36@2|) +(define-fun _1491 () Bool (= _1489 _1490)) +(define-fun _1493 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp37@1|) +(define-fun _1494 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp37@2|) +(define-fun _1495 () Bool (= _1493 _1494)) +(define-fun _1497 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp38@1|) +(define-fun _1498 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp38@2|) +(define-fun _1499 () Bool (= _1497 _1498)) +(define-fun _1501 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp39@1|) +(define-fun _1502 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp39@2|) +(define-fun _1503 () Bool (= _1501 _1502)) +(define-fun _1505 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp40@1|) +(define-fun _1506 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp40@2|) +(define-fun _1507 () Bool (= _1505 _1506)) +(define-fun _1509 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp41@1|) +(define-fun _1510 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp41@2|) +(define-fun _1511 () Bool (= _1509 _1510)) +(define-fun _1513 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp42@1|) +(define-fun _1514 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp42@2|) +(define-fun _1515 () Bool (= _1513 _1514)) +(define-fun _1517 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp43@1|) +(define-fun _1518 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp43@2|) +(define-fun _1519 () Bool (= _1517 _1518)) +(define-fun _1521 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp44@1|) +(define-fun _1522 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp44@2|) +(define-fun _1523 () Bool (= _1521 _1522)) +(define-fun _1525 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp45@1|) +(define-fun _1526 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp45@2|) +(define-fun _1527 () Bool (= _1525 _1526)) +(define-fun _1529 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp46@1|) +(define-fun _1530 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp46@2|) +(define-fun _1531 () Bool (= _1529 _1530)) +(define-fun _1533 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp47@1|) +(define-fun _1534 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp47@2|) +(define-fun _1535 () Bool (= _1533 _1534)) +(define-fun _1537 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp48@1|) +(define-fun _1538 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp48@2|) +(define-fun _1539 () Bool (= _1537 _1538)) +(define-fun _1541 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp49@1|) +(define-fun _1542 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp49@2|) +(define-fun _1543 () Bool (= _1541 _1542)) +(define-fun _1545 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp50@1|) +(define-fun _1546 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp50@2|) +(define-fun _1547 () Bool (= _1545 _1546)) +(define-fun _1549 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp51@1|) +(define-fun _1550 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp51@2|) +(define-fun _1551 () Bool (= _1549 _1550)) +(define-fun _1553 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp52@1|) +(define-fun _1554 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp52@2|) +(define-fun _1555 () Bool (= _1553 _1554)) +(define-fun _1557 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp53@1|) +(define-fun _1558 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp53@2|) +(define-fun _1559 () Bool (= _1557 _1558)) +(define-fun _1561 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp54@1|) +(define-fun _1562 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp54@2|) +(define-fun _1563 () Bool (= _1561 _1562)) +(define-fun _1565 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp55@1|) +(define-fun _1566 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp55@2|) +(define-fun _1567 () Bool (= _1565 _1566)) +(define-fun _1569 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp56@1|) +(define-fun _1570 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp56@2|) +(define-fun _1571 () Bool (= _1569 _1570)) +(define-fun _1573 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp57@1|) +(define-fun _1574 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp57@2|) +(define-fun _1575 () Bool (= _1573 _1574)) +(define-fun _1577 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp58@1|) +(define-fun _1578 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp58@2|) +(define-fun _1579 () Bool (= _1577 _1578)) +(define-fun _1581 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp59@1|) +(define-fun _1582 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp59@2|) +(define-fun _1583 () Bool (= _1581 _1582)) +(define-fun _1585 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp60@1|) +(define-fun _1586 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp60@2|) +(define-fun _1587 () Bool (= _1585 _1586)) +(define-fun _1589 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp61@1|) +(define-fun _1590 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp61@2|) +(define-fun _1591 () Bool (= _1589 _1590)) +(define-fun _1593 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp62@1|) +(define-fun _1594 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp62@2|) +(define-fun _1595 () Bool (= _1593 _1594)) +(define-fun _1597 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp63@1|) +(define-fun _1598 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp63@2|) +(define-fun _1599 () Bool (= _1597 _1598)) +(define-fun _1601 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp64@1|) +(define-fun _1602 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp64@2|) +(define-fun _1603 () Bool (= _1601 _1602)) +(define-fun _1605 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp65@1|) +(define-fun _1606 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp65@2|) +(define-fun _1607 () Bool (= _1605 _1606)) +(define-fun _1609 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp66@1|) +(define-fun _1610 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp66@2|) +(define-fun _1611 () Bool (= _1609 _1610)) +(define-fun _1613 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp67@1|) +(define-fun _1614 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp67@2|) +(define-fun _1615 () Bool (= _1613 _1614)) +(define-fun _1617 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp68@1|) +(define-fun _1618 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp68@2|) +(define-fun _1619 () Bool (= _1617 _1618)) +(define-fun _1621 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp69@1|) +(define-fun _1622 () Bool (= _924 _1621)) +(define-fun _1624 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp70@1|) +(define-fun _1625 () Bool (= _926 _1624)) +(define-fun _1627 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp71@1|) +(define-fun _1628 () Bool (= _929 _1627)) +(define-fun _1630 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp72@1|) +(define-fun _1631 () Bool (= _932 _1630)) +(define-fun _1633 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp73@1|) +(define-fun _1634 () Bool (= _935 _1633)) +(define-fun _1636 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp77@1|) +(define-fun _1637 () Bool (= _938 _1636)) +(define-fun _1639 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp78@1|) +(define-fun _1640 () Bool (= _941 _1639)) +(define-fun _1642 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp79@1|) +(define-fun _1643 () Bool (= _944 _1642)) +(define-fun _1645 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp80@1|) +(define-fun _1646 () Bool (= _947 _1645)) +(define-fun _1648 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp82@1|) +(define-fun _1649 () Bool (= _999 _1648)) +(define-fun _1651 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp83@1|) +(define-fun _1652 () Bool (= _1001 _1651)) +(define-fun _1654 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp88@1|) +(define-fun _1655 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp88@2|) +(define-fun _1656 () Bool (= _1654 _1655)) +(define-fun _1658 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp89@1|) +(define-fun _1659 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp89@2|) +(define-fun _1660 () Bool (= _1658 _1659)) +(define-fun _1662 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp90@1|) +(define-fun _1663 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp90@2|) +(define-fun _1664 () Bool (= _1662 _1663)) +(define-fun _1666 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp91@1|) +(define-fun _1667 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp91@2|) +(define-fun _1668 () Bool (= _1666 _1667)) +(define-fun _1670 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp92@1|) +(define-fun _1671 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp92@2|) +(define-fun _1672 () Bool (= _1670 _1671)) +(define-fun _1674 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp93@1|) +(define-fun _1675 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp93@2|) +(define-fun _1676 () Bool (= _1674 _1675)) +(define-fun _1678 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp94@1|) +(define-fun _1679 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp94@2|) +(define-fun _1680 () Bool (= _1678 _1679)) +(define-fun _1682 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp95@1|) +(define-fun _1683 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp95@2|) +(define-fun _1684 () Bool (= _1682 _1683)) +(define-fun _1686 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp96@1|) +(define-fun _1687 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp96@2|) +(define-fun _1688 () Bool (= _1686 _1687)) +(define-fun _1690 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp97@1|) +(define-fun _1691 () (_ BitVec 32) |gpio_keys_polled_probe::__cil_tmp97@2|) +(define-fun _1692 () Bool (= _1690 _1691)) +(define-fun _1694 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp98@1|) +(define-fun _1695 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp98@2|) +(define-fun _1696 () Bool (= _1694 _1695)) +(define-fun _1698 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp99@1|) +(define-fun _1699 () (_ BitVec 64) |gpio_keys_polled_probe::__cil_tmp99@2|) +(define-fun _1700 () Bool (= _1698 _1699)) +(define-fun _1702 () (_ BitVec 32) |gpio_keys_polled_probe::__retval__@1|) +(define-fun _1703 () Bool (= _619 _1702)) +(define-fun _1705 () (_ BitVec 64) |gpio_keys_polled_probe::bdata@1|) +(define-fun _1706 () Bool (= _950 _1705)) +(define-fun _1708 () (_ BitVec 64) |gpio_keys_polled_probe::bdev@1|) +(define-fun _1709 () Bool (= _256 _1708)) +(define-fun _1711 () (_ BitVec 64) |gpio_keys_polled_probe::button@1|) +(define-fun _1712 () Bool (= _953 _1711)) +(define-fun _1714 () (_ BitVec 64) |gpio_keys_polled_probe::dev@1|) +(define-fun _1715 () Bool (= _102 _1714)) +(define-fun _1717 () (_ BitVec 32) |gpio_keys_polled_probe::error@1|) +(define-fun _1718 () Bool (= _587 _1717)) +(define-fun _1720 () (_ BitVec 32) |gpio_keys_polled_probe::i@1|) +(define-fun _1721 () (_ BitVec 32) |gpio_keys_polled_probe::i@2|) +(define-fun _1722 () Bool (= _1720 _1721)) +(define-fun _1724 () (_ BitVec 64) |gpio_keys_polled_probe::input@1|) +(define-fun _1725 () (_ BitVec 64) |gpio_keys_polled_probe::input@2|) +(define-fun _1726 () Bool (= _1724 _1725)) +(define-fun _1728 () (_ BitVec 64) |gpio_keys_polled_probe::pdata@1|) +(define-fun _1729 () Bool (= _89 _1728)) +(define-fun _1731 () (_ BitVec 64) |gpio_keys_polled_probe::pdev@1|) +(define-fun _1732 () Bool (= _68 _1731)) +(define-fun _1734 () (_ BitVec 64) |gpio_keys_polled_probe::poll_dev@1|) +(define-fun _1735 () Bool (= _280 _1734)) +(define-fun _1737 () (_ BitVec 64) |gpio_keys_polled_probe::tmp@1|) +(define-fun _1738 () Bool (= _246 _1737)) +(define-fun _1740 () (_ BitVec 32) |gpio_keys_polled_probe::tmp___0@1|) +(define-fun _1741 () Bool (= _956 _1740)) +(define-fun _1765 () Bool (= _26 _1333)) +(define-fun _1776 () (_ BitVec 32) |main::ldv_s_gpio_keys_polled_driver_platform_driver@4|) +(define-fun _1777 () Bool (= _1776 _25)) +(define-fun _1778 () Bool (and _1340 _1777)) +(define-fun _1779 () Bool (and _1343 _1777)) +(define-fun _1780 () Bool (and _1345 _1777)) +(define-fun _1781 () Bool (and _1229 _1359)) +(define-fun _1782 () Bool (and _1363 _1781)) +(define-fun _1783 () Bool (and _1367 _1782)) +(define-fun _1784 () Bool (and _1371 _1783)) +(define-fun _1785 () Bool (and _1375 _1784)) +(define-fun _1786 () Bool (and _1378 _1785)) +(define-fun _1787 () Bool (and _1381 _1786)) +(define-fun _1788 () Bool (and _1384 _1787)) +(define-fun _1789 () Bool (and _1387 _1788)) +(define-fun _1790 () Bool (and _1391 _1789)) +(define-fun _1791 () Bool (and _1395 _1790)) +(define-fun _1792 () Bool (and _1399 _1791)) +(define-fun _1793 () Bool (and _1403 _1792)) +(define-fun _1794 () Bool (and _1407 _1793)) +(define-fun _1795 () Bool (and _1411 _1794)) +(define-fun _1796 () Bool (and _1415 _1795)) +(define-fun _1797 () Bool (and _1419 _1796)) +(define-fun _1798 () Bool (and _1423 _1797)) +(define-fun _1799 () Bool (and _1427 _1798)) +(define-fun _1800 () Bool (and _1430 _1799)) +(define-fun _1801 () Bool (and _1433 _1800)) +(define-fun _1802 () Bool (and _1436 _1801)) +(define-fun _1803 () Bool (and _1439 _1802)) +(define-fun _1804 () Bool (and _1442 _1803)) +(define-fun _1805 () Bool (and _1445 _1804)) +(define-fun _1806 () Bool (and _1448 _1805)) +(define-fun _1807 () Bool (and _1451 _1806)) +(define-fun _1808 () Bool (and _1454 _1807)) +(define-fun _1809 () Bool (and _1457 _1808)) +(define-fun _1810 () Bool (and _1460 _1809)) +(define-fun _1811 () Bool (and _1463 _1810)) +(define-fun _1812 () Bool (and _1466 _1811)) +(define-fun _1813 () Bool (and _1469 _1812)) +(define-fun _1814 () Bool (and _1472 _1813)) +(define-fun _1815 () Bool (and _1475 _1814)) +(define-fun _1816 () Bool (and _1479 _1815)) +(define-fun _1817 () Bool (and _1483 _1816)) +(define-fun _1818 () Bool (and _1487 _1817)) +(define-fun _1819 () Bool (and _1491 _1818)) +(define-fun _1820 () Bool (and _1495 _1819)) +(define-fun _1821 () Bool (and _1499 _1820)) +(define-fun _1822 () Bool (and _1503 _1821)) +(define-fun _1823 () Bool (and _1507 _1822)) +(define-fun _1824 () Bool (and _1511 _1823)) +(define-fun _1825 () Bool (and _1515 _1824)) +(define-fun _1826 () Bool (and _1519 _1825)) +(define-fun _1827 () Bool (and _1523 _1826)) +(define-fun _1828 () Bool (and _1527 _1827)) +(define-fun _1829 () Bool (and _1531 _1828)) +(define-fun _1830 () Bool (and _1535 _1829)) +(define-fun _1831 () Bool (and _1539 _1830)) +(define-fun _1832 () Bool (and _1543 _1831)) +(define-fun _1833 () Bool (and _1547 _1832)) +(define-fun _1834 () Bool (and _1551 _1833)) +(define-fun _1835 () Bool (and _1555 _1834)) +(define-fun _1836 () Bool (and _1559 _1835)) +(define-fun _1837 () Bool (and _1563 _1836)) +(define-fun _1838 () Bool (and _1567 _1837)) +(define-fun _1839 () Bool (and _1571 _1838)) +(define-fun _1840 () Bool (and _1575 _1839)) +(define-fun _1841 () Bool (and _1579 _1840)) +(define-fun _1842 () Bool (and _1583 _1841)) +(define-fun _1843 () Bool (and _1587 _1842)) +(define-fun _1844 () Bool (and _1591 _1843)) +(define-fun _1845 () Bool (and _1595 _1844)) +(define-fun _1846 () Bool (and _1599 _1845)) +(define-fun _1847 () Bool (and _1603 _1846)) +(define-fun _1848 () Bool (and _1607 _1847)) +(define-fun _1849 () Bool (and _1611 _1848)) +(define-fun _1850 () Bool (and _1615 _1849)) +(define-fun _1851 () Bool (and _1619 _1850)) +(define-fun _1852 () Bool (and _1622 _1851)) +(define-fun _1853 () Bool (and _1625 _1852)) +(define-fun _1854 () Bool (and _1628 _1853)) +(define-fun _1855 () Bool (and _1631 _1854)) +(define-fun _1856 () Bool (and _1634 _1855)) +(define-fun _1857 () Bool (and _1637 _1856)) +(define-fun _1858 () Bool (and _1640 _1857)) +(define-fun _1859 () Bool (and _1643 _1858)) +(define-fun _1860 () Bool (and _1646 _1859)) +(define-fun _1861 () Bool (and _1649 _1860)) +(define-fun _1862 () Bool (and _1652 _1861)) +(define-fun _1863 () Bool (and _1656 _1862)) +(define-fun _1864 () Bool (and _1660 _1863)) +(define-fun _1865 () Bool (and _1664 _1864)) +(define-fun _1866 () Bool (and _1668 _1865)) +(define-fun _1867 () Bool (and _1672 _1866)) +(define-fun _1868 () Bool (and _1676 _1867)) +(define-fun _1869 () Bool (and _1680 _1868)) +(define-fun _1870 () Bool (and _1684 _1869)) +(define-fun _1871 () Bool (and _1688 _1870)) +(define-fun _1872 () Bool (and _1692 _1871)) +(define-fun _1873 () Bool (and _1696 _1872)) +(define-fun _1874 () Bool (and _1700 _1873)) +(define-fun _1875 () Bool (and _1703 _1874)) +(define-fun _1876 () Bool (and _1706 _1875)) +(define-fun _1877 () Bool (and _1709 _1876)) +(define-fun _1878 () Bool (and _1712 _1877)) +(define-fun _1879 () Bool (and _1715 _1878)) +(define-fun _1880 () Bool (and _1718 _1879)) +(define-fun _1881 () Bool (and _1722 _1880)) +(define-fun _1882 () Bool (and _1726 _1881)) +(define-fun _1883 () Bool (and _1729 _1882)) +(define-fun _1884 () Bool (and _1732 _1883)) +(define-fun _1885 () Bool (and _1735 _1884)) +(define-fun _1886 () Bool (and _1738 _1885)) +(define-fun _1887 () Bool (and _1741 _1886)) +(define-fun _1888 () Bool (and _1200 _1887)) +(define-fun _1889 () Bool (and _1203 _1888)) +(define-fun _1890 () Bool (and _1206 _1889)) +(define-fun _1891 () Bool (and _1261 _1890)) +(define-fun _1892 () Bool (and _1264 _1891)) +(define-fun _1893 () Bool (and _1267 _1892)) +(define-fun _1894 () Bool (and _1270 _1893)) +(define-fun _1895 () Bool (and _1273 _1894)) +(define-fun _1896 () Bool (and _1276 _1895)) +(define-fun _1897 () Bool (and _213 _1896)) +(define-fun _1898 () Bool (and _215 _1897)) +(define-fun _1899 () Bool (and _1281 _1898)) +(define-fun _1900 () Bool (and _218 _1899)) +(define-fun _1901 () Bool (and _1285 _1900)) +(define-fun _1902 () Bool (and _221 _1901)) +(define-fun _1903 () Bool (and _1289 _1902)) +(define-fun _1904 () Bool (= _34 _1776)) +(define-fun _1905 () Bool (and _1903 _1904)) +(define-fun _1906 () Bool (and _224 _1905)) +(define-fun _1907 () Bool (and _1765 _1906)) +(define-fun _1908 () Bool (and _63 _1907)) +(define-fun _1909 () Bool (or _1780 _1908)) +(define-fun _1910 () Bool (or _829 _1153)) +(define-fun _1911 () Bool (or _1778 _1910)) +(define-fun _1912 () Bool (or _1779 _1911)) +(define-fun _1913 () Bool (or _1909 _1912)) +(assert _1913) +(set-info :status sat) +(check-sat) +(pop 1) +(exit) diff --git a/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.gold b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.gold new file mode 100644 index 000000000..fea55f7e1 --- /dev/null +++ b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.gold @@ -0,0 +1,2 @@ +unsat +sat diff --git a/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.options b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.options new file mode 100644 index 000000000..db1c3bcde --- /dev/null +++ b/tests/regress/mcsat/32_1_cilled_ok_nondet_linux-3.4-32_1-drivers--input--keyboard--gpio_keys_polled.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out_smt-query.0.smt2.options @@ -0,0 +1 @@ +--incremental --mcsat \ No newline at end of file diff --git a/tests/regress/mcsat/test_qfaufbvnia.smt2 b/tests/regress/mcsat/test_qfaufbvnia.smt2 new file mode 100644 index 000000000..20fce595a --- /dev/null +++ b/tests/regress/mcsat/test_qfaufbvnia.smt2 @@ -0,0 +1,4 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_AUFBVNIA) +(echo "ok") +(exit) diff --git a/tests/regress/mcsat/test_qfaufbvnia.smt2.gold b/tests/regress/mcsat/test_qfaufbvnia.smt2.gold new file mode 100644 index 000000000..b5754e203 --- /dev/null +++ b/tests/regress/mcsat/test_qfaufbvnia.smt2.gold @@ -0,0 +1 @@ +ok \ No newline at end of file diff --git a/tests/regress/test_qfaufbvlia.smt2 b/tests/regress/test_qfaufbvlia.smt2 new file mode 100644 index 000000000..d06ee7a8e --- /dev/null +++ b/tests/regress/test_qfaufbvlia.smt2 @@ -0,0 +1,4 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_AUFBVLIA) +(echo "ok") +(exit) diff --git a/tests/regress/test_qfaufbvlia.smt2.gold b/tests/regress/test_qfaufbvlia.smt2.gold new file mode 100644 index 000000000..b5754e203 --- /dev/null +++ b/tests/regress/test_qfaufbvlia.smt2.gold @@ -0,0 +1 @@ +ok \ No newline at end of file diff --git a/tests/regress/test_qfufbvlia.smt2 b/tests/regress/test_qfufbvlia.smt2 new file mode 100644 index 000000000..209b4daa8 --- /dev/null +++ b/tests/regress/test_qfufbvlia.smt2 @@ -0,0 +1,4 @@ +(set-info :smt-lib-version 2.6) +(set-logic QF_UFBVLIA) +(echo "ok") +(exit) diff --git a/tests/regress/test_qfufbvlia.smt2.gold b/tests/regress/test_qfufbvlia.smt2.gold new file mode 100644 index 000000000..b5754e203 --- /dev/null +++ b/tests/regress/test_qfufbvlia.smt2.gold @@ -0,0 +1 @@ +ok \ No newline at end of file diff --git a/tests/unit/test_api7.c b/tests/unit/test_api7.c index e5b82694c..1c0ace724 100644 --- a/tests/unit/test_api7.c +++ b/tests/unit/test_api7.c @@ -64,6 +64,7 @@ static const char* const logic2string[NUM_SMT_LOGICS+1] = { "AUF", "UFBV", + "UFBVLIA", "UFIDL", "UFLIA", "UFLRA", @@ -74,6 +75,8 @@ static const char* const logic2string[NUM_SMT_LOGICS+1] = { "UFRDL", "AUFBV", + "AUFBVLIA", + "AUFBVNIA", "AUFLIA", "AUFLRA", "AUFLIRA", @@ -103,6 +106,7 @@ static const char* const logic2string[NUM_SMT_LOGICS+1] = { "QF_AUF", "QF_UFBV", + "QF_UFBVLIA", "QF_UFIDL", "QF_UFLIA", "QF_UFLRA", @@ -113,6 +117,8 @@ static const char* const logic2string[NUM_SMT_LOGICS+1] = { "QF_UFRDL", "QF_AUFBV", + "QF_AUFBVLIA", + "QF_AUFBVNIA", "QF_AUFLIA", "QF_AUFLRA", "QF_AUFLIRA", @@ -152,7 +158,7 @@ static const bool supported[NUM_SMT_LOGICS] = { false, // NRA false, // NIRA false, // RDL - false, // UF + false, // UF false, // ABV false, // ALIA false, // ALRA @@ -162,6 +168,7 @@ static const bool supported[NUM_SMT_LOGICS] = { false, // ANIRA false, // AUF false, // UFBV + false, // UFBVLIA false, // UFIDL false, // UFLIA false, // UFLRA @@ -171,6 +178,8 @@ static const bool supported[NUM_SMT_LOGICS] = { false, // UFNIRA false, // UFRDL false, // AUFBV + false, // AUFBVLIA + false, // AUFBVNIA false, // AUFLIA false, // AUFLRA false, // AUFLIRA @@ -198,6 +207,7 @@ static const bool supported[NUM_SMT_LOGICS] = { true, // QF_ANIRA true, // QF_AUF true, // QF_UFBV + true, // QF_UFBVLIA true, // QF_UFIDL true, // QF_UFLIA true, // QF_UFLRA @@ -207,6 +217,8 @@ static const bool supported[NUM_SMT_LOGICS] = { true, // QF_UFNIRA true, // QF_UFRDL true, // QF_AUFBV + true, // QF_AUFBVLIA + true, // QF_AUFBVNIA true, // QF_AUFLIA true, // QF_AUFLRA true, // QF_AUFLIRA diff --git a/tests/unit/test_smt_codes.c b/tests/unit/test_smt_codes.c index d0a524a99..a66ba1e1e 100644 --- a/tests/unit/test_smt_codes.c +++ b/tests/unit/test_smt_codes.c @@ -47,6 +47,7 @@ static const char * const test_names[NUM_TESTS] = { "ANIRA", "AUF", "UFBV", + "UFBVLIA", "UFIDL", "UFLIA", "UFLRA", @@ -56,6 +57,8 @@ static const char * const test_names[NUM_TESTS] = { "UFNIRA", "UFRDL", "AUFBV", + "AUFBVLIA", + "AUFBVNIA", "AUFLIA", "AUFLRA", "AUFLIRA", @@ -82,6 +85,7 @@ static const char * const test_names[NUM_TESTS] = { "QF_ANIRA", "QF_AUF", "QF_UFBV", + "QF_UFBVLIA", "QF_UFIDL", "QF_UFLIA", "QF_UFLRA", @@ -91,6 +95,8 @@ static const char * const test_names[NUM_TESTS] = { "QF_UFNIRA", "QF_UFRDL", "QF_AUFBV", + "QF_AUFBVLIA", + "QF_AUFBVNIA", "QF_AUFLIA", "QF_AUFLRA", "QF_AUFLIRA", @@ -128,6 +134,7 @@ static const char *const code2string[NUM_SMT_LOGICS+1] = { "ANIRA", "AUF", "UFBV", + "UFBVLIA", "UFIDL", "UFLIA", "UFLRA", @@ -137,6 +144,8 @@ static const char *const code2string[NUM_SMT_LOGICS+1] = { "UFNIRA", "UFRDL", "AUFBV", + "AUFBVLIA", + "AUFBVNIA", "AUFLIA", "AUFLRA", "AUFLIRA", @@ -163,6 +172,7 @@ static const char *const code2string[NUM_SMT_LOGICS+1] = { "QF_ANIRA", "QF_AUF", "QF_UFBV", + "QF_UFBVLIA", "QF_UFIDL", "QF_UFLIA", "QF_UFLRA", @@ -172,6 +182,8 @@ static const char *const code2string[NUM_SMT_LOGICS+1] = { "QF_UFNIRA", "QF_UFRDL", "QF_AUFBV", + "QF_AUFBVLIA", + "QF_AUFBVNIA", "QF_AUFLIA", "QF_AUFLRA", "QF_AUFLIRA",