Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/boehm.cc

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11// boehm.cc - interface between libjava and Boehm GC.
    22
    3 /* Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
     3/* Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
    44
    55   This file is part of libgcj.
     
    4040};
    4141
    42 // We must check for plausibility ourselves.
    4342#define MAYBE_MARK(Obj, Top, Limit, Source, Exit)  \
    4443        Top=GC_MARK_AND_PUSH((GC_PTR)Obj, Top, Limit, (GC_PTR *)Source)
     
    136135      MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, c6label);
    137136
     137
     138
     139
     140
     141
     142
    138143
    139144      if (! c->isArray() && ! c->isPrimitive())
     
    149154              MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c,
    150155                             cm2label);
    151 
    152               // FIXME: `ncode' entry?
    153 
    154 #ifdef INTERPRETER
    155               // The interpreter installs a heap-allocated
    156               // trampoline here, so we'll mark it.
    157               if (_Jv_IsInterpretedClass (c))
    158                   {
    159                       p = (ptr_t) c->methods[i].ncode;
    160                       MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c,
    161                                   cm3label);
    162                   }
    163 #endif
    164156            }
    165157        }
     
    213205      p = (ptr_t) c->arrayclass;
    214206      MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, cDlabel);
     207
     208
    215209
    216210#ifdef INTERPRETER
    217211      if (_Jv_IsInterpretedClass (c))
    218212        {
    219           _Jv_InterpClass* ic = (_Jv_InterpClass*)c;
     213          _Jv_InterpClass* ic = (_Jv_InterpClass*)c;
    220214
    221215          p = (ptr_t) ic->interpreted_methods;
     
    227221              MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, ic, \
    228222                          cFlabel);
     223
     224
     225
     226
     227
     228
     229
     230
     231
     232
     233
     234
     235
     236
     237
     238
     239
     240
     241
     242
    229243            }
    230244
Note: See TracChangeset for help on using the changeset viewer.