LoadStoreProcessor.java 758 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 target.mips;
  7. import IntermediaryCode.BaseBlockProcessor;
  8. import IntermediaryCode.CodeProcessing;
  9. import common.Code;
  10. import java.util.LinkedHashMap;
  11. /**
  12. *
  13. * @author EUGENIO CARVALHO
  14. */
  15. class LoadStoreProcessor implements CodeProcessing {
  16. public LoadStoreProcessor(BaseBlockProcessor ocorrences) {
  17. }
  18. @Override
  19. public void Exec(Code c, LinkedHashMap<String, CodeProcessing> cp) throws Exception {
  20. // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
  21. }
  22. }