File: call_infix2.e

package info (click to toggle)
smarteiffel 1.1-11
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 12,288 kB
  • ctags: 40,785
  • sloc: ansic: 35,791; lisp: 4,036; sh: 1,783; java: 895; ruby: 613; python: 209; makefile: 115; csh: 78; cpp: 50
file content (592 lines) | stat: -rw-r--r-- 15,263 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
-- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries
--
-- SmartEiffel 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, or (at your option) any later
-- version.
-- SmartEiffel 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 SmartEiffel;  see the file COPYING.  If not,  write to
-- the Free Software Foundation,  Inc., 59 Temple Place - Suite 330,  Boston, 
-- MA 02111-1307, USA.
--
-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P.
--			   - University of Nancy 1 - FRANCE
-- Copyright(C) 2003:      INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne
--			   - University of Nancy 2 - FRANCE
--
--		 Dominique COLNET, Suzanne COLLIN, Olivier ZENDRA,
--			   Philippe RIBET, Cyril ADRIAN
--
-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
--
deferred class CALL_INFIX2
   --
   -- Root for CALL_INFIX_EQ and CALL_INFIX_NEQ.
   --

inherit
   CALL_INFIX redefine start_lookup_class, use_current, verify_scoop end

feature

   precedence: INTEGER is 6

   left_brackets: BOOLEAN is false

   start_lookup_class: BASE_CLASS is
      local
	 cn: CLASS_NAME
      once
	 create cn.unknown_position(as_boolean)
         Result := smart_eiffel.base_class(cn)
      end

   frozen result_type: E_TYPE is
      do
         Result := type_boolean
      end

   side_effect_free: BOOLEAN is
      do
	 Result := target.side_effect_free and then arg1.side_effect_free
      end
   
   frozen to_runnable(ct: E_TYPE): EXPRESSION is
      do
	 if current_type = Void then
	    current_type := ct
	    runnable_target(ct)
	    arguments := runnable_arguments(ct)
	    Result := simplify_1
	    debug debug_info_update end
	    if nb_errors = 0 then
	       check_comparison(ct)
	    end
	 else
	    create {like Current} Result.with(target, feature_name, arguments)
	    Result := Result.to_runnable(ct)
	 end
      end

   frozen simplify_1_: EXPRESSION is
      local
	 ic1, ic2: INTEGER_CONSTANT; rc1, rc2: REAL_CONSTANT
      do
	 Result := simplify_with_boolean_constant
	 if Result = Void then
	    Result := simplify_with_character_constant
	 end
	 if Result /= Void then
	 elseif target.is_void then
	    Result := simplify_cmp_void(arg1)
	 elseif arg1.is_void then
	    Result := simplify_cmp_void(target)
	 else
	    ic1 ?= target
	    if ic1 = Void then
	       rc1 ?= target
	       if rc1 = Void then
		  Result := Current
	       else
		  rc2 ?= arg1
		  if rc2 = Void then
		     Result := Current
		  elseif rc1.to_string.is_equal(rc2.to_string) then
		     Result := e_true_e_false(operator.first = '=')
		  else
		     Result := e_true_e_false(operator.first = '/')
		  end
	       end
	    else
	       ic2 ?= arg1
	       if ic2 = Void then
		  Result := Current
	       elseif ic1.value_memory = ic2.value_memory then
		  Result := e_true_e_false(operator.first = '=')
	       else
		  Result := e_true_e_false(operator.first = '/')
	       end
	    end
	 end
      end
   
   frozen assertion_check(tag: CHARACTER) is
      do
         target.assertion_check(tag)
         arg1.assertion_check(tag)
      end

   frozen use_current: BOOLEAN is
      do
         Result := target.use_current or else arg1.use_current
      end

   frozen isa_dca_inline_argument: INTEGER is
      do
      end

   frozen dca_inline_argument(formal_arg_type: E_TYPE) is
      do
      end

   verify_scoop(allowed: FORMAL_ARG_LIST): BOOLEAN is
      do
         -- "=" and "/=" never can be guards; separate objects are accepted
         -- without being enclosed in a routine, because those features do not
         -- involve calling any message on the object.
         Result := false;
      end

