home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / abstract_current.e next >
Text File  |  1999-06-05  |  6KB  |  249 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. deferred class ABSTRACT_CURRENT
  17.    --
  18.    -- Handling of the pseudo variable "Current".
  19.    --
  20.  
  21. inherit EXPRESSION;
  22.  
  23. feature
  24.  
  25.    start_position: POSITION;
  26.  
  27.    result_type: TYPE;
  28.          -- Non Void when checked;
  29.  
  30. feature {NONE}
  31.  
  32.    make(sp: like start_position) is
  33.       require
  34.          sp /= Void
  35.       do
  36.          start_position := sp;
  37.       ensure
  38.          start_position = sp
  39.       end;
  40.  
  41. feature
  42.  
  43.    is_current: BOOLEAN is true;
  44.  
  45.    is_writable: BOOLEAN is false;
  46.  
  47.    is_manifest_string: BOOLEAN is false;
  48.  
  49.    is_static: BOOLEAN is false;
  50.  
  51.    is_pre_computable: BOOLEAN is false;
  52.  
  53.    is_result: BOOLEAN is false;
  54.  
  55.    is_void: BOOLEAN is false;
  56.  
  57.    can_be_dropped: BOOLEAN is true;
  58.  
  59.    c_simple: BOOLEAN is true;
  60.  
  61.    use_current: BOOLEAN is true;
  62.  
  63.    isa_dca_inline_argument: INTEGER is 0;
  64.  
  65.    static_result_base_class: BASE_CLASS is
  66.       do
  67.          Result := start_position.base_class;
  68.       end;
  69.  
  70. feature {NONE}
  71.  
  72.    is_written: BOOLEAN is
  73.          -- True when it is a really written Current.
  74.       deferred
  75.       end;
  76.  
  77. feature
  78.  
  79.    to_string, to_key: STRING is
  80.       do
  81.          Result := as_current;
  82.       end;
  83.  
  84.    frozen static_value: INTEGER is
  85.       do
  86.       end;
  87.  
  88.    frozen assertion_check(tag: CHARACTER) is
  89.       do
  90.       end;
  91.  
  92.    frozen afd_check is
  93.       do
  94.       end;
  95.  
  96.    frozen dca_inline_argument(formal_arg_type: TYPE) is
  97.       do
  98.       end;
  99.  
  100.    frozen mapping_c_target(target_type: TYPE) is
  101.       local
  102.          flag: BOOLEAN;
  103.       do
  104.          if is_written then
  105.             flag := cpp.call_invariant_start(target_type);
  106.          end;
  107.          cpp.print_current;
  108.          if flag then
  109.             cpp.call_invariant_end;
  110.          end;
  111.       end;
  112.  
  113.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  114.       local
  115.          rt: like result_type;
  116.       do
  117.          rt := result_type.run_type;
  118.          if rt.is_reference then
  119.             if formal_arg_type.is_reference then
  120.                -- Reference into Reference :
  121.                cpp.put_string(fz_cast_t0_star);
  122.                cpp.print_current;
  123.             else
  124.                -- Reference into Expanded :
  125.                rt.to_expanded;
  126.                cpp.put_character('(');
  127.                cpp.print_current;
  128.                cpp.put_character(')');
  129.             end;
  130.          else
  131.             if formal_arg_type.is_reference then
  132.                -- Expanded into Reference :
  133.                rt.to_reference;
  134.                cpp.put_character('(');
  135.                cpp.print_current;
  136.                cpp.put_character(')');
  137.             else
  138.                -- Expanded into Expanded :
  139.                cpp.print_current;
  140.             end;
  141.          end;
  142.       end;
  143.  
  144.    frozen c_declare_for_old is
  145.       do
  146.       end;
  147.  
  148.    frozen compile_to_c_old is
  149.       do
  150.       end;
  151.  
  152.    frozen compile_to_jvm_old is
  153.       do
  154.       end;
  155.  
  156.    frozen collect_c_tmp is
  157.       do
  158.       end;
  159.  
  160.    frozen compile_to_c is
  161.       do
  162.          if result_type.is_user_expanded then
  163.             cpp.put_character('*');
  164.          end;
  165.          cpp.print_current;
  166.       end;
  167.  
  168.    frozen compile_to_jvm is
  169.       do
  170.          result_type.jvm_push_local(0);
  171.       end;
  172.  
  173.    frozen compile_target_to_jvm is
  174.       do
  175.          if is_written then
  176.             standard_compile_target_to_jvm;
  177.          else
  178.             compile_to_jvm;
  179.          end;
  180.       end;
  181.  
  182.    frozen jvm_branch_if_false: INTEGER is
  183.       do
  184.          compile_to_jvm;
  185.          Result := code_attribute.opcode_ifeq;
  186.       end;
  187.  
  188.    frozen jvm_branch_if_true: INTEGER is
  189.       do
  190.          compile_to_jvm;
  191.          Result := code_attribute.opcode_ifne;
  192.       end;
  193.  
  194.    frozen compile_to_jvm_into(dest: TYPE): INTEGER is
  195.       do
  196.          Result := standard_compile_to_jvm_into(dest);
  197.       end;
  198.  
  199.    frozen to_runnable(ct: TYPE): like Current is
  200.       do
  201.          if result_type = Void then
  202.             result_type := ct;
  203.             Result := Current
  204.          elseif result_type = ct then
  205.             Result := Current
  206.          else
  207.             !!Result.make(start_position);
  208.             Result := Result.to_runnable(ct);
  209.          end;
  210.       end;
  211.  
  212.    frozen precedence: INTEGER is
  213.       do
  214.          Result := atomic_precedence;
  215.       end;
  216.  
  217.    frozen bracketed_pretty_print, frozen pretty_print is
  218.       do
  219.          fmt.put_string(as_current);
  220.       end;
  221.  
  222.    frozen print_as_target is
  223.       do
  224.          if is_written or else fmt.print_current then
  225.             fmt.put_string(as_current);
  226.             fmt.put_character('.');
  227.          end;
  228.       end;
  229.  
  230.    frozen short is
  231.       do
  232.          short_print.hook_or(as_current,as_current);
  233.       end;
  234.  
  235.    frozen short_target is
  236.       do
  237.          if is_written then
  238.             short;
  239.             short_print.a_dot;
  240.          end;
  241.       end;
  242.  
  243.    frozen jvm_assign is
  244.       do
  245.       end;
  246.  
  247. end -- ABSTRACT_CURRENT
  248.  
  249.