def _lookup_parse_cache(self, file_name, include_paths, defines): """ Use verilog code from cache """ # pylint: disable=too-many-return-statements if self._database is None: return None key = self._key(file_name) if key not in self._database: return None old_content_hash, old_included_files, old_defines, old_result = self._database[ key] if old_defines != defines: return None if old_content_hash != self._content_hash(file_name): return None for include_str, included_file_name, last_content_hash in old_included_files: if last_content_hash != self._content_hash(included_file_name): return None if find_included_file(include_paths, include_str) != included_file_name: return None LOGGER.debug("Re-using cached Verilog parse results for %s", file_name) return old_result
def _lookup_parse_cache(self, file_name, include_paths, defines): """ Use verilog code from cache """ # pylint: disable=too-many-return-statements if self._database is None: return None key = self._key(file_name) if key not in self._database: return None old_content_hash, old_included_files, old_defines, old_result = self._database[key] if old_defines != defines: return None if old_content_hash != self._content_hash(file_name): return None for include_str, included_file_name, last_content_hash in old_included_files: if last_content_hash != self._content_hash(included_file_name): return None if find_included_file(include_paths, include_str) != included_file_name: return None LOGGER.debug("Re-using cached Verilog parse results for %s", file_name) return old_result