@@ -16,7 +16,6 @@ open VSharp.Solver
16
16
type public SILI ( options : SiliOptions ) =
17
17
18
18
let stopwatch = Stopwatch()
19
- let () = stopwatch.Start()
20
19
let timeout = if options.timeout <= 0 then Int64.MaxValue else int64 options.timeout * 1000 L
21
20
let branchReleaseTimeout = if options.timeout <= 0 || not options.releaseBranches then Int64.MaxValue else timeout * 80 L / 100 L
22
21
let mutable branchesReleased = false
@@ -214,6 +213,7 @@ type public SILI(options : SiliOptions) =
214
213
isStopped <- false
215
214
branchesReleased <- false
216
215
AcquireBranches()
216
+ searcher.Reset()
217
217
let mainPobs = coveragePobsForMethod entryPoint |> Seq.filter ( fun pob -> pob.loc.offset <> 0 < offsets>)
218
218
Application.spawnStates ( Seq.cast<_> initialStates)
219
219
mainPobs |> Seq.map ( fun pob -> pob.loc) |> Seq.toArray |> Application.addGoals
@@ -245,58 +245,66 @@ type public SILI(options : SiliOptions) =
245
245
member x.InterpretEntryPoint ( method : MethodBase ) ( mainArguments : string []) ( onFinished : Action < UnitTest >)
246
246
( onException : Action < UnitTest >) ( onIIE : Action < InsufficientInformationException >)
247
247
( onInternalFail : Action < Exception >) : unit =
248
+ stopwatch.Restart()
248
249
reportInternalFail <- wrapOnInternalFail onInternalFail
249
250
try
250
- assert method.IsStatic
251
- let optionArgs = if mainArguments = null then None else Some mainArguments
252
- let method = Application.getMethod method
253
- reportFinished <- wrapOnTest onFinished method optionArgs
254
- reportError <- wrapOnError onException method optionArgs
255
- reportIncomplete <- wrapOnIIE onIIE
256
- interpreter.ConfigureErrorReporter reportError
257
- let state = Memory.EmptyState()
258
- state.model <- Memory.EmptyModel method
259
- let argsToState args =
260
- let argTerms = Seq.map ( fun str -> Memory.AllocateString str state) args
261
- let stringType = typeof< string>
262
- let argsNumber = MakeNumber mainArguments.Length
263
- Memory.AllocateConcreteVectorArray state argsNumber stringType argTerms
264
- let arguments = Option.map ( argsToState >> List.singleton) optionArgs
265
- ILInterpreter.InitFunctionFrame state method None arguments
266
- if Option.isNone optionArgs then
267
- // NOTE: if args are symbolic, constraint 'args != null' is added
268
- let parameters = method.Parameters
269
- assert ( Array.length parameters = 1 )
270
- let argsParameter = Array.head parameters
271
- let argsParameterTerm = Memory.ReadArgument state argsParameter
272
- AddConstraint state (!!( IsNullReference argsParameterTerm))
273
- Memory.InitializeStaticMembers state method.DeclaringType
274
- let initialState = makeInitialState method state
275
- x.AnswerPobs method [ initialState]
276
- with
277
- | e -> reportInternalFail e
251
+ try
252
+ assert method.IsStatic
253
+ let optionArgs = if mainArguments = null then None else Some mainArguments
254
+ let method = Application.getMethod method
255
+ reportFinished <- wrapOnTest onFinished method optionArgs
256
+ reportError <- wrapOnError onException method optionArgs
257
+ reportIncomplete <- wrapOnIIE onIIE
258
+ interpreter.ConfigureErrorReporter reportError
259
+ let state = Memory.EmptyState()
260
+ state.model <- Memory.EmptyModel method
261
+ let argsToState args =
262
+ let argTerms = Seq.map ( fun str -> Memory.AllocateString str state) args
263
+ let stringType = typeof< string>
264
+ let argsNumber = MakeNumber mainArguments.Length
265
+ Memory.AllocateConcreteVectorArray state argsNumber stringType argTerms
266
+ let arguments = Option.map ( argsToState >> List.singleton) optionArgs
267
+ ILInterpreter.InitFunctionFrame state method None arguments
268
+ if Option.isNone optionArgs then
269
+ // NOTE: if args are symbolic, constraint 'args != null' is added
270
+ let parameters = method.Parameters
271
+ assert ( Array.length parameters = 1 )
272
+ let argsParameter = Array.head parameters
273
+ let argsParameterTerm = Memory.ReadArgument state argsParameter
274
+ AddConstraint state (!!( IsNullReference argsParameterTerm))
275
+ Memory.InitializeStaticMembers state method.DeclaringType
276
+ let initialState = makeInitialState method state
277
+ x.AnswerPobs method [ initialState]
278
+ with
279
+ | e -> reportInternalFail e
280
+ finally
281
+ searcher.Reset()
278
282
279
283
member x.InterpretIsolated ( method : MethodBase ) ( onFinished : Action < UnitTest >)
280
284
( onException : Action < UnitTest >) ( onIIE : Action < InsufficientInformationException >)
281
285
( onInternalFail : Action < Exception >) : unit =
286
+ stopwatch.Restart()
282
287
reportInternalFail <- wrapOnInternalFail onInternalFail
283
288
try
284
- Reset()
285
- SolverPool.reset()
286
- let method = Application.getMethod method
287
- reportFinished <- wrapOnTest onFinished method None
288
- reportError <- wrapOnError onException method None
289
- reportIncomplete <- wrapOnIIE onIIE
290
- interpreter.ConfigureErrorReporter reportError
291
- let initialStates = x.FormInitialStates method
292
- let iieStates , initialStates = initialStates |> List.partition ( fun state -> state.iie.IsSome)
293
- iieStates |> List.iter reportIncomplete
294
- if not initialStates.IsEmpty then
295
- x.AnswerPobs method initialStates
296
- Restore()
297
- with
298
- | e -> reportInternalFail e
299
-
289
+ try
290
+ Reset()
291
+ SolverPool.reset()
292
+ let method = Application.getMethod method
293
+ reportFinished <- wrapOnTest onFinished method None
294
+ reportError <- wrapOnError onException method None
295
+ reportIncomplete <- wrapOnIIE onIIE
296
+ interpreter.ConfigureErrorReporter reportError
297
+ let initialStates = x.FormInitialStates method
298
+ let iieStates , initialStates = initialStates |> List.partition ( fun state -> state.iie.IsSome)
299
+ iieStates |> List.iter reportIncomplete
300
+ if not initialStates.IsEmpty then
301
+ x.AnswerPobs method initialStates
302
+ Restore()
303
+ with
304
+ | e -> reportInternalFail e
305
+ finally
306
+ searcher.Reset()
307
+
300
308
member x.Stop () = isStopped <- true
301
309
302
310
member x.Statistics with get() = statistics
0 commit comments