feature {RUN_FEATURE_4}

   frozen dca_inline(formal_arg_type: E_TYPE) is
      do
         cpp.put_character('(')
         cpp.put_target_as_value
         cpp.put_character(')')
         if operator.first = '=' then
            cpp.put_string(fz_c_eq)
         else
            cpp.put_string(fz_c_neq)
         end
         cpp.put_character('(')
         arg1.dca_inline_argument(formal_arg_type)
         cpp.put_character(')')
      end

feature {RUN_FEATURE_3, RUN_FEATURE_4}

   finalize is
      do
      end

feature {CALL_INFIX2}

   frozen check_comparison(ct: E_TYPE) is
      local
         t1, t2: E_TYPE; do_warning: BOOLEAN; bcw1, bcw2: BASE_CLASS
      do
	 t1 := target.result_type
	 t2 := arg1.result_type
	 if t1.is_a(t2) then
	 else
	    error_handler.cancel
	    if t2.is_a(t1) then
	    else
	       if smart_eiffel.short_flag then
		  bcw1 := ct.base_class
		  bcw2 := feature_name.start_position.base_class
		  do_warning := bcw1 = bcw2
	       else
		  do_warning := true
	       end
	       error_handler.cancel
	       error_handler.add_position(feature_name.start_position)
	       if t1.is_expanded or else t2.is_expanded then
		  error_handler.append(
		     "Comparison not allowed (more details below).")
		  error_handler.print_as_error
		  error_handler.add_type(t1," cannot be compared with ")
		  error_handler.add_type(t2," (comparison not allowed).")
		  error_handler.print_as_fatal_error
	       elseif do_warning then
		  error_handler.append(
		     "Strange (or invalid ?) comparison of ")
		  error_handler.append(t1.run_time_mark)
		  error_handler.append(" with ")
		  error_handler.append(t2.run_time_mark)
		  error_handler.append(". (This will be always ")
		  if feature_name.to_string = as_eq then
		     error_handler.append("False")
		  else
		     error_handler.append("True")
		  end
		  error_handler.append(
	             ".) Note: the context of types interpretation (i.e. %
		     %the type of Current) is ")
		  error_handler.append(ct.run_time_mark)
		  error_handler.append(".")
		  error_handler.print_as_warning
	       end
	    end
	 end
      end

   afd_check_hook is
      local
	 t1, t2: E_TYPE
      do
	 t1 := target.result_type
	 t2 := arg1.result_type
	 if t1.is_bit then
	    if t2.is_bit then
	       bit_limitation(t1, t2)
	    end
	 end
      end
   
   bit_limitation(t1, t2: E_TYPE) is
      require
         t1.is_bit; t2.is_bit
      local
         b1, b2: TYPE_BIT
      do
         b1 ?= t1.run_type; b2 ?= t2.run_type
         if b1.nb /= b2.nb then
            error_handler.add_position(feature_name.start_position)
            error_handler.append("Comparison between ")
            error_handler.add_type(b1," and ")
            error_handler.add_type(b2,
            " is not yet implemented (you can work arround by %
            %doing an assignment in a local variable).")
            error_handler.print_as_fatal_error
         end
      end

   cmp_bit(equal_test: BOOLEAN; t: E_TYPE) is
      require
         t.is_bit
      local
         tb: TYPE_BIT
      do
	 tb ?= t
	 if tb.is_c_unsigned_ptr then
	    if equal_test then
	       cpp.put_character('!')
	    end
	    cpp.put_string(once "memcmp((")
	    target.mapping_c_target(t)
	    cpp.put_string(fz_20)
	    arg1.mapping_c_target(t)
	    cpp.put_string(fz_84)
	    cpp.put_integer(tb.id)
	    cpp.put_string(fz_13)
	 else
	    cpp.put_character('(')
	    target.compile_to_c
	    cpp.put_character(')')
	    if equal_test then
	       cpp.put_string(fz_c_eq)
	    else
	       cpp.put_string(fz_c_neq)
	    end
	    cpp.put_character('(')
	    arg1.compile_to_c
	    cpp.put_character(')')
	 end
      end

   cmp_user_expanded(equal_test: BOOLEAN; t: E_TYPE) is
      require
         t.is_user_expanded
      local
         mem_id: INTEGER
      do
	 if t.is_dummy_expanded then
            cpp.put_character('(')
            target.compile_to_c
            cpp.put_character(',')
            arg1.compile_to_c
            cpp.put_character(',')
            if equal_test then
               cpp.put_character('1')
            else
               cpp.put_character('0')
            end
            cpp.put_character(')')
         else
            mem_id := t.id
            if equal_test then
               cpp.put_character('!')
            end
            cpp.put_string(fz_se_cmpt)
            cpp.put_integer(mem_id)
            cpp.put_string(fz_17)
            target.compile_to_c
            cpp.put_string(fz_20)
            arg1.compile_to_c
            cpp.put_string(fz_13)
         end
      end

   cmp_basic_eiffel_expanded(equal_test: BOOLEAN; t1, t2: E_TYPE) is
      require
         t1.is_basic_eiffel_expanded
         t2.is_basic_eiffel_expanded
      local
         cast: STRING
      do
	 if t1.is_double or else t2.is_double then
	    cast := fz_43
	 elseif t1.is_real or else t2.is_real then
	    cast := fz_45
	 end
	 if cast /= Void then
	    cpp.put_string(cast)
	 end
	 cpp.put_character('(')
	 target.compile_to_c
	 if cast /= Void then
	    cpp.put_string(fz_13)
	 end
	 cpp.put_character(')')
	 if equal_test then
	    cpp.put_string(fz_c_eq)
	 else
	    cpp.put_string(fz_c_neq)
	 end
	 cpp.put_character('(')
	 if cast /= Void then
	    cpp.put_string(cast)
	 end
	 arg1.compile_to_c
	 cpp.put_character(')')
	 if cast /= Void then
	    cpp.put_string(fz_13)
	 end
      end

   cmp_basic_ref(equal_test: BOOLEAN) is
      do
	 if target.result_type.is_separate or else
	    arg1.result_type.is_separate
	  then
	    if not equal_test then
	       cpp.put_character('!')
	    end
	    cpp.put_string(once "scoop_cmp((T0*)(")
	    target.compile_to_c
	    cpp.put_string(once "),(T0*)(")
	    arg1.compile_to_c
	    cpp.put_string(once "))")
	 else
	    cpp.put_character('(')
	    target.compile_to_c
	    cpp.put_character(')')
	    if equal_test then
	       cpp.put_string(fz_c_eq)
	    else
	       cpp.put_string(fz_c_neq)
	    end
	    cpp.put_string(once "((void*)(")
	    arg1.compile_to_c
	    cpp.put_string(once "))")
	 end
      end

   is_manifest_array(e: EXPRESSION): BOOLEAN is
      local
	 manifest_array: MANIFEST_ARRAY
      do
	 manifest_array ?= e
	 Result := manifest_array /= Void
      end

   frozen make(lp: like target; operator_position: POSITION; rp: like arg1) is
      require
         lp /= Void
         not operator_position.is_unknown
         rp /= Void
      do
         target := lp
         create feature_name.infix_name(operator,operator_position)
         create arguments.make_1(rp)
      ensure
         target = lp
         start_position = operator_position
         arguments.first = rp
      end

   frozen with(t: like target; fn: like feature_name; a: like arguments) is
      require
         t /= Void
         fn /= Void
         a.count = 1
      do
         target := t
         feature_name := fn
         arguments := a
      ensure
         target = t
         feature_name = fn
         arguments = a
      end

