-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix gas cost for js tracer #200
Comments
Likely same for refund? |
let me have a try |
As the gas cost is tracked along with the executing of each op code, Seems couldn't find a proper way to set the How about we calculate the cost like go-ethereum's implemation, something like below: fn step(&mut self, interp: &mut Interpreter, context: &mut EvmContext<DB>) {
if self.step_fn.is_none() {
return;
}
let (db, _db_guard) = EvmDbRef::new(&context.journaled_state.state, &context.db);
let (stack, _stack_guard) = StackRef::new(&interp.stack);
let (memory, _memory_guard) = MemoryRef::new(&interp.shared_memory);
// Calculate the cost of the current operation
let cost = self.calculate_gas_cost(interp, context);
let step = StepLog {
stack,
op: interp.current_opcode().into(),
memory,
pc: interp.program_counter() as u64,
gas_remaining: interp.gas.remaining(),
cost,
depth: context.journaled_state.depth(),
refund: interp.gas.refunded() as u64,
error: None,
contract: self.active_call().contract.clone(),
};
if self.try_step(step, db).is_err() {
interp.instruction_result = InstructionResult::Revert;
}
}
fn calculate_gas_cost(&self, interp: &Interpreter, context: &EvmContext<DB>) -> u64 {
match interp.current_opcode() {
Opcode::ADD => 3,
Opcode::MUL => 5,
Opcode::SUB => 3,
// ... other opcodes ...
Opcode::SSTORE => {
// SSTORE has a dynamic gas cost calculation
},
// ... more opcodes ...
}
} But this will require too much re-implemation, and only for the |
yeah... |
Sorry for the late reply, I get your point, I'll have another try. |
@mattsse sorry, I couldn't find out a better solution of the memory/stack messed up, how about we copy the stack/memory in
|
reported: paradigmxyz/reth#10959
we use incorrect gasCost value:
revm-inspectors/src/tracing/js/mod.rs
Line 401 in 0648673
this should be gas cost of the opcode:
https://github.com/ethereum/go-ethereum/blob/0dd173a727dd2d2409b8e401b22e85d20c25b71f/core/vm/interpreter.go#L237-L237
this becomes a bit tricky for dynamic gas, because we don't know how much gas the opcode will cost if we call the tracer in the
step
fn, only if we track and call it on step_end.see also:
revm-inspectors/src/opcode.rs
Line 78 in 0648673
so we'd need to move this call to step_end, but this messes with memory because the tracer should be called with mem before opcode I believe...
I don't think there's an easier way to get this than doing
step: gas_remaining
step_end: gas_remaining - spent
@rakita
The text was updated successfully, but these errors were encountered: