Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
b2b9b3b5
Commit
b2b9b3b5
authored
May 22, 2015
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1077 from obscuren/disasm
core/vm, rpc: added disasm to `ext_` RPC
parents
f7415c0b
7381be8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
disasm.go
core/vm/disasm.go
+21
-0
api.go
rpc/api.go
+8
-1
No files found.
core/vm/disasm.go
0 → 100644
View file @
b2b9b3b5
package
vm
import
"fmt"
func
Disasm
(
code
[]
byte
)
[]
string
{
var
out
[]
string
for
pc
:=
uint64
(
0
);
pc
<
uint64
(
len
(
code
));
pc
++
{
op
:=
OpCode
(
code
[
pc
])
out
=
append
(
out
,
op
.
String
())
switch
op
{
case
PUSH1
,
PUSH2
,
PUSH3
,
PUSH4
,
PUSH5
,
PUSH6
,
PUSH7
,
PUSH8
,
PUSH9
,
PUSH10
,
PUSH11
,
PUSH12
,
PUSH13
,
PUSH14
,
PUSH15
,
PUSH16
,
PUSH17
,
PUSH18
,
PUSH19
,
PUSH20
,
PUSH21
,
PUSH22
,
PUSH23
,
PUSH24
,
PUSH25
,
PUSH26
,
PUSH27
,
PUSH28
,
PUSH29
,
PUSH30
,
PUSH31
,
PUSH32
:
a
:=
uint64
(
op
)
-
uint64
(
PUSH1
)
+
1
out
=
append
(
out
,
fmt
.
Sprintf
(
"0x%x"
,
code
[
pc
+
1
:
pc
+
1
+
a
]))
pc
+=
a
}
}
return
out
}
rpc/api.go
View file @
b2b9b3b5
...
...
@@ -6,6 +6,7 @@ import (
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
...
...
@@ -344,7 +345,6 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
return
NewNotImplementedError
(
req
.
Method
)
case
"eth_compileSolidity"
:
solc
,
_
:=
api
.
xeth
()
.
Solc
()
if
solc
==
nil
{
return
NewNotAvailableError
(
req
.
Method
,
"solc (solidity compiler) not found"
)
...
...
@@ -562,6 +562,13 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
case
"eth_hashrate"
:
*
reply
=
newHexNum
(
api
.
xeth
()
.
HashRate
())
case
"ext_disasm"
:
args
:=
new
(
SourceArgs
)
if
err
:=
json
.
Unmarshal
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
err
}
*
reply
=
vm
.
Disasm
(
common
.
FromHex
(
args
.
Source
))
// case "eth_register":
// // Placeholder for actual type
...
...
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