feature {CALL_INFIX2_VISITOR}

   accept(visitor: CALL_INFIX2_VISITOR) is
      deferred
      end

feature {NONE}

   e_true_e_false(boolean: BOOLEAN): EXPRESSION is
      do
	 if boolean then
	    create {E_TRUE} Result.make(feature_name.start_position)
	 else
	    create {E_FALSE} Result.make(feature_name.start_position)
	 end
      end
   
   c2c_exp_ref(exp: EXPRESSION; ref: EXPRESSION; eq_flag: BOOLEAN) is
	 -- Generic (= /=) implementation of `compile_to_c' for an expanded
	 -- expression compared with some reference expression.
      require
	 exp.result_type.is_expanded
	 ref.result_type.is_reference
      local
	 type_reference: TYPE_REFERENCE; exp_type: E_TYPE; skip_tag: BOOLEAN
      do
	 if ref.is_void then
	    cpp.put_character('(')
	    cpp.put_string(once "/*exp-void-cmp*/")
	    if not exp.side_effect_free then
	       exp.compile_to_c
	       cpp.put_character(',')
	    end
	    if eq_flag then
	       cpp.put_character('0')
	    else
	       cpp.put_character('1')
	    end
	    cpp.put_character(')')
	 else
	    type_reference ?= ref.result_type.run_type
	    if type_reference = Void then
	       cpp.put_character('(')
	       ref.compile_to_c
	       cpp.put_character(',')
	       exp.compile_to_c
	       cpp.put_character(',')
	       if eq_flag then
		  cpp.put_character('0')
	       else
		  cpp.put_character('1')
	       end
	       cpp.put_character(')')
	    else
	       exp_type := exp.result_type.run_type
	       if exp_type.is_basic_eiffel_expanded then
		  cpp.put_character('(')
		  exp.compile_to_c
		  cpp.put_character(')')
		  if eq_flag then
		     cpp.put_string(fz_c_eq)
		  else
		     cpp.put_string(fz_c_neq)
		  end
		  cpp.put_string(once "((")
		  ref.mapping_c_target(type_reference)
		  cpp.put_string(once ")->_item)")
	       else
		  if eq_flag then
		     cpp.put_character('!')
		  end
		  cpp.put_string(once "memcmp(&(")
		  exp.compile_to_c
		  cpp.put_string(once "),")
		  if type_reference.run_class.is_tagged then
		     skip_tag := True
		     cpp.put_string(once "((Tid*)(")
		  end
		  ref.compile_to_c
		  if skip_tag then
		     cpp.put_string(once "))+1")
		  end
		  cpp.put_string(once ",sizeof(T")
		  cpp.put_integer(exp_type.id)
		  cpp.put_string(once "))")
	       end
	    end
	 end
      end

   simplify_with_boolean_constant: EXPRESSION is
	 -- To simplify comparison with True / False.
      local
	 bc1, bc2: BOOLEAN_CONSTANT
      do
	 bc1 ?= target
	 if bc1 /= Void then
	    bc2 ?= arg1
	    if operator.first = '=' then
	       if bc1.value then
		  Result := arg1
	       end
	    end
	 else
	    bc1 ?= arg1
	    if bc1 /= Void then
	       bc2 ?= target
	       if operator.first = '=' then
		  if bc1.value then
		     Result := target
		  end
	       end
	    end
	 end
	 if Result = Void and then bc1 /= Void and then bc2 /= Void then
	    if operator.first = '=' then
	       Result := e_true_e_false(bc1.value = bc2.value)
	    else
	       Result := e_true_e_false(bc1.value /= bc2.value)
	    end
	 end
      end

   simplify_with_character_constant: EXPRESSION is
      local
	 cc1, cc2: CHARACTER_CONSTANT
      do
	 cc1 ?= target
	 if cc1 /= Void then
	    cc2 ?= arg1
	    if cc2 /= Void then
	       if operator.first = '=' then
		  Result := e_true_e_false(cc1.value = cc2.value)
	       else
		  Result := e_true_e_false(cc1.value /= cc2.value)
	       end
	    end
	 end
      end
   
   simplify_cmp_void(expression: EXPRESSION): EXPRESSION is
      do
	 if expression.is_void then
	    if operator.first = '=' then
	       create {E_TRUE} Result.make(feature_name.start_position)
	    else
	       create {E_FALSE} Result.make(feature_name.start_position)
	    end	    
	 elseif ((smart_eiffel.status > 3
		  and then
		  expression.result_type.is_expanded
		  and then
		  expression.side_effect_free)
		 or else
		 expression.is_current
		 or else
		 expression.is_manifest_string
		 or else
		 is_manifest_array(expression))
	  then
	    if operator.first = '=' then
	       create {E_FALSE} Result.make(feature_name.start_position)
	    else
	       create {E_TRUE} Result.make(feature_name.start_position)
	    end
	 else
	    Result := Current
	 end
      end

invariant

   run_feature = Void

end -- CALL_INFIX2