MipsLoadStoreMiddleware.java 770 B

123456789101112131415161718192021222324252627
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package targets.mips;
  7. import middlewares.BasicBlockMiddleware;
  8. import common.Code;
  9. import java.util.LinkedHashMap;
  10. import API.MiddlewareInterface;
  11. /**
  12. *
  13. * @author EUGENIO CARVALHO
  14. */
  15. class MipsLoadStoreMiddleware implements MiddlewareInterface {
  16. public MipsLoadStoreMiddleware(BasicBlockMiddleware ocorrences) {
  17. }
  18. @Override
  19. public void Exec(Code c, LinkedHashMap<String, MiddlewareInterface> cp) throws Exception {
  20. // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
  21. }
  22. }