| 424 | void CompileDesign::purgeParsers() { m_compiler->purgeParsers(); } |
| 425 | |
| 426 | vpiHandle CompileDesign::writeUHDM(PathId fileId) { |
| 427 | UhdmWriter* uhdmwriter = new UhdmWriter(this, m_compiler->getDesign()); |
| 428 | vpiHandle h = uhdmwriter->write(fileId); |
| 429 | delete uhdmwriter; |
| 430 | return h; |
| 431 | } |
| 432 | |
| 433 | void decompile(ValuedComponentI* instance) { |
| 434 | FileSystem* const fileSystem = FileSystem::getInstance(); |