2018-04-27 14:33:57 +02:00
|
|
|
#!/usr/bin/env python2
|
2009-09-23 12:51:27 +02:00
|
|
|
# IRPF90 is a Fortran90 preprocessor written in Python for programming using
|
|
|
|
# the Implicit Reference to Parameters (IRP) method.
|
|
|
|
# Copyright (C) 2009 Anthony SCEMAMA
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Anthony Scemama
|
|
|
|
# LCPQ - IRSAMC - CNRS
|
|
|
|
# Universite Paul Sabatier
|
|
|
|
# 118, route de Narbonne
|
|
|
|
# 31062 Toulouse Cedex 4
|
2009-09-25 00:04:49 +02:00
|
|
|
# scemama@irsamc.ups-tlse.fr
|
2009-09-23 12:51:27 +02:00
|
|
|
|
2009-09-04 18:37:10 +02:00
|
|
|
|
2014-03-13 14:44:47 +01:00
|
|
|
from util import *
|
2009-09-04 18:37:10 +02:00
|
|
|
from subroutine import *
|
2014-03-13 14:44:47 +01:00
|
|
|
from variables import variables
|
|
|
|
from variable import Variable
|
2009-09-04 18:37:10 +02:00
|
|
|
from irpf90_t import *
|
|
|
|
|
|
|
|
def create_subroutines():
|
|
|
|
from preprocessed_text import preprocessed_text
|
|
|
|
result = {}
|
|
|
|
for filename, text in preprocessed_text:
|
|
|
|
buffer = []
|
|
|
|
inside = False
|
|
|
|
for line in text:
|
2009-10-21 17:24:24 +02:00
|
|
|
if type(line) in [ Subroutine, Function ]:
|
2009-09-04 18:37:10 +02:00
|
|
|
inside = True
|
|
|
|
if inside:
|
|
|
|
buffer.append(line)
|
|
|
|
if isinstance(line,End):
|
|
|
|
if inside:
|
|
|
|
v = Sub(buffer)
|
|
|
|
result[v.name] = v
|
|
|
|
buffer = []
|
|
|
|
inside = False
|
|
|
|
return result
|
|
|
|
|
2014-03-13 14:44:47 +01:00
|
|
|
def create_called_by(subs,vars):
|
|
|
|
for s in subs.values() + vars.values():
|
|
|
|
if type(s) == Variable and s.same_as != s.name:
|
|
|
|
continue
|
|
|
|
for x in s.calls:
|
|
|
|
try:
|
|
|
|
subs[x].called_by.append(s.name)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
for s in subs.values():
|
|
|
|
s.called_by = make_single(s.called_by)
|
|
|
|
s.called_by.sort()
|
|
|
|
|
2009-09-04 18:37:10 +02:00
|
|
|
subroutines = create_subroutines()
|
2014-03-13 14:44:47 +01:00
|
|
|
create_called_by(subroutines,variables)
|
2009-09-04 18:37:10 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
for v in subroutines.keys():
|
|
|
|
print v
|