// Copyright 2022 Risc0, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include "risc0/zkvm/prove/step.h" #include #include namespace risc0 { struct ExecState { ExecState(const std::vector& elfBytes); // A helper function to call init, step*, fini void run(size_t maxSteps, MemoryHandler& io); // Setup VM and run until 'reset' cycle void init(size_t maxSteps, MemoryHandler& io); // Step a single RISC-V cycle, return false when done bool step(); // Finalize VM execution in preperation for prover void fini(); // Get address of instructioin about to be executed uint32_t getPC(); // Get the state of all 32 registers std::vector getRegisters(); void expand(); uint32_t startAddr; std::map image; StepContext context; std::vector code; std::vector data; size_t maxSteps; bool done; }; } // namespace risc0