File tree 2 files changed +4
-4
lines changed
uc-crux-llvm/src/UCCrux/LLVM/Run
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,15 +119,15 @@ newtype CheckResult m arch (argTypes :: Ctx (FullType m)) =
119
119
(forall sym .
120
120
IsSymInterface sym =>
121
121
sym ->
122
- -- | Pre-simulation memory
123
122
PreSimulationMem sym ->
124
- -- | Arguments passed to the entry point
125
123
Assignment (Shape m (SymValue sym arch )) argTypes ->
126
124
Crux. CruxSimulationResult ->
127
125
Sim. UCCruxSimulationResult m arch argTypes ->
128
126
[SomeCheckedCalls m sym arch ] ->
129
127
r ) ->
130
128
r
129
+ -- ^ The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
130
+ -- The 'Assignment' specifies the Arguments passed to the entry point.
131
131
}
132
132
133
133
data SomeCheckResult m arch =
Original file line number Diff line number Diff line change @@ -163,11 +163,11 @@ data UCCruxSimulationResult m arch (argTypes :: Ctx (FullType m)) = UCCruxSimula
163
163
data SimulatorHooks sym m arch (argTypes :: Ctx (FullType m )) r =
164
164
SimulatorHooks
165
165
{ createOverrideHooks :: [SymCreateOverrideFn sym arch ]
166
+ -- | The 'PreSimulationMem sym' parameter is the Pre-simulation memory.
167
+ -- The 'Assignment' specifies the Arguments passed to the entry point.
166
168
, resultHook ::
167
169
sym ->
168
- -- | Pre-simulation memory
169
170
PreSimulationMem sym ->
170
- -- | Arguments passed to the entry point
171
171
Assignment (Shape m (SymValue sym arch )) argTypes ->
172
172
Crux. CruxSimulationResult ->
173
173
UCCruxSimulationResult m arch argTypes ->
You can’t perform that action at this time.
0 commit comments