Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
d2161740
Commit
d2161740
authored
Dec 14, 2020
by
aniket-engg
Committed by
Aniket
Dec 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trace analyser, cache and helper updated
parent
1187d4ad
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
107 additions
and
94 deletions
+107
-94
traceAnalyser.ts
libs/remix-debug/src/trace/traceAnalyser.ts
+0
-0
traceCache.ts
libs/remix-debug/src/trace/traceCache.ts
+106
-93
traceHelper.ts
libs/remix-debug/src/trace/traceHelper.ts
+1
-1
No files found.
libs/remix-debug/src/trace/traceAnalyser.ts
View file @
d2161740
This diff is collapsed.
Click to expand it.
libs/remix-debug/src/trace/traceCache.ts
View file @
d2161740
...
...
@@ -2,116 +2,129 @@
const
remixLib
=
require
(
'@remix-project/remix-lib'
)
const
helper
=
remixLib
.
util
function
TraceCache
()
{
this
.
init
()
}
export
class
TraceCache
{
TraceCache
.
prototype
.
init
=
function
()
{
// ...Changes contains index in the vmtrace of the corresponding changes
this
.
returnValues
=
{}
this
.
currentCall
=
null
this
.
callsTree
=
null
this
.
callsData
=
{}
this
.
contractCreation
=
{}
this
.
steps
=
{}
this
.
addresses
=
[]
this
.
callDataChanges
=
[]
this
.
memoryChanges
=
[]
this
.
storageChanges
=
[]
this
.
sstore
=
{}
// all sstore occurence in the trace
}
returnValues
currentCall
callsTree
callsData
contractCreation
steps
addresses
callDataChanges
memoryChanges
storageChanges
sstore
TraceCache
.
prototype
.
pushSteps
=
function
(
index
,
currentCallIndex
)
{
this
.
steps
[
index
]
=
currentCallIndex
}
constructor
(
)
{
this
.
init
()
}
TraceCache
.
prototype
.
pushCallDataChanges
=
function
(
value
,
calldata
)
{
this
.
callDataChanges
.
push
(
value
)
this
.
callsData
[
value
]
=
calldata
}
TraceCache
.
prototype
.
pushMemoryChanges
=
function
(
value
)
{
this
.
memoryChanges
.
push
(
value
)
}
init
()
{
// ...Changes contains index in the vmtrace of the corresponding changes
// outOfGas has been removed because gas left logging is apparently made differently
// in the vm/geth/eth. TODO add the error property (with about the error in all clients)
TraceCache
.
prototype
.
pushCall
=
function
(
step
,
index
,
address
,
callStack
,
reverted
)
{
let
validReturnStep
=
step
.
op
===
'RETURN'
||
step
.
op
===
'STOP'
if
((
validReturnStep
||
reverted
)
&&
(
this
.
currentCall
))
{
this
.
currentCall
.
call
.
return
=
index
-
1
if
(
!
validReturnStep
)
{
this
.
currentCall
.
call
.
reverted
=
reverted
}
var
parent
=
this
.
currentCall
.
parent
this
.
currentCall
=
parent
?
{
call
:
parent
.
call
,
parent
:
parent
.
parent
}
:
null
return
this
.
returnValues
=
{}
this
.
currentCall
=
null
this
.
callsTree
=
null
this
.
callsData
=
{}
this
.
contractCreation
=
{}
this
.
steps
=
{}
this
.
addresses
=
[]
this
.
callDataChanges
=
[]
this
.
memoryChanges
=
[]
this
.
storageChanges
=
[]
this
.
sstore
=
{}
// all sstore occurence in the trace
}
let
call
=
{
op
:
step
.
op
,
address
:
address
,
callStack
:
callStack
,
calls
:
{},
start
:
index
pushSteps
(
index
,
currentCallIndex
)
{
this
.
steps
[
index
]
=
currentCallIndex
}
this
.
addresses
.
push
(
address
)
if
(
this
.
currentCall
)
{
this
.
currentCall
.
call
.
calls
[
index
]
=
call
}
else
{
this
.
callsTree
=
{
call
:
call
}
pushCallDataChanges
(
value
,
calldata
)
{
this
.
callDataChanges
.
push
(
value
)
this
.
callsData
[
value
]
=
calldata
}
this
.
currentCall
=
{
call
:
call
,
parent
:
this
.
currentCall
}
}
TraceCache
.
prototype
.
pushReturnValue
=
function
(
step
,
value
)
{
this
.
returnValues
[
step
]
=
value
}
pushMemoryChanges
(
value
)
{
this
.
memoryChanges
.
push
(
value
)
}
TraceCache
.
prototype
.
pushContractCreationFromMemory
=
function
(
index
,
token
,
trace
,
lastMemoryChange
)
{
const
memory
=
trace
[
lastMemoryChange
].
memory
const
stack
=
trace
[
index
].
stack
const
offset
=
2
*
parseInt
(
stack
[
stack
.
length
-
2
],
16
)
const
size
=
2
*
parseInt
(
stack
[
stack
.
length
-
3
],
16
)
this
.
contractCreation
[
token
]
=
'0x'
+
memory
.
join
(
''
).
substr
(
offset
,
size
)
}
// outOfGas has been removed because gas left logging is apparently made differently
// in the vm/geth/eth. TODO add the error property (with about the error in all clients)
pushCall
(
step
,
index
,
address
,
callStack
,
reverted
)
{
let
validReturnStep
=
step
.
op
===
'RETURN'
||
step
.
op
===
'STOP'
if
((
validReturnStep
||
reverted
)
&&
(
this
.
currentCall
))
{
this
.
currentCall
.
call
.
return
=
index
-
1
if
(
!
validReturnStep
)
{
this
.
currentCall
.
call
.
reverted
=
reverted
}
var
parent
=
this
.
currentCall
.
parent
this
.
currentCall
=
parent
?
{
call
:
parent
.
call
,
parent
:
parent
.
parent
}
:
null
return
}
let
call
=
{
op
:
step
.
op
,
address
:
address
,
callStack
:
callStack
,
calls
:
{},
start
:
index
}
this
.
addresses
.
push
(
address
)
if
(
this
.
currentCall
)
{
this
.
currentCall
.
call
.
calls
[
index
]
=
call
}
else
{
this
.
callsTree
=
{
call
:
call
}
}
this
.
currentCall
=
{
call
:
call
,
parent
:
this
.
currentCall
}
}
TraceCache
.
prototype
.
pushContractCreation
=
function
(
token
,
cod
e
)
{
this
.
contractCreation
[
token
]
=
cod
e
}
pushReturnValue
(
step
,
valu
e
)
{
this
.
returnValues
[
step
]
=
valu
e
}
TraceCache
.
prototype
.
resetStoreChanges
=
function
(
index
,
address
,
key
,
value
)
{
this
.
sstore
=
{}
this
.
storageChanges
=
[]
}
pushContractCreationFromMemory
(
index
,
token
,
trace
,
lastMemoryChange
)
{
const
memory
=
trace
[
lastMemoryChange
].
memory
const
stack
=
trace
[
index
].
stack
const
offset
=
2
*
parseInt
(
stack
[
stack
.
length
-
2
],
16
)
const
size
=
2
*
parseInt
(
stack
[
stack
.
length
-
3
],
16
)
this
.
contractCreation
[
token
]
=
'0x'
+
memory
.
join
(
''
).
substr
(
offset
,
size
)
}
TraceCache
.
prototype
.
pushStoreChanges
=
function
(
index
,
address
,
key
,
value
)
{
this
.
sstore
[
index
]
=
{
'address'
:
address
,
'key'
:
key
,
'value'
:
value
,
'hashedKey'
:
helper
.
sha3_256
(
key
)
pushContractCreation
(
token
,
code
)
{
this
.
contractCreation
[
token
]
=
code
}
resetStoreChanges
(
index
,
address
,
key
,
value
)
{
this
.
sstore
=
{}
this
.
storageChanges
=
[]
}
this
.
storageChanges
.
push
(
index
)
}
TraceCache
.
prototype
.
accumulateStorageChanges
=
function
(
index
,
address
,
storag
e
)
{
const
ret
=
Object
.
assign
({},
storage
)
for
(
var
k
in
this
.
storageChanges
)
{
const
changesIndex
=
this
.
storageChanges
[
k
]
if
(
changesIndex
>
index
)
{
return
ret
pushStoreChanges
(
index
,
address
,
key
,
valu
e
)
{
this
.
sstore
[
index
]
=
{
'address'
:
address
,
'key'
:
key
,
'value'
:
value
,
'hashedKey'
:
helper
.
sha3_256
(
key
)
}
var
sstore
=
this
.
sstore
[
changesIndex
]
if
(
sstore
.
address
===
address
&&
sstore
.
key
)
{
ret
[
sstore
.
hashedKey
]
=
{
key
:
sstore
.
key
,
value
:
sstore
.
value
this
.
storageChanges
.
push
(
index
)
}
accumulateStorageChanges
(
index
,
address
,
storage
)
{
const
ret
=
Object
.
assign
({},
storage
)
for
(
var
k
in
this
.
storageChanges
)
{
const
changesIndex
=
this
.
storageChanges
[
k
]
if
(
changesIndex
>
index
)
{
return
ret
}
var
sstore
=
this
.
sstore
[
changesIndex
]
if
(
sstore
.
address
===
address
&&
sstore
.
key
)
{
ret
[
sstore
.
hashedKey
]
=
{
key
:
sstore
.
key
,
value
:
sstore
.
value
}
}
}
return
ret
}
return
ret
}
module
.
exports
=
TraceCache
libs/remix-debug/src/trace/traceHelper.ts
View file @
d2161740
...
...
@@ -2,7 +2,7 @@
const
remixLib
=
require
(
'@remix-project/remix-lib'
)
const
ui
=
remixLib
.
helpers
.
ui
module
.
exports
=
{
export
=
{
// vmTraceIndex has to point to a CALL, CODECALL, ...
resolveCalledAddress
:
function
(
vmTraceIndex
,
trace
)
{
const
step
=
trace
[
vmTraceIndex
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment