home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / run_feature_9.e < prev    next >
Text File  |  1999-06-05  |  4KB  |  172 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_FEATURE_9
  17.  
  18. inherit RUN_FEATURE redefine base_feature end;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    base_feature: DEFERRED_ROUTINE;
  25.  
  26.    arguments: FORMAL_ARG_LIST;
  27.  
  28.    result_type: TYPE;
  29.  
  30.    require_assertion: RUN_REQUIRE;
  31.  
  32.    ensure_assertion: E_ENSURE;
  33.  
  34. feature
  35.  
  36.    is_pre_computable: BOOLEAN is false;
  37.  
  38.    is_static: BOOLEAN is false;
  39.  
  40.    can_be_dropped: BOOLEAN is false;
  41.  
  42.    is_once_function: BOOLEAN is false;
  43.  
  44. feature
  45.  
  46.    routine_body: COMPOUND is
  47.       do
  48.       end;
  49.  
  50.    rescue_compound: COMPOUND is
  51.       do
  52.       end;
  53.  
  54.    afd_check is
  55.       do
  56.          routine_afd_check;
  57.          small_eiffel.afd_check_deferred(Current);
  58.       end;
  59.  
  60.    mapping_c is
  61.       do
  62.          if run_control.no_check then
  63.             if result_type = Void then
  64.                default_mapping_procedure;
  65.             else
  66.                default_mapping_function;
  67.             end;
  68.          elseif result_type /= Void then
  69.             result_type.c_initialize;
  70.          end;
  71.       end;
  72.  
  73.    c_define is
  74.       do
  75.          if run_control.no_check then
  76.             define_prototype;
  77.             c_define_opening;
  78.             cpp.put_error0("Deferred routine called.");
  79.             c_define_closing;
  80.             cpp.put_string(fz_12);
  81.             c_frame_descriptor;
  82.          end;
  83.       end;
  84.  
  85.    local_vars: LOCAL_VAR_LIST is do end;
  86.  
  87.    static_value_mem: INTEGER is do end;
  88.  
  89. feature {CALL_PROC_CALL}
  90.  
  91.    collect_c_tmp is
  92.       do
  93.       end;
  94.  
  95. feature {ADDRESS_OF_POOL}
  96.  
  97.    address_of_c_define(caller: ADDRESS_OF) is
  98.       do
  99.          eh.add_position(caller.start_position);
  100.          eh.add_position(start_position);
  101.          fatal_error("Cannot access address of a deferred routine.");
  102.       end;
  103.  
  104. feature {ADDRESS_OF}
  105.  
  106.    address_of_c_mapping is
  107.       do
  108.       end;
  109.  
  110. feature {NONE}
  111.  
  112.    initialize is
  113.       do
  114.          result_type := base_feature.result_type;
  115.          arguments := base_feature.arguments;
  116.          if result_type /= Void then
  117.             if result_type.is_like_argument then
  118.                if not arguments.is_runnable(current_type) then
  119.                   !!arguments.with(arguments,current_type);
  120.                end;
  121.                result_type := result_type.to_runnable(current_type);
  122.             else
  123.                result_type := result_type.to_runnable(current_type);
  124.                if arguments /= Void then
  125.                   if not arguments.is_runnable(current_type) then
  126.                      !!arguments.with(arguments,current_type);
  127.                   end;
  128.                end;
  129.             end;
  130.          elseif arguments /= Void then
  131.             if not arguments.is_runnable(current_type) then
  132.                !!arguments.with(arguments,current_type);
  133.             end;
  134.          end;
  135.          if small_eiffel.short_flag then
  136.             require_assertion := run_require;
  137.             ensure_assertion := run_ensure;
  138.          end;
  139.       end;
  140.  
  141.    compute_use_current is
  142.       do
  143.          use_current_state := ucs_true;
  144.       end;
  145.  
  146. feature {RUN_CLASS}
  147.  
  148.    jvm_field_or_method is
  149.       do
  150.       end;
  151.  
  152. feature
  153.  
  154.    mapping_jvm is
  155.       do
  156.       end;
  157.  
  158. feature {JVM}
  159.  
  160.    jvm_define is
  161.       do
  162.       end;
  163.  
  164. feature {NONE}
  165.  
  166.    update_tmp_jvm_descriptor is
  167.       do
  168.          routine_update_tmp_jvm_descriptor;
  169.       end;
  170.  
  171. end -- RUN_FEATURE_9
  172.