commit | e28ef300a006ad95258765ab7bea2e5173a20901 | [log] [tgz] |
---|---|---|
author | Rupert Swarbrick <rswarbrick@lowrisc.org> | Mon Aug 23 11:31:28 2021 +0100 |
committer | Rupert Swarbrick <rswarbrick@gmail.com> | Tue Aug 31 17:29:16 2021 +0100 |
tree | bdaec1c35a99f242e23d3c482aa2c36f7248f08b | |
parent | 0ad0ffa304957caf9fe8459a17660b304bd51443 [diff] |
[otbn,dv] Add loop warping support to ISS This is the first commit for "loop warping". The idea is that you might want to see the loop counter in the design incrementing at some really big values (it goes up to 2^32), but don't want to simulate 4 billion cycles to get there. Instead, you want to simulate the first few iterations around the loop and then "jump" to the last few. This patch teaches the ISS to do this when special symbols are added to the ELF file. Specifically, such a symbol should have a name of the form: _loop_warp_123_456 and value that match an IMEM address. This means "if I execute the given address and the innermost loop count is 123, alter the loop count to 345". We put the counts in the symbol name and address in the value so that you can easily specify these in assembly code, without needing to know the exact layout of the generated binary. Of course, there's a duplication problem: what if you had two different loops where you wanted to do the same warping? To get around this, we allow any string after the second count: _loop_warp_123_456ANYOLDRUBBISH and ignore it. Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING and our documentation on project organization and processes for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).