Example #1
0
/* Initialize module p-read */
void initialize_module_p_read()
{
  if (is_initialized) return;
  initialize_module_i_all();
  initialize_module_sx_obj();
  eul_fast_table_set(eul_modules,"p_read",(LispRef) p_read_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_907, G00906, sym_903, sym_902, key_901, sym_898, G00897, G00895;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 7 is_init: 0 index: 3 binding: anonymous */
  static const void *G00894[] = {I(a9,47,00,00),I(24,00,00,00),B(stream2 ,40),I(3c,01,2a,83),I(24,00,00,00),B(dynamic ,8),I(3d,01,00,00)};

  eul_allocate_static_string(str_899, ".em", 3);
  eul_allocate_static_string(str_900, "No such file or directory ~a in ~a", 34);
  eul_allocate_static_string(str_904, "  Reading sources from ~a~a~a.em ...", 36);
  /* Byte-vector with size: 72 is_init: 0 index: 11 binding: read-source-file */
  static const void *G00896[] = {I(aa,46,01,23),B(p_read ,4),I(89,00,00,00),B(i_param ,60),I(2a,1b,7d,1b),I(44,04,1b,36),I(04,1c,82,02),I(23,00,00,00),B(p_read ,5),I(24,00,00,00),B(string ,11),I(3c,02,24,00),B(stream ,19),I(1c,24,00,00),B(i_param ,16),I(24,00,00,00),B(boot ,5),I(3c,03,1b,12),I(1b,44,2d,23),B(p_read ,6),I(1f,03,24,00),B(i_param ,16),I(24,00,00,00),B(format ,2),I(3c,03,24,00),B(condition ,8),I(1c,24,00,00),B(boot ,13),I(3d,02,06,22),I(01,36,a5,1c),I(10,1d,11,24),B(stream2 ,4),I(23,00,00,00),B(p_read ,7),I(1f,03,24,00),B(mop_gf ,2),I(3c,03,86,1c),I(48,00,00,23),B(p_read ,8),I(24,00,00,00),B(dynamic ,3),I(3c,01,23,00),B(p_read ,9),I(23,00,00,00),B(p_read ,3),I(3b,00,1c,0f),I(23,00,00,00),B(p_read ,8),I(1c,24,00,00),B(dynamic ,2),I(3c,02,2a,23),B(p_read ,10),I(1f,05,24,00),B(i_param ,22),I(1f,0d,24,00),B(i_notify ,4),I(3c,04,2a,1f),I(04,89,00,00),B(i_param ,37),I(2a,47,00,00),I(24,00,00,00),B(read ,12),I(3c,01,1b,20),I(04,1f,03,47),I(00,00,24,00),B(stream2 ,40),I(3c,01,2a,83),I(24,00,00,00),B(dynamic ,8),I(3c,01,2a,1f),I(04,22,08,45),I(05,00,00,00)};

  /* Byte-vector with size: 19 is_init: 1 index: 0 binding: initialize-p-read */
  static const void *G00905[] = {I(87,25,00,00),B(p_read ,1),I(24,00,00,00),B(sx_obj ,1),I(3e,0b,24,00),B(sx_obj ,0),I(3c,00,21,01),I(24,00,00,00),B(i_all ,1),I(3e,0b,24,00),B(i_all ,0),I(3c,00,21,01),I(23,00,00,00),B(p_read ,12),I(23,00,00,00),B(p_read ,11),I(3b,01,25,00),B(p_read ,2),I(86,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G00895,G00894);
  eul_intern_symbol(sym_898,"read");
  object_class(str_899) = eul_static_string_class;
  object_class(str_900) = eul_static_string_class;
  eul_intern_keyword(key_901,"file-name");
  eul_intern_symbol(sym_902,"*clean-ups*");
  eul_intern_symbol(sym_903,"anonymous");
  object_class(str_904) = eul_static_string_class;
  eul_allocate_bytevector( G00897,G00896);
  eul_intern_symbol(sym_907,"read-source-file");
  eul_allocate_bytevector( G00906,G00905);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 3; i++)
      p_read_bindings[i] = eul_nil;
  }

  p_read_bindings[ 3] = G00895;
  p_read_bindings[ 4] = sym_898;
  p_read_bindings[ 5] = str_899;
  p_read_bindings[ 6] = str_900;
  p_read_bindings[ 7] = key_901;
  p_read_bindings[ 8] = sym_902;
  p_read_bindings[ 9] = sym_903;
  p_read_bindings[ 10] = str_904;
  p_read_bindings[ 11] = G00897;
  p_read_bindings[ 1] = eul_nil;
  p_read_bindings[ 12] = sym_907;
  eul_allocate_lambda( p_read_bindings[0], "initialize-p-read", 0, G00906);

  }
}
Example #2
0
// The cache_entries parameter is empty (on cold call site) or has entries
// (on cache miss). Called from assembly with the actual return address.
// Compilation of the inline cache may trigger a GC, which may trigger a
// compaction;
// also, the block containing the return address may now be dead. Use a
// code_root to take care of the details.
// Allocates memory
cell factor_vm::inline_cache_miss(cell return_address_) {
  code_root return_address(return_address_, this);
  bool tail_call_site = tail_call_site_p(return_address.value);

#ifdef PIC_DEBUG
  FACTOR_PRINT("Inline cache miss at "
               << (tail_call_site ? "tail" : "non-tail")
               << " call site 0x" << std::hex << return_address.value
               << std::dec);
  print_callstack();
#endif

  data_root<array> cache_entries(ctx->pop(), this);
  fixnum index = untag_fixnum(ctx->pop());
  data_root<array> methods(ctx->pop(), this);
  data_root<word> generic_word(ctx->pop(), this);
  data_root<object> object(((cell*)ctx->datastack)[-index], this);

  cell pic_size = array_capacity(cache_entries.untagged()) / 2;

  update_pic_transitions(pic_size);

  cell xt = generic_word->entry_point;
  if (pic_size < max_pic_size) {
    cell klass = object_class(object.value());
    cell method = lookup_method(object.value(), methods.value());

    data_root<array> new_cache_entries(
        add_inline_cache_entry(cache_entries.value(), klass, method), this);

    inline_cache_jit jit(generic_word.value(), this);
    jit.emit_inline_cache(index, generic_word.value(), methods.value(),
                          new_cache_entries.value(), tail_call_site);
    code_block* code = jit.to_code_block(CODE_BLOCK_PIC, JIT_FRAME_SIZE);
    initialize_code_block(code);
    xt = code->entry_point();
  }

  // Install the new stub.
  if (return_address.valid) {
    // Since each PIC is only referenced from a single call site,
    // if the old call target was a PIC, we can deallocate it immediately,
    // instead of leaving dead PICs around until the next GC.
    deallocate_inline_cache(return_address.value);
    set_call_target(return_address.value, xt);

#ifdef PIC_DEBUG
    FACTOR_PRINT("Updated " << (tail_call_site ? "tail" : "non-tail")
                 << " call site 0x" << std::hex << return_address.value << std::dec
                 << " with 0x" << std::hex << (cell)xt << std::dec);
    print_callstack();
#endif
  }

  return xt;
}
Example #3
0
bool ScriptObject::IsA( ScriptClass *script_class )
{
	for( ScriptClass *super_class = object_class(); super_class; super_class = ( ScriptClass* )( super_class->super() ) )
	{
		if( super_class == script_class )
		{
			return true;
		}
	}

	return false;
}
Example #4
0
const char *ScriptObject::GetFullName()
{
	if( object_class() && outer() )
	{
		static std::string full_name;
		full_name = GetName();

		for( ScriptObject *object_outer = outer(); object_outer != NULL; object_outer = object_outer->outer() )
		{
			full_name.insert( 0, "." );
			full_name.insert( 0, object_outer->GetName() );
		}

		full_name.insert( 0, " " );
		full_name.insert( 0, object_class()->GetName() );

		return full_name.c_str();
	}

	return "Failed to get name";
}
Example #5
0
/* The cache_entries parameter is either f (on cold call site) or an array (on cache miss).
Called from assembly with the actual return address */
void *factor_vm::inline_cache_miss(cell return_address)
{
	check_code_pointer(return_address);

	/* Since each PIC is only referenced from a single call site,
	   if the old call target was a PIC, we can deallocate it immediately,
	   instead of leaving dead PICs around until the next GC. */
	deallocate_inline_cache(return_address);

	gc_root<array> cache_entries(dpop(),this);
	fixnum index = untag_fixnum(dpop());
	gc_root<array> methods(dpop(),this);
	gc_root<word> generic_word(dpop(),this);
	gc_root<object> object(((cell *)ds)[-index],this);

	void *xt;

	cell pic_size = inline_cache_size(cache_entries.value());

	update_pic_transitions(pic_size);

	if(pic_size >= max_pic_size)
		xt = megamorphic_call_stub(generic_word.value());
	else
	{
		cell klass = object_class(object.value());
		cell method = lookup_method(object.value(),methods.value());

		gc_root<array> new_cache_entries(add_inline_cache_entry(
							   cache_entries.value(),
							   klass,
							   method),this);
		xt = compile_inline_cache(index,
					  generic_word.value(),
					  methods.value(),
					  new_cache_entries.value(),
					  tail_call_site_p(return_address))->xt();
	}

	/* Install the new stub. */
	set_call_target(return_address,xt);

#ifdef PIC_DEBUG
	printf("Updated %s call site 0x%lx with 0x%lx\n",
	       tail_call_site_p(return_address) ? "tail" : "non-tail",
	       return_address,
	       (cell)xt);
#endif

	return xt;
}
Example #6
0
File: event.c Project: Henry/EuLisp
/* Initialize module event */
void initialize_module_event()
{
  if (is_initialized) return;
  initialize_module_telos();
  eul_fast_table_set(eul_modules,"event",(LispRef) event_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_64, G0063, sym_61, sym_60, G0059, G0056;

  /* Code vector and literal definitions */
  eul_allocate_static_string(str_57, "wait not yet implemented", 24);
  /* Byte-vector with size: 5 is_init: 0 index: 6 binding: (method-wait) */
  static const void *G0055[] = {I(ab,86,23,00),B(event ,5),I(24,00,00,00),B(boot ,13),I(3d,02,02,00)};

  /* Byte-vector with size: 57 is_init: 0 index: 9 binding: top-level */
  static const void *G0058[] = {I(a9,41,00,00),B(event ,4),I(1b,89,00,00),B(event ,3),I(2a,84,24,00),B(mop_class ,22),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(event ,7),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(event ,2),I(2a,24,00,00),B(event ,2),I(2a,24,00,00),B(event ,2),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(event ,2),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(event ,8),I(23,00,00,00),B(event ,6),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(event ,2),I(1c,24,00,00),B(mop_meth ,5),I(3d,02,0b,45),I(0b,00,00,00)};

  /* Byte-vector with size: 17 is_init: 1 index: 0 binding: initialize-event */
  static const void *G0062[] = {I(87,25,00,00),B(event ,1),I(24,00,00,00),B(telos ,1),I(3e,0b,24,00),B(telos ,0),I(3c,00,21,01),I(86,25,00,00),B(event ,3),I(86,25,00,00),B(event ,2),I(23,00,00,00),B(event ,10),I(23,00,00,00),B(event ,9),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  object_class(str_57) = eul_static_string_class;
  eul_allocate_bytevector( G0056,G0055);
  eul_intern_symbol(sym_60,"wait");
  eul_intern_symbol(sym_61,"(method wait)");
  eul_allocate_bytevector( G0059,G0058);
  eul_intern_symbol(sym_64,"top-level");
  eul_allocate_bytevector( G0063,G0062);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 4; i++)
      event_bindings[i] = eul_nil;
  }

  event_bindings[ 4] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_ticks_per_second54;
  event_bindings[ 5] = str_57;
  event_bindings[ 6] = G0056;
  event_bindings[ 7] = sym_60;
  event_bindings[ 8] = sym_61;
  event_bindings[ 9] = G0059;
  event_bindings[ 1] = eul_nil;
  event_bindings[ 10] = sym_64;
  eul_allocate_lambda( event_bindings[0], "initialize-event", 0, G0063);

  }
}
Example #7
0
KNIEXPORT jboolean KNI_IsInstanceOf(jobject objectHandle, jclass classHandle) {
  // Create handle for objectHandle
  Oop::Raw object = kni_read_handle(objectHandle);
  if (object.is_null()) {
    return KNI_TRUE;
  }
  JavaClass::Raw object_class = object.blueprint();

  // Create handle for classHandle
  JavaClassObj::Raw mirror = kni_read_handle(classHandle);
  GUARANTEE(mirror.not_null(), "null argument to KNI_IsInstanceOf");
  JavaClass::Raw other_class = mirror().java_class();

  // Do subtype check
  return CAST_TO_JBOOLEAN(object_class().is_subtype_of(&other_class));
}
Example #8
0
OBJECT methctx_dup(STATE, OBJECT self) {
  OBJECT ctx;
  struct fast_context *cur, *old;
  
  methctx_reference(state, self);
  
  ctx = NEW_OBJECT(object_class(state, self), FASTCTX_FIELDS);

  ctx->StoresBytes = TRUE;
  if(self->obj_type == MContextType) {
    ctx->CTXFast = TRUE;
  }
  ctx->obj_type = self->obj_type;
  
  assert(ctx->obj_type == MContextType || ctx->obj_type == BContextType);
 
  old = FASTCTX(self);
  cur = FASTCTX(ctx);

  if(!NIL_P(old->sender)) methctx_reference(state, old->sender);
  SET_STRUCT_FIELD(ctx, cur->sender, old->sender);
  SET_STRUCT_FIELD(ctx, cur->block, old->block);
  SET_STRUCT_FIELD(ctx, cur->method, old->method);
  SET_STRUCT_FIELD(ctx, cur->literals, old->literals);
  SET_STRUCT_FIELD(ctx, cur->locals, old->locals);
  cur->argcount = old->argcount;
  SET_STRUCT_FIELD(ctx, cur->name, old->name);
  SET_STRUCT_FIELD(ctx, cur->method_module, old->method_module);
  cur->opaque_data = old->opaque_data;
  SET_STRUCT_FIELD(ctx, cur->self, old->self);
  SET_STRUCT_FIELD(ctx, cur->custom_iseq, old->custom_iseq);
  cur->data = old->data;
  cur->type = old->type;
  cur->ip = old->ip;
  cur->sp = old->sp;
  cur->fp = old->fp;
 
  ctx->ForeverYoung = TRUE;
  
  return ctx;  
}
Example #9
0
INLINE BOOL empty_list_p (D instance) {
  return(object_class(instance) == Lempty_listGVKd);
}
Example #10
0
obj rs_gf_find_method( obj gf, obj rcvr )
{
  obj c, m, impl, h, k;
  UINT_32 k_ix, v_ix;

#ifdef GF_DEBUG
  if (!foo)
    foo = fopen( "/tmp/gf.trc", "w" );
#endif /* GF_DEBUG */

  c = object_class(rcvr);
  h = FX_AND(gvec_ref(c, CLASS_HASH_CODE),int2fx(3*2));
  
  k_ix = GF_CACHE_0_K + FXWORDS_TO_RIBYTES(h);
  v_ix = k_ix + SLOT(1);


  k = gvec_ref( gf, k_ix );

#ifdef GF_DEBUG
  gf_stat(gf);
#endif /* GF_DEBUG */
  if (EQ(k,c))
    return gvec_ref( gf, v_ix );
  else
    {
      /* check the victim entry */
      k = gvec_ref( gf, GF_VICTIM_K );
      if (EQ(k,c))
	{
	  m = gvec_ref( gf, GF_VICTIM_V );
	  
	  /* a hit -- victimize the primary entry
	   * (note: there is no way you can hit in the victim cache
	   *        if your primary entry is #f)
	   */
	  gvec_write_ptr( gf, GF_VICTIM_K, gvec_ref( gf, k_ix ) );
	  gvec_write_ptr( gf, GF_VICTIM_V, gvec_ref( gf, v_ix ) );
	  gvec_write_ptr( gf, k_ix, k );
	  gvec_write_ptr( gf, v_ix, m );
	  return m;
	}
      else
	{
	  obj ov, new_ov, prev = ZERO;
	 
#ifdef GF_DEBUG
	  fprintf( foo, "%s: check overflow for key = %s\n",
		   symbol_text( gvec_ref( gf, SLOT(3) ) ),
		   symbol_text( class_name( c ) ) );

	  if (truish( gvec_ref( gf, k_ix ) ))
	    fprintf( foo, "  primary[%d] => %s\n", 
		     fx2int(h),
		     symbol_text( class_name( gvec_ref( gf, k_ix ) ) ) );
	  if (truish(k))
	    fprintf( foo, "  victim => %s\n",
		     symbol_text( class_name( k ) ) );
#endif /* GF_DEBUG */
	  /* a primary miss -- check the overflow list */
	  for (ov = gvec_ref( gf, GF_CACHE_OVERFLOW );
	       !EQ(ov,FALSE_OBJ);
	       ov = gvec_ref( ov, SLOT(0) ) )
	    {
	      k = gvec_ref( ov, SLOT(1) );
#ifdef GF_DEBUG
	      fprintf( foo, "  overflow {%#x} => %s\n", ov, 
		       symbol_text( class_name( k ) ) );
#endif /* GF_DEBUG */
	      if (EQ(k,c))
		{
#ifdef GF_DEBUG
		  fprintf( foo, "  HIT (prev = {%#x})\n", prev );
#endif /* GF_DEBUG */
		  m = gvec_ref( ov, SLOT(2) );
		  /* found it in the overflow list... move this entry 
		   * to the primary cache area and spill the victim cache
		   */
		  new_ov = make3( vector_class,
				  (EQ(prev,ZERO)
				   ? gvec_ref( ov, SLOT(0) )
				   : gvec_ref( gf, GF_CACHE_OVERFLOW )),
				  gvec_ref( gf, GF_VICTIM_K ),
				  gvec_ref( gf, GF_VICTIM_V ) );
		  gvec_write_ptr( gf, GF_VICTIM_K, gvec_ref( gf, k_ix ) );
		  gvec_write_ptr( gf, GF_VICTIM_V, gvec_ref( gf, v_ix ) );
		  if (!EQ(prev,ZERO))
		    gvec_write( prev, SLOT(0), gvec_ref( ov, SLOT(0) ) );
		  gvec_write_ptr( gf, GF_CACHE_OVERFLOW, new_ov );
		  gvec_write_ptr( gf, k_ix, k );
		  gvec_write_ptr( gf, v_ix, m );
#ifdef GF_DEBUG
		  gf_stat(gf);
#endif /* GF_DEBUG */
		  return m;
		}
	      prev = ov;
	    }
#ifdef GF_DEBUG
	  fprintf( foo, "  MISS\n" );
#endif /* GF_DEBUG */
	  return FALSE_OBJ;
	}
    }
}
Example #11
0
/* Initialize module thread */
void initialize_module_thread()
{
  if (is_initialized) return;
  initialize_module_telos();
  initialize_module_event();
  eul_fast_table_set(eul_modules,"thread",(LispRef) thread_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_625, sym_624, sym_623, sym_622, sym_621, sym_620, sym_619, sym_618, sym_617, sym_616, sym_615, sym_614, sym_613, sym_612, sym_611, sym_610, sym_609, sym_608, sym_607, sym_606, sym_605, sym_604, G00603, G00601, G00599, G00597, G00595, G00592, G00590, G00588, G00586, G00584, G00582, G00580, G00578, G00576, G00574, G00572, G00570, G00567, G00565, G00563, G00561, G00559, G00557, G00555, G00553, G00551, G00549, sym_547, sym_546, sym_545, sym_544, sym_543, sym_542, sym_541, sym_540, sym_539, sym_538, sym_537, sym_536, sym_535, sym_534, sym_533, sym_532, sym_531, sym_530, sym_529, sym_528, sym_527, sym_526, sym_525, sym_524, sym_523, sym_522, key_517, sym_516, key_515, sym_514, key_513, sym_512, key_511, sym_510, sym_509, sym_508, sym_507, sym_506, sym_505, key_504, key_501, key_500, key_499, sym_498, key_497, key_496, sym_495, key_494, key_493, sym_492, key_491, G00490, sym_488, G00487, G00485, G00483, sym_481, G00480, G00478, G00476, G00474, G00472, G00470, G00468, G00466, G00464, G00462, G00460, G00458, key_455, G00454, sym_452, G00451, sym_449, G00448, G00446, G00444, sym_442, G00441, G00439, G00437, G00435, G00433, G00431, G00429, G00427;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 1 is_init: 0 index: 40 binding: (method-state?) */
  static const void *G00426[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 41 binding: (method-state?) */
  static const void *G00428[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 4 is_init: 0 index: 42 binding: (setter-state-value-stack) */
  static const void *G00430[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(thread ,25),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 43 binding: (setter-state-value-stack-size) */
  static const void *G00432[] = {I(ab,1c,84,1d),I(24,00,00,00),B(thread ,25),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 44 binding: (setter-state-context-stack) */
  static const void *G00434[] = {I(ab,1c,83,1d),I(24,00,00,00),B(thread ,25),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 45 binding: (setter-state-context-stack-size) */
  static const void *G00436[] = {I(ab,1c,82,1d),I(24,00,00,00),B(thread ,25),I(09,45,02,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 46 binding: (method-thread-unblock) */
  static const void *G00438[] = {I(ab,24,00,00),B(thread ,13),I(3c,02,24,00),B(thread ,9),I(3d,01,00,00)};

  /* Byte-vector with size: 8 is_init: 0 index: 48 binding: (method-thread-block) */
  static const void *G00440[] = {I(aa,23,00,00),B(thread ,47),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(24,00,00,00),B(thread ,17),I(3d,00,00,00)};

  /* Byte-vector with size: 12 is_init: 0 index: 49 binding: (method-thread-value) */
  static const void *G00443[] = {I(aa,1b,83,24),B(thread ,34),I(08,1b,44,0c),I(1c,82,24,00),B(thread ,34),I(08,36,15,24),B(thread ,7),I(3c,00,2a,1c),I(24,00,00,00),B(thread ,5),I(3d,01,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 6 is_init: 0 index: 50 binding: (method-thread-start) */
  static const void *G00445[] = {I(a7,1c,1c,24),B(thread ,13),I(3c,02,24,00),B(thread ,9),I(3c,01,2a,1c),I(45,02,00,00)};

  /* Byte-vector with size: 13 is_init: 0 index: 52 binding: anonymous */
  static const void *G00447[] = {I(aa,47,01,00),I(1c,1c,8a,03),I(1d,24,00,00),B(thread ,34),I(09,22,02,2a),I(47,01,00,23),B(thread ,51),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(47,01,00,47),I(00,00,3d,01),I(01,00,00,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 54 binding: anonymous */
  static const void *G00450[] = {I(aa,46,01,1b),I(48,00,00,23),B(thread ,53),I(23,00,00,00),B(thread ,52),I(3b,01,24,00),B(thread ,18),I(3c,01,47,01),I(01,1c,24,00),B(boot ,5),I(3c,02,24,00),B(thread ,19),I(1c,24,00,00),B(thread ,11),I(3d,02,03,45),I(03,00,00,00)};

  eul_allocate_static_string(str_456, "missing required keyword ~a", 27);
  /* Byte-vector with size: 27 is_init: 0 index: 57 binding: (method-initialize) */
  static const void *G00453[] = {I(ab,46,03,1c),I(48,00,00,47),I(00,00,1c,37),I(02,2a,1b,23),B(thread ,55),I(24,00,00,00),B(boot ,32),I(3c,02,1b,48),I(00,01,47,00),I(01,24,00,00),B(mop_inspect ,8),I(3c,01,1b,44),I(04,86,36,1b),I(86,23,00,00),B(thread ,56),I(23,00,00,00),B(thread ,55),I(24,00,00,00),B(boot ,13),I(3c,03,2a,23),B(thread ,53),I(23,00,00,00),B(thread ,54),I(3b,01,24,00),B(thread ,18),I(3d,01,04,45),I(04,00,00,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 58 binding: (method-simple-thread?) */
  static const void *G00457[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 59 binding: (method-simple-thread?) */
  static const void *G00459[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 4 is_init: 0 index: 60 binding: (setter-thread-continuation) */
  static const void *G00461[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(thread ,34),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 61 binding: (setter-thread-state) */
  static const void *G00463[] = {I(ab,1c,84,1d),I(24,00,00,00),B(thread ,34),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 62 binding: (setter-thread-returned?) */
  static const void *G00465[] = {I(ab,1c,83,1d),I(24,00,00,00),B(thread ,34),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 63 binding: (setter-thread-return-value) */
  static const void *G00467[] = {I(ab,1c,82,1d),I(24,00,00,00),B(thread ,34),I(09,45,02,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 64 binding: (method-thread?) */
  static const void *G00469[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 65 binding: (method-thread?) */
  static const void *G00471[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 4 is_init: 0 index: 66 binding: (setter-thread-error-handlers) */
  static const void *G00473[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(thread ,8),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 67 binding: (setter-thread-dynamic-variables) */
  static const void *G00475[] = {I(ab,1c,84,1d),I(24,00,00,00),B(thread ,8),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 68 binding: anonymous */
  static const void *G00477[] = {I(a9,24,00,00),B(thread ,10),I(45,00,00,00)};

  /* Byte-vector with size: 17 is_init: 0 index: 70 binding: anonymous */
  static const void *G00479[] = {I(a8,1b,44,2c),I(1b,10,1b,23),B(thread ,69),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(1b,24,00,00),B(thread ,36),I(3c,01,2a,24),B(thread ,17),I(3d,00,02,22),I(01,36,11,24),B(thread ,7),I(24,00,00,00),B(thread ,11),I(3d,01,01,45),I(01,00,00,00)};

  /* Byte-vector with size: 15 is_init: 0 index: 71 binding: anonymous */
  static const void *G00482[] = {I(a8,1b,44,22),I(1b,10,23,00),B(thread ,51),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(24,00,00,00),B(thread ,17),I(3d,00,01,36),I(13,24,00,00),B(thread ,4),I(24,00,00,00),B(thread ,11),I(3d,01,01,45),I(01,00,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 72 binding: anonymous */
  static const void *G00484[] = {I(a9,24,00,00),B(thread ,33),I(45,00,00,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 74 binding: anonymous */
  static const void *G00486[] = {I(a9,23,00,00),B(thread ,73),I(86,24,00,00),B(boot1 ,26),I(3d,02,00,00)};

  eul_allocate_static_cons(cons_503, NULL, NULL);
  eul_allocate_static_cons(cons_502, NULL, eul_as_static(cons_503));
  eul_allocate_static_cons(cons_521, NULL, NULL);
  eul_allocate_static_cons(cons_520, NULL, eul_as_static(cons_521));
  eul_allocate_static_cons(cons_519, NULL, eul_as_static(cons_520));
  eul_allocate_static_cons(cons_518, NULL, eul_as_static(cons_519));
  /* Byte-vector with size: 771 is_init: 0 index: 128 binding: top-level */
  static const void *G00489[] = {I(a9,24,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(thread ,75),I(23,00,00,00),B(thread ,76),I(23,00,00,00),B(thread ,77),I(23,00,00,00),B(thread ,78),I(24,00,00,00),B(boot1 ,26),I(3c,04,23,00),B(thread ,75),I(23,00,00,00),B(thread ,79),I(23,00,00,00),B(thread ,80),I(23,00,00,00),B(thread ,53),I(23,00,00,00),B(thread ,74),I(3b,00,24,00),B(boot1 ,26),I(3c,04,23,00),B(thread ,75),I(23,00,00,00),B(thread ,77),I(24,00,00,00),B(boot1 ,26),I(3c,02,23,00),B(thread ,75),I(23,00,00,00),B(thread ,81),I(24,00,00,00),B(boot1 ,26),I(3c,02,1f,03),I(1f,03,1f,03),I(1f,03,24,00),B(boot1 ,26),I(3c,04,24,00),B(mop_class ,81),I(23,00,00,00),B(thread ,75),I(23,00,00,00),B(thread ,82),I(23,00,00,00),B(thread ,83),I(1f,09,23,00),B(thread ,84),I(1f,06,23,00),B(thread ,85),I(23,00,00,00),B(thread ,86),I(23,00,00,00),B(thread ,87),I(87,24,00,00),B(mop_gf ,2),I(3c,0b,1b,89),B(thread ,8),I(2a,24,00,00),B(thread ,8),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(thread ,75),I(23,00,00,00),B(thread ,88),I(24,00,00,00),B(boot1 ,26),I(3c,02,23,00),B(thread ,75),I(23,00,00,00),B(thread ,89),I(24,00,00,00),B(boot1 ,26),I(3c,02,23,00),B(thread ,75),I(23,00,00,00),B(thread ,90),I(24,00,00,00),B(boot1 ,26),I(3c,02,23,00),B(thread ,75),I(23,00,00,00),B(thread ,91),I(24,00,00,00),B(boot1 ,26),I(3c,02,1f,03),I(1f,03,1f,03),I(1f,03,24,00),B(boot1 ,26),I(3c,04,24,00),B(mop_class ,81),I(23,00,00,00),B(thread ,75),I(23,00,00,00),B(thread ,92),I(23,00,00,00),B(thread ,83),I(1f,09,23,00),B(thread ,84),I(1f,06,23,00),B(thread ,85),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(thread ,34),I(2a,24,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(thread ,75),I(23,00,00,00),B(thread ,93),I(23,00,00,00),B(thread ,77),I(23,00,00,00),B(thread ,94),I(24,00,00,00),B(boot1 ,26),I(3c,04,23,00),B(thread ,75),I(23,00,00,00),B(thread ,95),I(23,00,00,00),B(thread ,77),I(23,00,00,00),B(thread ,96),I(24,00,00,00),B(boot1 ,26),I(3c,04,23,00),B(thread ,75),I(23,00,00,00),B(thread ,97),I(23,00,00,00),B(thread ,77),I(23,00,00,00),B(thread ,98),I(24,00,00,00),B(boot1 ,26),I(3c,04,23,00),B(thread ,75),I(23,00,00,00),B(thread ,99),I(23,00,00,00),B(thread ,77),I(23,00,00,00),B(thread ,100),I(24,00,00,00),B(boot1 ,26),I(3c,04,1f,03),I(1f,03,1f,03),I(1f,03,24,00),B(boot1 ,26),I(3c,04,24,00),B(mop_class ,81),I(23,00,00,00),B(thread ,75),I(23,00,00,00),B(thread ,89),I(23,00,00,00),B(thread ,83),I(1f,09,23,00),B(thread ,84),I(1f,06,23,00),B(thread ,85),I(23,00,00,00),B(thread ,101),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(thread ,25),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,102),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,30),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,103),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,39),I(2a,24,00,00),B(thread ,34),I(89,00,00,00),B(thread ,15),I(2a,86,89,00),B(thread ,33),I(2a,23,00,00),B(thread ,53),I(23,00,00,00),B(thread ,72),I(3b,00,89,00),B(thread ,22),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,104),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,26),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,105),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,5),I(2a,23,00,00),B(thread ,53),I(23,00,00,00),B(thread ,71),I(3b,ff,89,00),B(thread ,4),I(2a,23,00,00),B(thread ,53),I(23,00,00,00),B(thread ,70),I(3b,ff,89,00),B(thread ,7),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,106),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,2),I(2a,84,24,00),B(mop_class ,22),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,107),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,6),I(2a,86,89,00),B(thread ,10),I(2a,23,00,00),B(thread ,53),I(23,00,00,00),B(thread ,68),I(3b,00,89,00),B(thread ,24),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(thread ,108),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(thread ,3),I(2a,24,00,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,27),I(23,00,00,00),B(thread ,109),I(23,00,00,00),B(thread ,67),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,16),I(23,00,00,00),B(thread ,110),I(23,00,00,00),B(thread ,66),I(3b,02,1d,3c),I(02,2a,24,00),B(thread ,30),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,30),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,111),I(23,00,00,00),B(thread ,65),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,30),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,30),I(8a,03,02,83),I(24,00,00,00),B(thread ,8),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,30),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,111),I(23,00,00,00),B(thread ,64),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,30),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,30),I(2a,24,00,00),B(thread ,8),I(2a,24,00,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,20),I(23,00,00,00),B(thread ,112),I(23,00,00,00),B(thread ,63),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,38),I(23,00,00,00),B(thread ,113),I(23,00,00,00),B(thread ,62),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,23),I(23,00,00,00),B(thread ,114),I(23,00,00,00),B(thread ,61),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,29),I(23,00,00,00),B(thread ,115),I(23,00,00,00),B(thread ,60),I(3b,02,1d,3c),I(02,2a,24,00),B(thread ,39),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,39),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,116),I(23,00,00,00),B(thread ,59),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,39),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,39),I(8a,03,02,83),I(24,00,00,00),B(thread ,34),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,39),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,116),I(23,00,00,00),B(thread ,58),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,39),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,39),I(2a,24,00,00),B(thread ,34),I(2a,24,00,00),B(thread ,34),I(24,00,00,00),B(mop_gf ,2),I(3c,01,1b,23),B(thread ,117),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(1b,89,00,00),B(thread ,33),I(2a,24,00,00),B(mop_gf ,12),I(8a,03,02,84),I(24,00,00,00),B(thread ,34),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_gf ,12),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,118),I(23,00,00,00),B(thread ,57),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_gf ,12),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,26),I(2a,24,00,00),B(thread ,26),I(8a,03,02,83),I(24,00,00,00),B(thread ,34),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,26),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,119),I(23,00,00,00),B(thread ,50),I(3b,fe,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,26),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,5),I(2a,24,00,00),B(thread ,5),I(8a,03,02,83),I(24,00,00,00),B(thread ,34),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,5),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,120),I(23,00,00,00),B(thread ,49),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,5),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,2),I(2a,24,00,00),B(thread ,2),I(8a,03,02,83),I(24,00,00,00),B(thread ,34),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,2),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,121),I(23,00,00,00),B(thread ,48),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,2),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,6),I(2a,24,00,00),B(thread ,6),I(8a,03,02,84),I(24,00,00,00),B(thread ,34),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,6),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,122),I(23,00,00,00),B(thread ,46),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,6),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,12),I(23,00,00,00),B(thread ,123),I(23,00,00,00),B(thread ,45),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,37),I(23,00,00,00),B(thread ,124),I(23,00,00,00),B(thread ,44),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,35),I(23,00,00,00),B(thread ,125),I(23,00,00,00),B(thread ,43),I(3b,02,1d,3c),I(02,2a,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(thread ,14),I(23,00,00,00),B(thread ,126),I(23,00,00,00),B(thread ,42),I(3b,02,1d,3c),I(02,2a,24,00),B(thread ,3),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,3),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,127),I(23,00,00,00),B(thread ,41),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,3),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,3),I(8a,03,02,83),I(24,00,00,00),B(thread ,25),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(thread ,3),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(thread ,127),I(23,00,00,00),B(thread ,40),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(thread ,3),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(thread ,3),I(2a,24,00,00),B(thread ,25),I(45,7e,00,00)};

  /* Byte-vector with size: 8 is_init: 0 index: 129 binding: thread-enable */
  static const void *G00548[] = {I(aa,1b,23,00),B(thread ,69),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(1b,24,00,00),B(thread ,36),I(3d,01,01,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 130 binding: anonymous */
  static const void *G00550[] = {I(aa,24,00,00),B(thread ,33),I(1b,1d,1c,8a),I(03,1d,24,00),B(thread ,34),I(09,22,02,2a),I(86,89,00,00),B(thread ,33),I(2a,47,00,00),I(1c,47,00,01),I(24,00,00,00),B(boot ,5),I(3c,03,24,00),B(thread ,21),I(3d,01,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 131 binding: ^ */
  static const void *G00552[] = {I(a7,46,02,1c),I(48,00,00,1b),I(48,00,01,23),B(thread ,53),I(23,00,00,00),B(thread ,130),I(3b,01,24,00),B(thread ,18),I(3d,01,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 132 binding: state-context-stack-size */
  static const void *G00554[] = {I(aa,82,24,00),B(thread ,25),I(08,45,00,00)};

  /* Byte-vector with size: 8 is_init: 0 index: 133 binding: anonymous */
  static const void *G00556[] = {I(aa,47,01,00),I(1c,1c,8a,03),I(1d,24,00,00),B(thread ,34),I(09,22,02,2a),I(47,01,00,47),I(00,00,3d,01),I(01,00,00,00)};

  /* Byte-vector with size: 14 is_init: 0 index: 134 binding: anonymous */
  static const void *G00558[] = {I(aa,46,01,1b),I(48,00,00,47),I(01,00,8a,03),I(24,00,00,00),B(thread ,34),I(08,23,00,00),B(thread ,53),I(23,00,00,00),B(thread ,133),I(3b,01,24,00),B(thread ,18),I(3c,01,2a,47),I(01,01,1c,3d),I(01,02,45,02)};

  /* Byte-vector with size: 9 is_init: 0 index: 135 binding: thread-feed */
  static const void *G00560[] = {I(ab,46,02,1c),I(48,00,00,1b),I(48,00,01,23),B(thread ,53),I(23,00,00,00),B(thread ,134),I(3b,01,24,00),B(thread ,18),I(3d,01,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 136 binding: state-value-stack */
  static const void *G00562[] = {I(aa,8a,03,24),B(thread ,25),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 137 binding: thread-error-handlers */
  static const void *G00564[] = {I(aa,8a,03,24),B(thread ,8),I(08,45,00,00)};

  eul_allocate_static_string(str_568, "empty thread queue", 18);
  /* Byte-vector with size: 16 is_init: 0 index: 139 binding: thread-queue-remove */
  static const void *G00566[] = {I(a9,24,00,00),B(thread ,10),I(12,1b,44,16),I(86,23,00,00),B(thread ,138),I(24,00,00,00),B(boot ,13),I(3d,02,01,36),I(1c,24,00,00),B(thread ,10),I(10,24,00,00),B(thread ,10),I(11,1b,89,00),B(thread ,10),I(2a,1c,22,02),I(45,01,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 140 binding: call1/cc */
  static const void *G00569[] = {I(aa,24,00,00),B(thread ,25),I(24,00,00,00),B(mop_gf ,2),I(3c,01,24,00),B(thread ,31),I(3c,02,1b,44),I(04,1b,36,02),I(86,45,01,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 141 binding: thread-return */
  static const void *G00571[] = {I(ab,1c,1c,1c),I(82,1d,24,00),B(thread ,34),I(09,22,02,2a),I(1c,87,1c,83),I(1d,24,00,00),B(thread ,34),I(09,22,02,2a),I(1c,23,00,00),B(thread ,90),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(24,00,00,00),B(thread ,17),I(3d,00,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 142 binding: thread-return-value */
  static const void *G00573[] = {I(aa,82,24,00),B(thread ,34),I(08,45,00,00)};

  /* Byte-vector with size: 11 is_init: 0 index: 143 binding: thread-run */
  static const void *G00575[] = {I(aa,1b,89,00),B(thread ,33),I(2a,1b,23,00),B(thread ,117),I(1c,84,1d,24),B(thread ,34),I(09,22,02,2a),I(1b,8a,03,24),B(thread ,34),I(08,1c,1c,3d),I(01,02,45,02)};

  /* Byte-vector with size: 3 is_init: 0 index: 144 binding: thread-state */
  static const void *G00577[] = {I(aa,84,24,00),B(thread ,34),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 145 binding: thread-dynamic-variables */
  static const void *G00579[] = {I(aa,84,24,00),B(thread ,8),I(08,45,00,00)};

  /* Byte-vector with size: 8 is_init: 0 index: 146 binding: anonymous */
  static const void *G00581[] = {I(aa,1b,11,12),I(1b,44,0d,47),I(00,00,86,0f),I(1d,1c,90,22),I(01,36,09,1c),I(11,47,00,01),I(3d,01,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 147 binding: tconc */
  static const void *G00583[] = {I(ab,46,02,1b),I(48,00,00,86),I(1b,48,00,01),I(23,00,00,00),B(thread ,53),I(23,00,00,00),B(thread ,146),I(3b,01,48,00),I(01,1d,12,1b),I(44,0f,47,00),I(00,86,0f,1b),I(20,05,1f,04),I(22,01,36,08),I(1f,03,47,00),I(01,3c,01,2a),I(1f,03,45,04)};

  /* Byte-vector with size: 3 is_init: 0 index: 148 binding: thread-continuation */
  static const void *G00585[] = {I(aa,8a,03,24),B(thread ,34),I(08,45,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 149 binding: anonymous */
  static const void *G00587[] = {I(aa,47,00,00),I(1c,5b,45,01)};

  /* Byte-vector with size: 11 is_init: 0 index: 150 binding: call1/cc-aux */
  static const void *G00589[] = {I(ab,46,01,1b),I(48,00,00,47),I(00,00,5a,2a),I(23,00,00,00),B(thread ,53),I(23,00,00,00),B(thread ,149),I(3b,01,1d,3c),I(01,1b,44,04),I(1b,36,02,86),I(45,03,00,00)};

  eul_allocate_static_string(str_593, "empty thread queue", 18);
  /* Byte-vector with size: 18 is_init: 0 index: 152 binding: thread-queue-remove-last */
  static const void *G00591[] = {I(a9,24,00,00),B(thread ,10),I(24,00,00,00),B(boot ,28),I(3c,01,1b,12),I(1b,44,17,86),I(23,00,00,00),B(thread ,151),I(24,00,00,00),B(boot ,13),I(3d,02,02,36),I(18,1c,10,1d),I(11,24,00,00),B(boot ,28),I(3c,01,1b,89),B(thread ,10),I(2a,1c,22,02),I(45,02,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 153 binding: state-value-stack-size */
  static const void *G00594[] = {I(aa,84,24,00),B(thread ,25),I(08,45,00,00)};

  /* Byte-vector with size: 13 is_init: 0 index: 154 binding: thread-queue-append */
  static const void *G00596[] = {I(aa,24,00,00),B(thread ,10),I(12,1b,44,11),I(1c,86,0f,1b),I(89,00,00,00),B(thread ,10),I(22,01,36,14),I(24,00,00,00),B(thread ,10),I(1d,24,00,00),B(thread ,28),I(3d,02,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 155 binding: state-context-stack */
  static const void *G00598[] = {I(aa,83,24,00),B(thread ,25),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 156 binding: thread-returned? */
  static const void *G00600[] = {I(aa,83,24,00),B(thread ,34),I(08,45,00,00)};

  /* Byte-vector with size: 178 is_init: 1 index: 0 binding: initialize-thread */
  static const void *G00602[] = {I(87,25,00,00),B(thread ,1),I(24,00,00,00),B(event ,1),I(3e,0b,24,00),B(event ,0),I(3c,00,21,01),I(24,00,00,00),B(telos ,1),I(3e,0b,24,00),B(telos ,0),I(3c,00,21,01),I(86,25,00,00),B(thread ,39),I(23,00,00,00),B(thread ,157),I(23,00,00,00),B(thread ,156),I(3b,01,25,00),B(thread ,38),I(23,00,00,00),B(thread ,158),I(23,00,00,00),B(thread ,155),I(3b,01,25,00),B(thread ,37),I(23,00,00,00),B(thread ,159),I(23,00,00,00),B(thread ,154),I(3b,01,25,00),B(thread ,36),I(23,00,00,00),B(thread ,160),I(23,00,00,00),B(thread ,153),I(3b,01,25,00),B(thread ,35),I(86,25,00,00),B(thread ,34),I(86,25,00,00),B(thread ,33),I(23,00,00,00),B(thread ,161),I(23,00,00,00),B(thread ,152),I(3b,00,25,00),B(thread ,32),I(23,00,00,00),B(thread ,162),I(23,00,00,00),B(thread ,150),I(3b,02,25,00),B(thread ,31),I(86,25,00,00),B(thread ,30),I(23,00,00,00),B(thread ,163),I(23,00,00,00),B(thread ,148),I(3b,01,25,00),B(thread ,29),I(23,00,00,00),B(thread ,164),I(23,00,00,00),B(thread ,147),I(3b,02,25,00),B(thread ,28),I(23,00,00,00),B(thread ,165),I(23,00,00,00),B(thread ,145),I(3b,01,25,00),B(thread ,27),I(86,25,00,00),B(thread ,26),I(86,25,00,00),B(thread ,25),I(86,25,00,00),B(thread ,24),I(23,00,00,00),B(thread ,166),I(23,00,00,00),B(thread ,144),I(3b,01,25,00),B(thread ,23),I(86,25,00,00),B(thread ,22),I(23,00,00,00),B(thread ,167),I(23,00,00,00),B(thread ,143),I(3b,01,25,00),B(thread ,21),I(23,00,00,00),B(thread ,168),I(23,00,00,00),B(thread ,142),I(3b,01,25,00),B(thread ,20),I(23,00,00,00),B(thread ,169),I(23,00,00,00),B(thread ,141),I(3b,02,25,00),B(thread ,19),I(23,00,00,00),B(thread ,170),I(23,00,00,00),B(thread ,140),I(3b,01,25,00),B(thread ,18),I(23,00,00,00),B(thread ,171),I(23,00,00,00),B(thread ,139),I(3b,00,25,00),B(thread ,17),I(23,00,00,00),B(thread ,172),I(23,00,00,00),B(thread ,137),I(3b,01,25,00),B(thread ,16),I(86,25,00,00),B(thread ,15),I(23,00,00,00),B(thread ,173),I(23,00,00,00),B(thread ,136),I(3b,01,25,00),B(thread ,14),I(23,00,00,00),B(thread ,174),I(23,00,00,00),B(thread ,135),I(3b,02,25,00),B(thread ,13),I(23,00,00,00),B(thread ,175),I(23,00,00,00),B(thread ,132),I(3b,01,25,00),B(thread ,12),I(23,00,00,00),B(thread ,176),I(23,00,00,00),B(thread ,131),I(3b,fe,25,00),B(thread ,11),I(86,25,00,00),B(thread ,10),I(23,00,00,00),B(thread ,177),I(23,00,00,00),B(thread ,129),I(3b,01,25,00),B(thread ,9),I(86,25,00,00),B(thread ,8),I(86,25,00,00),B(thread ,7),I(86,25,00,00),B(thread ,6),I(86,25,00,00),B(thread ,5),I(86,25,00,00),B(thread ,4),I(86,25,00,00),B(thread ,3),I(86,25,00,00),B(thread ,2),I(23,00,00,00),B(thread ,178),I(23,00,00,00),B(thread ,128),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G00427,G00426);
  eul_allocate_bytevector( G00429,G00428);
  eul_allocate_bytevector( G00431,G00430);
  eul_allocate_bytevector( G00433,G00432);
  eul_allocate_bytevector( G00435,G00434);
  eul_allocate_bytevector( G00437,G00436);
  eul_allocate_bytevector( G00439,G00438);
  eul_intern_symbol(sym_442,"blocked");
  eul_allocate_bytevector( G00441,G00440);
  eul_allocate_bytevector( G00444,G00443);
  eul_allocate_bytevector( G00446,G00445);
  eul_intern_symbol(sym_449,"limbo");
  eul_allocate_bytevector( G00448,G00447);
  eul_intern_symbol(sym_452,"anonymous");
  eul_allocate_bytevector( G00451,G00450);
  eul_intern_keyword(key_455,"function");
  object_class(str_456) = eul_static_string_class;
  eul_allocate_bytevector( G00454,G00453);
  eul_allocate_bytevector( G00458,G00457);
  eul_allocate_bytevector( G00460,G00459);
  eul_allocate_bytevector( G00462,G00461);
  eul_allocate_bytevector( G00464,G00463);
  eul_allocate_bytevector( G00466,G00465);
  eul_allocate_bytevector( G00468,G00467);
  eul_allocate_bytevector( G00470,G00469);
  eul_allocate_bytevector( G00472,G00471);
  eul_allocate_bytevector( G00474,G00473);
  eul_allocate_bytevector( G00476,G00475);
  eul_allocate_bytevector( G00478,G00477);
  eul_intern_symbol(sym_481,"ready");
  eul_allocate_bytevector( G00480,G00479);
  eul_allocate_bytevector( G00483,G00482);
  eul_allocate_bytevector( G00485,G00484);
  eul_intern_symbol(sym_488,"*clean-ups*");
  eul_allocate_bytevector( G00487,G00486);
  eul_intern_keyword(key_491,"name");
  eul_intern_symbol(sym_492,"error-handlers");
  eul_intern_keyword(key_493,"keyword");
  eul_intern_keyword(key_494,"handlers");
  eul_intern_symbol(sym_495,"dynamic-variables");
  eul_intern_keyword(key_496,"default");
  eul_intern_keyword(key_497,"dynamic-variables");
  eul_intern_symbol(sym_498,"thread");
  eul_intern_keyword(key_499,"direct-superclasses");
  eul_intern_keyword(key_500,"direct-slots");
  eul_intern_keyword(key_501,"direct-keywords");
  object_class(cons_503) = eul_static_cons_class;
  eul_car(cons_503) = key_494;
  eul_cdr(cons_503) = eul_nil;
  object_class(cons_502) = eul_static_cons_class;
  eul_car(cons_502) = key_455;
  eul_intern_keyword(key_504,"abstract?");
  eul_intern_symbol(sym_505,"continuation");
  eul_intern_symbol(sym_506,"state");
  eul_intern_symbol(sym_507,"returned");
  eul_intern_symbol(sym_508,"return-value");
  eul_intern_symbol(sym_509,"simple-thread");
  eul_intern_symbol(sym_510,"value-stack");
  eul_intern_keyword(key_511,"value-stack");
  eul_intern_symbol(sym_512,"value-stack-size");
  eul_intern_keyword(key_513,"value-stack-size");
  eul_intern_symbol(sym_514,"context-stack");
  eul_intern_keyword(key_515,"context-stack");
  eul_intern_symbol(sym_516,"context-stack-size");
  eul_intern_keyword(key_517,"context-stack-size");
  object_class(cons_521) = eul_static_cons_class;
  eul_car(cons_521) = key_511;
  eul_cdr(cons_521) = eul_nil;
  object_class(cons_520) = eul_static_cons_class;
  eul_car(cons_520) = key_513;
  object_class(cons_519) = eul_static_cons_class;
  eul_car(cons_519) = key_515;
  object_class(cons_518) = eul_static_cons_class;
  eul_car(cons_518) = key_517;
  eul_intern_symbol(sym_522,"thread?");
  eul_intern_symbol(sym_523,"simple-thread?");
  eul_intern_symbol(sym_524,"thread-start");
  eul_intern_symbol(sym_525,"thread-value");
  eul_intern_symbol(sym_526,"thread-block");
  eul_intern_symbol(sym_527,"thread-unblock");
  eul_intern_symbol(sym_528,"state?");
  eul_intern_symbol(sym_529,"(setter thread-dynamic-variables)");
  eul_intern_symbol(sym_530,"(setter thread-error-handlers)");
  eul_intern_symbol(sym_531,"(method thread?)");
  eul_intern_symbol(sym_532,"(setter thread-return-value)");
  eul_intern_symbol(sym_533,"(setter thread-returned?)");
  eul_intern_symbol(sym_534,"(setter thread-state)");
  eul_intern_symbol(sym_535,"(setter thread-continuation)");
  eul_intern_symbol(sym_536,"(method simple-thread?)");
  eul_intern_symbol(sym_537,"running");
  eul_intern_symbol(sym_538,"(method initialize)");
  eul_intern_symbol(sym_539,"(method thread-start)");
  eul_intern_symbol(sym_540,"(method thread-value)");
  eul_intern_symbol(sym_541,"(method thread-block)");
  eul_intern_symbol(sym_542,"(method thread-unblock)");
  eul_intern_symbol(sym_543,"(setter state-context-stack-size)");
  eul_intern_symbol(sym_544,"(setter state-context-stack)");
  eul_intern_symbol(sym_545,"(setter state-value-stack-size)");
  eul_intern_symbol(sym_546,"(setter state-value-stack)");
  eul_intern_symbol(sym_547,"(method state?)");
  eul_allocate_bytevector( G00490,G00489);
  eul_allocate_bytevector( G00549,G00548);
  eul_allocate_bytevector( G00551,G00550);
  eul_allocate_bytevector( G00553,G00552);
  eul_allocate_bytevector( G00555,G00554);
  eul_allocate_bytevector( G00557,G00556);
  eul_allocate_bytevector( G00559,G00558);
  eul_allocate_bytevector( G00561,G00560);
  eul_allocate_bytevector( G00563,G00562);
  eul_allocate_bytevector( G00565,G00564);
  object_class(str_568) = eul_static_string_class;
  eul_allocate_bytevector( G00567,G00566);
  eul_allocate_bytevector( G00570,G00569);
  eul_allocate_bytevector( G00572,G00571);
  eul_allocate_bytevector( G00574,G00573);
  eul_allocate_bytevector( G00576,G00575);
  eul_allocate_bytevector( G00578,G00577);
  eul_allocate_bytevector( G00580,G00579);
  eul_allocate_bytevector( G00582,G00581);
  eul_allocate_bytevector( G00584,G00583);
  eul_allocate_bytevector( G00586,G00585);
  eul_allocate_bytevector( G00588,G00587);
  eul_allocate_bytevector( G00590,G00589);
  object_class(str_593) = eul_static_string_class;
  eul_allocate_bytevector( G00592,G00591);
  eul_allocate_bytevector( G00595,G00594);
  eul_allocate_bytevector( G00597,G00596);
  eul_allocate_bytevector( G00599,G00598);
  eul_allocate_bytevector( G00601,G00600);
  eul_intern_symbol(sym_604,"thread-returned?");
  eul_intern_symbol(sym_605,"state-context-stack");
  eul_intern_symbol(sym_606,"thread-queue-append");
  eul_intern_symbol(sym_607,"state-value-stack-size");
  eul_intern_symbol(sym_608,"thread-queue-remove-last");
  eul_intern_symbol(sym_609,"call1/cc-aux");
  eul_intern_symbol(sym_610,"thread-continuation");
  eul_intern_symbol(sym_611,"tconc");
  eul_intern_symbol(sym_612,"thread-dynamic-variables");
  eul_intern_symbol(sym_613,"thread-state");
  eul_intern_symbol(sym_614,"thread-run");
  eul_intern_symbol(sym_615,"thread-return-value");
  eul_intern_symbol(sym_616,"thread-return");
  eul_intern_symbol(sym_617,"call1/cc");
  eul_intern_symbol(sym_618,"thread-queue-remove");
  eul_intern_symbol(sym_619,"thread-error-handlers");
  eul_intern_symbol(sym_620,"state-value-stack");
  eul_intern_symbol(sym_621,"thread-feed");
  eul_intern_symbol(sym_622,"state-context-stack-size");
  eul_intern_symbol(sym_623,"^");
  eul_intern_symbol(sym_624,"thread-enable");
  eul_intern_symbol(sym_625,"top-level");
  eul_allocate_bytevector( G00603,G00602);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 40; i++)
      thread_bindings[i] = eul_nil;
  }

  thread_bindings[ 40] = G00427;
  thread_bindings[ 41] = G00429;
  thread_bindings[ 42] = G00431;
  thread_bindings[ 43] = G00433;
  thread_bindings[ 44] = G00435;
  thread_bindings[ 45] = G00437;
  thread_bindings[ 46] = G00439;
  thread_bindings[ 47] = sym_442;
  thread_bindings[ 48] = G00441;
  thread_bindings[ 49] = G00444;
  thread_bindings[ 50] = G00446;
  thread_bindings[ 51] = sym_449;
  thread_bindings[ 52] = G00448;
  thread_bindings[ 53] = sym_452;
  thread_bindings[ 54] = G00451;
  thread_bindings[ 55] = key_455;
  thread_bindings[ 56] = str_456;
  thread_bindings[ 57] = G00454;
  thread_bindings[ 58] = G00458;
  thread_bindings[ 59] = G00460;
  thread_bindings[ 60] = G00462;
  thread_bindings[ 61] = G00464;
  thread_bindings[ 62] = G00466;
  thread_bindings[ 63] = G00468;
  thread_bindings[ 64] = G00470;
  thread_bindings[ 65] = G00472;
  thread_bindings[ 66] = G00474;
  thread_bindings[ 67] = G00476;
  thread_bindings[ 68] = G00478;
  thread_bindings[ 69] = sym_481;
  thread_bindings[ 70] = G00480;
  thread_bindings[ 71] = G00483;
  thread_bindings[ 72] = G00485;
  thread_bindings[ 73] = sym_488;
  thread_bindings[ 74] = G00487;
  thread_bindings[ 75] = key_491;
  thread_bindings[ 76] = sym_492;
  thread_bindings[ 77] = key_493;
  thread_bindings[ 78] = key_494;
  thread_bindings[ 79] = sym_495;
  thread_bindings[ 80] = key_496;
  thread_bindings[ 81] = key_497;
  thread_bindings[ 82] = sym_498;
  thread_bindings[ 83] = key_499;
  thread_bindings[ 84] = key_500;
  thread_bindings[ 85] = key_501;
  thread_bindings[ 86] = cons_502;
  thread_bindings[ 87] = key_504;
  thread_bindings[ 88] = sym_505;
  thread_bindings[ 89] = sym_506;
  thread_bindings[ 90] = sym_507;
  thread_bindings[ 91] = sym_508;
  thread_bindings[ 92] = sym_509;
  thread_bindings[ 93] = sym_510;
  thread_bindings[ 94] = key_511;
  thread_bindings[ 95] = sym_512;
  thread_bindings[ 96] = key_513;
  thread_bindings[ 97] = sym_514;
  thread_bindings[ 98] = key_515;
  thread_bindings[ 99] = sym_516;
  thread_bindings[ 100] = key_517;
  thread_bindings[ 101] = cons_518;
  thread_bindings[ 102] = sym_522;
  thread_bindings[ 103] = sym_523;
  thread_bindings[ 104] = sym_524;
  thread_bindings[ 105] = sym_525;
  thread_bindings[ 106] = sym_526;
  thread_bindings[ 107] = sym_527;
  thread_bindings[ 108] = sym_528;
  thread_bindings[ 109] = sym_529;
  thread_bindings[ 110] = sym_530;
  thread_bindings[ 111] = sym_531;
  thread_bindings[ 112] = sym_532;
  thread_bindings[ 113] = sym_533;
  thread_bindings[ 114] = sym_534;
  thread_bindings[ 115] = sym_535;
  thread_bindings[ 116] = sym_536;
  thread_bindings[ 117] = sym_537;
  thread_bindings[ 118] = sym_538;
  thread_bindings[ 119] = sym_539;
  thread_bindings[ 120] = sym_540;
  thread_bindings[ 121] = sym_541;
  thread_bindings[ 122] = sym_542;
  thread_bindings[ 123] = sym_543;
  thread_bindings[ 124] = sym_544;
  thread_bindings[ 125] = sym_545;
  thread_bindings[ 126] = sym_546;
  thread_bindings[ 127] = sym_547;
  thread_bindings[ 128] = G00490;
  thread_bindings[ 129] = G00549;
  thread_bindings[ 130] = G00551;
  thread_bindings[ 131] = G00553;
  thread_bindings[ 132] = G00555;
  thread_bindings[ 133] = G00557;
  thread_bindings[ 134] = G00559;
  thread_bindings[ 135] = G00561;
  thread_bindings[ 136] = G00563;
  thread_bindings[ 137] = G00565;
  thread_bindings[ 138] = str_568;
  thread_bindings[ 139] = G00567;
  thread_bindings[ 140] = G00570;
  thread_bindings[ 141] = G00572;
  thread_bindings[ 142] = G00574;
  thread_bindings[ 143] = G00576;
  thread_bindings[ 144] = G00578;
  thread_bindings[ 145] = G00580;
  thread_bindings[ 146] = G00582;
  thread_bindings[ 147] = G00584;
  thread_bindings[ 148] = G00586;
  thread_bindings[ 149] = G00588;
  thread_bindings[ 150] = G00590;
  thread_bindings[ 151] = str_593;
  thread_bindings[ 152] = G00592;
  thread_bindings[ 153] = G00595;
  thread_bindings[ 154] = G00597;
  thread_bindings[ 155] = G00599;
  thread_bindings[ 156] = G00601;
  thread_bindings[ 1] = eul_nil;
  thread_bindings[ 157] = sym_604;
  thread_bindings[ 158] = sym_605;
  thread_bindings[ 159] = sym_606;
  thread_bindings[ 160] = sym_607;
  thread_bindings[ 161] = sym_608;
  thread_bindings[ 162] = sym_609;
  thread_bindings[ 163] = sym_610;
  thread_bindings[ 164] = sym_611;
  thread_bindings[ 165] = sym_612;
  thread_bindings[ 166] = sym_613;
  thread_bindings[ 167] = sym_614;
  thread_bindings[ 168] = sym_615;
  thread_bindings[ 169] = sym_616;
  thread_bindings[ 170] = sym_617;
  thread_bindings[ 171] = sym_618;
  thread_bindings[ 172] = sym_619;
  thread_bindings[ 173] = sym_620;
  thread_bindings[ 174] = sym_621;
  thread_bindings[ 175] = sym_622;
  thread_bindings[ 176] = sym_623;
  thread_bindings[ 177] = sym_624;
  thread_bindings[ 178] = sym_625;
  eul_allocate_lambda( thread_bindings[0], "initialize-thread", 0, G00603);

  }
}
Example #12
0
/* Initialize module mop-defcl0 */
void initialize_module_mop_defcl0()
{
  if (is_initialized) return;
  initialize_module_level_1();
  eul_fast_table_set(eul_modules,"mop_defcl0",(LispRef) mop_defcl0_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_1207, sym_1206, sym_1205, sym_1204, sym_1203, sym_1202, sym_1201, sym_1200, sym_1199, sym_1198, sym_1197, sym_1196, G001195, sym_1193, sym_1192, sym_1191, sym_1190, G001189, G001187, G001185, G001177, G001175, sym_1173, sym_1172, sym_1171, G001170, G001168, G001166, sym_1164, key_1163, G001162, sym_1160, sym_1159, G001158, sym_1156, G001155, G001153, sym_1151, sym_1150, key_1149, key_1148, key_1147, key_1146, key_1144, key_1142, key_1140, key_1137, sym_1136, sym_1134, sym_1133, sym_1132, sym_1131, sym_1130, G001129, sym_1127, sym_1126, sym_1125, sym_1124, sym_1123, sym_1122, sym_1121, sym_1120, sym_1119, G001118, G001116, key_1114, key_1112, key_1109, sym_1106, key_1105, key_1104, sym_1103, sym_1101, key_1100, sym_1099, G001098;

  /* Code vector and literal definitions */
  eul_allocate_static_cons(cons_1102, NULL, NULL);
  eul_allocate_static_cons(cons_1113, NULL, NULL);
  eul_allocate_static_cons(cons_1111, NULL, eul_as_static(cons_1113));
  eul_allocate_static_cons(cons_1110, NULL, eul_as_static(cons_1111));
  eul_allocate_static_cons(cons_1108, NULL, eul_as_static(cons_1110));
  eul_allocate_static_cons(cons_1107, NULL, eul_as_static(cons_1108));
  /* Byte-vector with size: 71 is_init: 0 index: 26 binding: do-direct-slotds */
  static const void *G001097[] = {I(aa,1b,12,1b),I(44,04,86,39),I(11,1c,10,7a),I(12,1b,44,36),I(1d,10,1b,86),I(0f,23,00,00),B(mop_defcl0 ,14),I(1c,0f,1b,86),I(0f,23,00,00),B(mop_defcl0 ,15),I(1c,0f,23,00),B(mop_defcl0 ,16),I(1c,0f,1f,08),I(11,1b,24,00),B(mop_defcl0 ,2),I(3c,01,1d,1c),I(0f,22,08,36),I(d3,23,00,00),B(mop_defcl0 ,18),I(1f,03,74,23),B(mop_defcl0 ,19),I(1c,1f,03,24),B(mop_key ,2),I(3c,03,1f,05),I(74,23,00,00),B(mop_defcl0 ,20),I(1c,1f,05,24),B(mop_key ,2),I(3c,03,1f,07),I(72,1b,86,0f),I(23,00,00,00),B(mop_defcl0 ,14),I(1c,0f,1f,05),I(1f,08,50,1b),I(44,04,86,36),I(20,1f,06,86),I(0f,86,1c,0f),I(23,00,00,00),B(mop_defcl0 ,21),I(1c,0f,1b,86),I(0f,23,00,00),B(mop_defcl0 ,19),I(1c,0f,22,04),I(1f,05,1f,0a),I(50,1b,44,04),I(86,36,0e,1f),I(06,86,0f,23),B(mop_defcl0 ,20),I(1c,0f,22,01),I(1f,0e,74,1b),I(23,00,00,00),B(mop_defcl0 ,25),I(24,00,00,00),B(mop_key ,3),I(3c,02,1d,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1f,05),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,08),I(1c,0f,23,00),B(mop_defcl0 ,15),I(1c,0f,23,00),B(mop_defcl0 ,16),I(1c,0f,1f,15),I(11,1b,24,00),B(mop_defcl0 ,2),I(3c,01,1d,1c),I(0f,22,15,22),I(01,45,02,00)};

  /* Byte-vector with size: 66 is_init: 0 index: 27 binding: do-accessor */
  static const void *G001115[] = {I(43,04,1c,12),I(1b,44,04,86),I(36,fa,1d,10),I(23,00,00,00),B(mop_defcl0 ,22),I(50,1b,44,48),I(1f,03,73,1b),I(1f,07,1f,07),I(1f,06,24,00),B(mop_defcl0 ,4),I(3c,04,1c,1f),I(08,1f,08,1f),I(07,24,00,00),B(mop_defcl0 ,7),I(3c,04,1f,06),I(75,1f,09,1f),I(09,1d,1f,09),I(24,00,00,00),B(mop_defcl0 ,3),I(3c,04,1f,03),I(1f,03,1d,24),B(collect ,17),I(3d,03,0b,22),I(05,36,a3,1f),I(03,10,23,00),B(mop_defcl0 ,23),I(50,1b,44,38),I(1f,04,73,1b),I(1f,08,1f,08),I(1f,07,24,00),B(mop_defcl0 ,4),I(3c,04,1f,06),I(75,1f,09,1f),I(09,1d,1f,09),I(24,00,00,00),B(mop_defcl0 ,3),I(3c,04,1d,1c),I(24,00,00,00),B(boot ,8),I(3d,02,0b,22),I(04,36,5d,1f),I(04,10,23,00),B(mop_defcl0 ,24),I(50,1b,44,38),I(1f,05,73,1b),I(1f,09,1f,09),I(1f,08,87,24),B(mop_defcl0 ,7),I(3c,05,1f,07),I(75,1f,0a,1f),I(0a,1d,1f,0a),I(24,00,00,00),B(mop_defcl0 ,3),I(3c,04,1d,1c),I(24,00,00,00),B(boot ,8),I(3d,02,0c,22),I(04,36,17,1f),I(05,75,1f,08),I(1f,08,1d,1f),I(08,24,00,00),B(mop_defcl0 ,3),I(3d,04,09,22),I(01,22,01,22),I(01,22,01,45),I(05,00,00,00)};

  /* Byte-vector with size: 33 is_init: 0 index: 37 binding: do-reader */
  static const void *G001117[] = {I(43,04,23,00),B(mop_defcl0 ,28),I(86,0f,23,00),B(mop_defcl0 ,29),I(86,0f,23,00),B(mop_defcl0 ,30),I(1c,0f,1f,05),I(86,0f,23,00),B(mop_defcl0 ,31),I(1c,0f,23,00),B(mop_defcl0 ,32),I(1c,0f,23,00),B(mop_defcl0 ,33),I(86,0f,1b,86),I(0f,1d,1c,0f),I(1f,06,1c,0f),I(23,00,00,00),B(mop_defcl0 ,34),I(1c,0f,1f,0b),I(86,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1d,1c),I(0f,1b,86,0f),I(1f,0e,1c,0f),I(1f,13,1c,0f),I(23,00,00,00),B(mop_defcl0 ,35),I(1c,0f,1f,15),I(86,0f,23,00),B(mop_defcl0 ,36),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,45,19,00)};

  eul_allocate_static_cons(cons_1135, NULL, NULL);
  eul_allocate_static_cons(cons_1145, NULL, NULL);
  eul_allocate_static_cons(cons_1143, NULL, eul_as_static(cons_1145));
  eul_allocate_static_cons(cons_1141, NULL, eul_as_static(cons_1143));
  eul_allocate_static_cons(cons_1139, NULL, eul_as_static(cons_1141));
  eul_allocate_static_cons(cons_1138, NULL, eul_as_static(cons_1139));
  /* Byte-vector with size: 104 is_init: 0 index: 56 binding: defprimclass */
  static const void *G001128[] = {I(43,fb,1f,04),I(24,00,00,00),B(mop_defcl0 ,10),I(3c,01,1f,04),I(86,0f,23,00),B(mop_defcl0 ,38),I(1c,0f,1b,86),I(0f,1f,08,1c),I(0f,23,00,00),B(mop_defcl0 ,39),I(1c,0f,23,00),B(mop_defcl0 ,40),I(86,0f,23,00),B(mop_defcl0 ,41),I(1c,0f,23,00),B(mop_defcl0 ,42),I(86,0f,1f,0d),I(1c,0f,1d,1c),I(0f,1f,0a,86),I(0f,23,00,00),B(mop_defcl0 ,14),I(1c,0f,1f,0f),I(7b,1b,44,05),I(1f,10,36,0b),I(1f,10,24,00),B(boot1 ,26),I(3c,01,1b,44),I(04,1b,36,09),I(23,00,00,00),B(mop_defcl0 ,44),I(23,00,00,00),B(mop_defcl0 ,16),I(1c,0f,1f,12),I(24,00,00,00),B(mop_defcl0 ,2),I(3c,01,23,00),B(mop_defcl0 ,16),I(1c,0f,23,00),B(mop_defcl0 ,45),I(1f,14,86,24),B(mop_key ,2),I(3c,03,1f,15),I(24,00,00,00),B(mop_defcl0 ,6),I(3c,01,1c,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1b,86),I(0f,23,00,00),B(mop_defcl0 ,14),I(1c,0f,1f,18),I(23,00,00,00),B(mop_defcl0 ,50),I(24,00,00,00),B(mop_key ,3),I(3c,02,1c,1c),I(0f,23,00,00),B(mop_defcl0 ,51),I(1c,0f,1f,08),I(1c,0f,23,00),B(mop_defcl0 ,52),I(1c,0f,1f,0c),I(1c,0f,23,00),B(mop_defcl0 ,53),I(1c,0f,1f,12),I(1c,0f,23,00),B(mop_defcl0 ,15),I(1c,0f,23,00),B(mop_defcl0 ,16),I(1c,0f,1b,86),I(0f,1f,27,1c),I(0f,23,00,00),B(mop_defcl0 ,54),I(1c,0f,1f,29),I(1f,27,24,00),B(mop_defcl0 ,12),I(3c,02,1f,2a),I(1f,27,24,00),B(mop_defcl0 ,8),I(3c,02,1f,2b),I(1f,28,24,00),B(mop_defcl0 ,9),I(3c,02,1f,2c),I(1f,29,24,00),B(mop_defcl0 ,13),I(3c,02,1f,2d),I(86,0f,1c,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1f,03),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,05),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,07),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,09),I(1c,0f,1f,24),I(1c,0f,1f,2a),I(1c,0f,23,00),B(mop_defcl0 ,55),I(1c,0f,45,36)};

  /* Byte-vector with size: 23 is_init: 0 index: 57 binding: anonymous */
  static const void *G001152[] = {I(ab,1c,12,1b),I(44,04,1c,36),I(50,1d,10,1b),I(7a,12,1b,44),I(11,1f,04,11),I(1b,1f,05,47),I(00,00,3d,02),I(06,22,01,36),I(36,1c,11,23),B(mop_defcl0 ,20),I(1c,86,24,00),B(mop_key ,2),I(3c,03,1b,12),I(1b,44,11,1f),I(07,11,1b,1f),I(08,47,00,00),I(3d,02,09,22),I(01,36,0e,1f),I(07,11,1d,1f),I(08,0f,47,00),I(00,3d,02,08),I(22,03,22,02),I(45,03,00,00)};

  /* Byte-vector with size: 10 is_init: 0 index: 59 binding: find-slot-keywords */
  static const void *G001154[] = {I(aa,46,01,86),I(1b,48,00,00),I(23,00,00,00),B(mop_defcl0 ,58),I(23,00,00,00),B(mop_defcl0 ,57),I(3b,02,48,00),I(00,1c,86,47),I(00,00,3d,02),I(02,45,02,00)};

  /* Byte-vector with size: 79 is_init: 0 index: 62 binding: do-writer */
  static const void *G001157[] = {I(43,fb,12,1b),I(44,97,1f,04),I(86,0f,23,00),B(mop_defcl0 ,41),I(1c,0f,23,00),B(mop_defcl0 ,60),I(86,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,23,00),B(mop_defcl0 ,60),I(86,0f,23,00),B(mop_defcl0 ,29),I(1c,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1f,0a),I(86,0f,23,00),B(mop_defcl0 ,31),I(1c,0f,23,00),B(mop_defcl0 ,32),I(1c,0f,23,00),B(mop_defcl0 ,61),I(86,0f,1b,86),I(0f,1d,1c,0f),I(1f,06,1c,0f),I(23,00,00,00),B(mop_defcl0 ,34),I(1c,0f,23,00),B(mop_defcl0 ,60),I(86,0f,1f,11),I(1c,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1f,03),I(1c,0f,1b,86),I(0f,1f,10,1c),I(0f,1f,13,1c),I(0f,23,00,00),B(mop_defcl0 ,35),I(1c,0f,86,0f),I(22,16,36,9c),I(23,00,00,00),B(mop_defcl0 ,60),I(86,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,23,00),B(mop_defcl0 ,60),I(86,0f,23,00),B(mop_defcl0 ,29),I(1c,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1f,08),I(86,0f,23,00),B(mop_defcl0 ,31),I(1c,0f,23,00),B(mop_defcl0 ,32),I(1c,0f,23,00),B(mop_defcl0 ,61),I(86,0f,1b,86),I(0f,1d,1c,0f),I(1f,06,1c,0f),I(23,00,00,00),B(mop_defcl0 ,34),I(1c,0f,23,00),B(mop_defcl0 ,60),I(86,0f,1f,0f),I(1c,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1f,03),I(1c,0f,1b,86),I(0f,1f,10,1c),I(0f,1f,17,1c),I(0f,23,00,00),B(mop_defcl0 ,35),I(1c,0f,1f,19),I(86,0f,23,00),B(mop_defcl0 ,36),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,22,18,45),I(05,00,00,00)};

  /* Byte-vector with size: 48 is_init: 0 index: 65 binding: do-predicates */
  static const void *G001161[] = {I(ab,1b,12,1b),I(44,04,86,36),I(b3,1c,10,23),B(mop_defcl0 ,46),I(50,1b,44,94),I(1d,73,23,00),B(mop_defcl0 ,43),I(86,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1b,86),I(0f,23,00,00),B(mop_defcl0 ,43),I(86,0f,23,00),B(mop_defcl0 ,28),I(1c,0f,1b,86),I(0f,86,86,0f),I(1c,1c,0f,1f),I(0c,86,0f,23),B(mop_defcl0 ,28),I(1c,0f,1b,86),I(0f,23,00,00),B(mop_defcl0 ,28),I(86,0f,1c,1c),I(0f,1b,86,0f),I(23,00,00,00),B(mop_defcl0 ,63),I(1c,0f,1f,07),I(1c,0f,23,00),B(mop_defcl0 ,63),I(1c,0f,1f,0e),I(1c,0f,1f,12),I(1c,0f,23,00),B(mop_defcl0 ,64),I(1c,0f,1b,86),I(0f,1f,18,75),I(1f,1a,1c,24),B(mop_defcl0 ,8),I(3c,02,1d,1c),I(24,00,00,00),B(boot ,8),I(3d,02,1c,22),I(18,36,13,1d),I(75,1f,04,1c),I(24,00,00,00),B(mop_defcl0 ,8),I(3d,02,05,22),I(01,22,01,45),I(03,00,00,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 66 binding: anonymous */
  static const void *G001165[] = {I(43,03,1d,12),I(1b,44,04,1c),I(36,32,1f,03),I(11,1f,03,11),I(1f,05,10,1f),I(05,10,1c,1c),I(24,00,00,00),B(boot1 ,26),I(3c,02,1f,06),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,05),I(1f,05,1d,47),I(00,00,3d,03),I(0a,22,06,45),I(04,00,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 67 binding: anonymous */
  static const void *G001167[] = {I(aa,24,00,00),B(symbol ,6),I(3d,00,01,00)};

  /* Byte-vector with size: 60 is_init: 0 index: 71 binding: do-constructors */
  static const void *G001169[] = {I(ab,46,08,1b),I(12,1b,44,04),I(86,36,e1,1c),I(10,23,00,00),B(mop_defcl0 ,48),I(50,1b,44,c2),I(1d,73,1b,7a),I(12,1b,44,3b),I(23,00,00,00),B(mop_defcl0 ,68),I(86,0f,1f,06),I(1c,0f,23,00),B(mop_defcl0 ,69),I(1c,0f,23,00),B(mop_defcl0 ,70),I(1c,0f,1b,86),I(0f,23,00,00),B(mop_defcl0 ,68),I(1c,0f,1f,07),I(1c,0f,23,00),B(mop_defcl0 ,35),I(1c,0f,22,07),I(36,6b,1c,11),I(23,00,00,00),B(mop_defcl0 ,58),I(23,00,00,00),B(mop_defcl0 ,67),I(3b,01,1c,24),B(collect ,2),I(3c,02,1f,03),I(10,86,1b,48),I(00,00,23,00),B(mop_defcl0 ,58),I(23,00,00,00),B(mop_defcl0 ,66),I(3b,03,48,00),I(00,47,00,00),I(1f,06,11,1b),I(1f,05,86,47),I(00,00,3c,03),I(1f,0c,1c,0f),I(23,00,00,00),B(mop_defcl0 ,69),I(1c,0f,1b,86),I(0f,1f,08,1c),I(0f,1f,08,1c),I(0f,23,00,00),B(mop_defcl0 ,35),I(1c,0f,22,0c),I(1f,05,75,1f),I(07,1c,24,00),B(mop_defcl0 ,9),I(3c,02,1d,1c),I(0f,22,05,36),I(11,1d,75,1f),I(04,1c,24,00),B(mop_defcl0 ,9),I(3d,02,05,22),I(01,22,01,45),I(03,00,00,00)};

  /* Byte-vector with size: 11 is_init: 0 index: 72 binding: strip-<> */
  static const void *G001174[] = {I(aa,1b,82,02),I(1b,82,0b,27),I(3c,50,1b,44),I(1c,1c,06,1b),I(2c,1f,03,83),I(1d,24,00,00),B(string ,6),I(3c,03,41,00),B(boot1 ,56),I(22,03,36,02),I(1d,45,03,00)};

  eul_allocate_static_cons(cons_1178, NULL, NULL);
  eul_allocate_static_cons(cons_1183, NULL, NULL);
  eul_allocate_static_cons(cons_1182, NULL, eul_as_static(cons_1183));
  eul_allocate_static_cons(cons_1181, NULL, eul_as_static(cons_1182));
  eul_allocate_static_cons(cons_1180, NULL, eul_as_static(cons_1181));
  eul_allocate_static_cons(cons_1179, NULL, eul_as_static(cons_1180));
  /* Byte-vector with size: 94 is_init: 0 index: 75 binding: defclass */
  static const void *G001176[] = {I(43,fc,1f,03),I(24,00,00,00),B(mop_defcl0 ,10),I(3c,01,23,00),B(mop_defcl0 ,47),I(1d,23,00,00),B(mop_defcl0 ,42),I(24,00,00,00),B(mop_key ,2),I(3c,03,1c,86),I(0f,23,00,00),B(mop_defcl0 ,14),I(1c,0f,1f,06),I(7b,1b,44,05),I(1f,07,36,0b),I(1f,07,24,00),B(boot1 ,26),I(3c,01,1b,44),I(04,1b,36,09),I(23,00,00,00),B(mop_defcl0 ,73),I(23,00,00,00),B(mop_defcl0 ,16),I(1c,0f,1f,09),I(24,00,00,00),B(mop_defcl0 ,2),I(3c,01,23,00),B(mop_defcl0 ,16),I(1c,0f,23,00),B(mop_defcl0 ,45),I(1f,0b,86,24),B(mop_key ,2),I(3c,03,1f,0c),I(24,00,00,00),B(mop_defcl0 ,6),I(3c,01,1c,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1b,86),I(0f,23,00,00),B(mop_defcl0 ,14),I(1c,0f,1f,0f),I(23,00,00,00),B(mop_defcl0 ,74),I(24,00,00,00),B(mop_key ,3),I(3c,02,1c,1c),I(0f,23,00,00),B(mop_defcl0 ,51),I(1c,0f,1f,08),I(1c,0f,23,00),B(mop_defcl0 ,52),I(1c,0f,1f,0c),I(1c,0f,23,00),B(mop_defcl0 ,53),I(1c,0f,1f,12),I(1c,0f,23,00),B(mop_defcl0 ,15),I(1c,0f,1f,16),I(1c,0f,23,00),B(mop_defcl0 ,69),I(1c,0f,1b,86),I(0f,1f,1e,1c),I(0f,23,00,00),B(mop_defcl0 ,39),I(1c,0f,1f,20),I(1f,1f,24,00),B(mop_defcl0 ,12),I(3c,02,1f,21),I(1f,1f,24,00),B(mop_defcl0 ,8),I(3c,02,1f,22),I(1f,20,24,00),B(mop_defcl0 ,9),I(3c,02,1f,23),I(1f,21,24,00),B(mop_defcl0 ,13),I(3c,02,1f,24),I(86,0f,1c,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1f,03),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,05),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,07),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,09),I(1c,0f,23,00),B(mop_defcl0 ,55),I(1c,0f,45,2b)};

  /* Byte-vector with size: 24 is_init: 0 index: 76 binding: anonymous */
  static const void *G001184[] = {I(43,03,1d,12),I(1b,44,04,1d),I(36,52,1f,03),I(10,1b,7a,12),I(1b,44,15,1f),I(05,11,1f,04),I(2c,1c,1f,07),I(1d,47,00,01),I(3d,03,08,22),I(02,36,33,1f),I(05,11,1d,10),I(1f,03,11,47),I(00,00,1d,1d),I(1f,09,24,00),B(mop_defcl0 ,3),I(3c,04,1b,1f),I(09,24,00,00),B(boot ,8),I(3c,02,1f,08),I(2c,1f,05,1d),I(1d,47,00,01),I(3d,03,0c,22),I(06,22,02,45),I(04,00,00,00)};

  /* Byte-vector with size: 14 is_init: 0 index: 77 binding: do-accessors */
  static const void *G001186[] = {I(ab,46,02,1c),I(48,00,00,86),I(1b,48,00,01),I(23,00,00,00),B(mop_defcl0 ,58),I(23,00,00,00),B(mop_defcl0 ,76),I(3b,03,48,00),I(01,1c,24,00),B(boot ,19),I(3c,01,1b,2c),I(1f,03,86,1d),I(47,00,01,3d),I(03,05,45,05)};

  /* Byte-vector with size: 25 is_init: 0 index: 82 binding: do-printfn */
  static const void *G001188[] = {I(ab,23,00,00),B(mop_defcl0 ,49),I(1c,86,24,00),B(mop_key ,2),I(3c,03,1b,12),I(1b,44,04,86),I(36,49,1f,03),I(86,0f,23,00),B(mop_defcl0 ,78),I(1c,0f,23,00),B(mop_defcl0 ,79),I(86,0f,1c,1c),I(0f,23,00,00),B(mop_defcl0 ,79),I(86,0f,23,00),B(mop_defcl0 ,78),I(1c,0f,1f,07),I(1c,0f,1b,86),I(0f,1f,04,1c),I(0f,23,00,00),B(mop_defcl0 ,80),I(1c,0f,23,00),B(mop_defcl0 ,81),I(1c,0f,86,0f),I(22,0a,45,04)};

  /* Byte-vector with size: 80 is_init: 1 index: 0 binding: initialize-mop-defcl0 */
  static const void *G001194[] = {I(87,25,00,00),B(mop_defcl0 ,1),I(24,00,00,00),B(level_1 ,1),I(3e,0b,24,00),B(level_1 ,0),I(3c,00,21,01),I(23,00,00,00),B(mop_defcl0 ,83),I(23,00,00,00),B(mop_defcl0 ,82),I(3b,02,25,00),B(mop_defcl0 ,13),I(23,00,00,00),B(mop_defcl0 ,84),I(23,00,00,00),B(mop_defcl0 ,77),I(3b,02,25,00),B(mop_defcl0 ,12),I(23,00,00,00),B(mop_defcl0 ,85),I(23,00,00,00),B(mop_defcl0 ,75),I(3b,fc,25,00),B(mop_defcl0 ,11),I(23,00,00,00),B(mop_defcl0 ,86),I(23,00,00,00),B(mop_defcl0 ,72),I(3b,01,25,00),B(mop_defcl0 ,10),I(23,00,00,00),B(mop_defcl0 ,87),I(23,00,00,00),B(mop_defcl0 ,71),I(3b,02,25,00),B(mop_defcl0 ,9),I(23,00,00,00),B(mop_defcl0 ,88),I(23,00,00,00),B(mop_defcl0 ,65),I(3b,02,25,00),B(mop_defcl0 ,8),I(23,00,00,00),B(mop_defcl0 ,89),I(23,00,00,00),B(mop_defcl0 ,62),I(3b,fb,25,00),B(mop_defcl0 ,7),I(23,00,00,00),B(mop_defcl0 ,90),I(23,00,00,00),B(mop_defcl0 ,59),I(3b,01,25,00),B(mop_defcl0 ,6),I(23,00,00,00),B(mop_defcl0 ,91),I(23,00,00,00),B(mop_defcl0 ,56),I(3b,fb,25,00),B(mop_defcl0 ,5),I(23,00,00,00),B(mop_defcl0 ,92),I(23,00,00,00),B(mop_defcl0 ,37),I(3b,04,25,00),B(mop_defcl0 ,4),I(23,00,00,00),B(mop_defcl0 ,93),I(23,00,00,00),B(mop_defcl0 ,27),I(3b,04,25,00),B(mop_defcl0 ,3),I(23,00,00,00),B(mop_defcl0 ,94),I(23,00,00,00),B(mop_defcl0 ,26),I(3b,01,25,00),B(mop_defcl0 ,2),I(86,ac,00,00)};


  /* Initializations */
  eul_intern_symbol(sym_1099,"quote");
  eul_intern_keyword(key_1100,"name");
  eul_intern_symbol(sym_1101,"list");
  eul_intern_symbol(sym_1103,"absent");
  object_class(cons_1102) = eul_static_cons_class;
  eul_car(cons_1102) = sym_1103;
  eul_cdr(cons_1102) = eul_nil;
  eul_intern_keyword(key_1104,"default");
  eul_intern_keyword(key_1105,"keyword");
  eul_intern_symbol(sym_1106,"lambda");
  eul_intern_keyword(key_1109,"accessor");
  eul_intern_keyword(key_1112,"reader");
  eul_intern_keyword(key_1114,"writer");
  object_class(cons_1113) = eul_static_cons_class;
  eul_car(cons_1113) = key_1114;
  eul_cdr(cons_1113) = eul_nil;
  object_class(cons_1111) = eul_static_cons_class;
  eul_car(cons_1111) = key_1112;
  object_class(cons_1110) = eul_static_cons_class;
  eul_car(cons_1110) = key_1105;
  object_class(cons_1108) = eul_static_cons_class;
  eul_car(cons_1108) = key_1109;
  object_class(cons_1107) = eul_static_cons_class;
  eul_car(cons_1107) = key_1104;
  eul_allocate_bytevector( G001098,G001097);
  eul_allocate_bytevector( G001116,G001115);
  eul_intern_symbol(sym_1119,"x");
  eul_intern_symbol(sym_1120,"i");
  eul_intern_symbol(sym_1121,"o");
  eul_intern_symbol(sym_1122,"?");
  eul_intern_symbol(sym_1123,"binding-ref");
  eul_intern_symbol(sym_1124,"primitive-relative-ref");
  eul_intern_symbol(sym_1125,"opencoded-lambda");
  eul_intern_symbol(sym_1126,"defun");
  eul_intern_symbol(sym_1127,"declare-inline");
  eul_allocate_bytevector( G001118,G001117);
  eul_intern_symbol(sym_1130,"get-global-register");
  eul_intern_symbol(sym_1131,"defconstant");
  eul_intern_symbol(sym_1132,"primitive-class-of");
  eul_intern_symbol(sym_1133,"setter");
  eul_intern_symbol(sym_1134,"<simple-class>");
  eul_intern_symbol(sym_1136,"<object>");
  object_class(cons_1135) = eul_static_cons_class;
  eul_car(cons_1135) = sym_1136;
  eul_cdr(cons_1135) = eul_nil;
  eul_intern_keyword(key_1137,"keywords");
  eul_intern_keyword(key_1140,"predicate");
  eul_intern_keyword(key_1142,"class");
  eul_intern_keyword(key_1144,"constructor");
  eul_intern_keyword(key_1146,"print-function");
  object_class(cons_1145) = eul_static_cons_class;
  eul_car(cons_1145) = key_1146;
  eul_cdr(cons_1145) = eul_nil;
  object_class(cons_1143) = eul_static_cons_class;
  eul_car(cons_1143) = key_1144;
  object_class(cons_1141) = eul_static_cons_class;
  eul_car(cons_1141) = key_1142;
  object_class(cons_1139) = eul_static_cons_class;
  eul_car(cons_1139) = key_1140;
  object_class(cons_1138) = eul_static_cons_class;
  eul_car(cons_1138) = key_1137;
  eul_intern_keyword(key_1147,"direct-keywords");
  eul_intern_keyword(key_1148,"direct-slots");
  eul_intern_keyword(key_1149,"direct-superclasses");
  eul_intern_symbol(sym_1150,"initialize");
  eul_intern_symbol(sym_1151,"progn");
  eul_allocate_bytevector( G001129,G001128);
  eul_allocate_bytevector( G001153,G001152);
  eul_intern_symbol(sym_1156,"anonymous");
  eul_allocate_bytevector( G001155,G001154);
  eul_intern_symbol(sym_1159,"v");
  eul_intern_symbol(sym_1160,"set-primitive-relative-ref");
  eul_allocate_bytevector( G001158,G001157);
  eul_intern_keyword(key_1163,"method");
  eul_intern_symbol(sym_1164,"defgeneric");
  eul_allocate_bytevector( G001162,G001161);
  eul_allocate_bytevector( G001166,G001165);
  eul_allocate_bytevector( G001168,G001167);
  eul_intern_symbol(sym_1171,"inits");
  eul_intern_symbol(sym_1172,"make");
  eul_intern_symbol(sym_1173,"apply");
  eul_allocate_bytevector( G001170,G001169);
  eul_allocate_bytevector( G001175,G001174);
  object_class(cons_1178) = eul_static_cons_class;
  eul_car(cons_1178) = sym_1136;
  eul_cdr(cons_1178) = eul_nil;
  object_class(cons_1183) = eul_static_cons_class;
  eul_car(cons_1183) = key_1146;
  eul_cdr(cons_1183) = eul_nil;
  object_class(cons_1182) = eul_static_cons_class;
  eul_car(cons_1182) = key_1144;
  object_class(cons_1181) = eul_static_cons_class;
  eul_car(cons_1181) = key_1142;
  object_class(cons_1180) = eul_static_cons_class;
  eul_car(cons_1180) = key_1140;
  object_class(cons_1179) = eul_static_cons_class;
  eul_car(cons_1179) = key_1137;
  eul_allocate_bytevector( G001177,G001176);
  eul_allocate_bytevector( G001185,G001184);
  eul_allocate_bytevector( G001187,G001186);
  eul_intern_symbol(sym_1190,"obj");
  eul_intern_symbol(sym_1191,"str");
  eul_intern_symbol(sym_1192,"generic-print");
  eul_intern_symbol(sym_1193,"defmethod");
  eul_allocate_bytevector( G001189,G001188);
  eul_intern_symbol(sym_1196,"do-printfn");
  eul_intern_symbol(sym_1197,"do-accessors");
  eul_intern_symbol(sym_1198,"defclass");
  eul_intern_symbol(sym_1199,"strip-<>");
  eul_intern_symbol(sym_1200,"do-constructors");
  eul_intern_symbol(sym_1201,"do-predicates");
  eul_intern_symbol(sym_1202,"do-writer");
  eul_intern_symbol(sym_1203,"find-slot-keywords");
  eul_intern_symbol(sym_1204,"defprimclass");
  eul_intern_symbol(sym_1205,"do-reader");
  eul_intern_symbol(sym_1206,"do-accessor");
  eul_intern_symbol(sym_1207,"do-direct-slotds");
  eul_allocate_bytevector( G001195,G001194);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 14; i++)
      mop_defcl0_bindings[i] = eul_nil;
  }

  mop_defcl0_bindings[ 14] = sym_1099;
  mop_defcl0_bindings[ 15] = key_1100;
  mop_defcl0_bindings[ 16] = sym_1101;
  mop_defcl0_bindings[ 17] = sym_1103;
  mop_defcl0_bindings[ 18] = cons_1102;
  mop_defcl0_bindings[ 19] = key_1104;
  mop_defcl0_bindings[ 20] = key_1105;
  mop_defcl0_bindings[ 21] = sym_1106;
  mop_defcl0_bindings[ 22] = key_1109;
  mop_defcl0_bindings[ 23] = key_1112;
  mop_defcl0_bindings[ 24] = key_1114;
  mop_defcl0_bindings[ 25] = cons_1107;
  mop_defcl0_bindings[ 26] = G001098;
  mop_defcl0_bindings[ 27] = G001116;
  mop_defcl0_bindings[ 28] = sym_1119;
  mop_defcl0_bindings[ 29] = sym_1120;
  mop_defcl0_bindings[ 30] = sym_1121;
  mop_defcl0_bindings[ 31] = sym_1122;
  mop_defcl0_bindings[ 32] = sym_1123;
  mop_defcl0_bindings[ 33] = sym_1124;
  mop_defcl0_bindings[ 34] = sym_1125;
  mop_defcl0_bindings[ 35] = sym_1126;
  mop_defcl0_bindings[ 36] = sym_1127;
  mop_defcl0_bindings[ 37] = G001118;
  mop_defcl0_bindings[ 38] = sym_1130;
  mop_defcl0_bindings[ 39] = sym_1131;
  mop_defcl0_bindings[ 40] = sym_1132;
  mop_defcl0_bindings[ 41] = sym_1133;
  mop_defcl0_bindings[ 42] = sym_1134;
  mop_defcl0_bindings[ 43] = sym_1136;
  mop_defcl0_bindings[ 44] = cons_1135;
  mop_defcl0_bindings[ 45] = key_1137;
  mop_defcl0_bindings[ 46] = key_1140;
  mop_defcl0_bindings[ 47] = key_1142;
  mop_defcl0_bindings[ 48] = key_1144;
  mop_defcl0_bindings[ 49] = key_1146;
  mop_defcl0_bindings[ 50] = cons_1138;
  mop_defcl0_bindings[ 51] = key_1147;
  mop_defcl0_bindings[ 52] = key_1148;
  mop_defcl0_bindings[ 53] = key_1149;
  mop_defcl0_bindings[ 54] = sym_1150;
  mop_defcl0_bindings[ 55] = sym_1151;
  mop_defcl0_bindings[ 56] = G001129;
  mop_defcl0_bindings[ 57] = G001153;
  mop_defcl0_bindings[ 58] = sym_1156;
  mop_defcl0_bindings[ 59] = G001155;
  mop_defcl0_bindings[ 60] = sym_1159;
  mop_defcl0_bindings[ 61] = sym_1160;
  mop_defcl0_bindings[ 62] = G001158;
  mop_defcl0_bindings[ 63] = key_1163;
  mop_defcl0_bindings[ 64] = sym_1164;
  mop_defcl0_bindings[ 65] = G001162;
  mop_defcl0_bindings[ 66] = G001166;
  mop_defcl0_bindings[ 67] = G001168;
  mop_defcl0_bindings[ 68] = sym_1171;
  mop_defcl0_bindings[ 69] = sym_1172;
  mop_defcl0_bindings[ 70] = sym_1173;
  mop_defcl0_bindings[ 71] = G001170;
  mop_defcl0_bindings[ 72] = G001175;
  mop_defcl0_bindings[ 73] = cons_1178;
  mop_defcl0_bindings[ 74] = cons_1179;
  mop_defcl0_bindings[ 75] = G001177;
  mop_defcl0_bindings[ 76] = G001185;
  mop_defcl0_bindings[ 77] = G001187;
  mop_defcl0_bindings[ 78] = sym_1190;
  mop_defcl0_bindings[ 79] = sym_1191;
  mop_defcl0_bindings[ 80] = sym_1192;
  mop_defcl0_bindings[ 81] = sym_1193;
  mop_defcl0_bindings[ 82] = G001189;
  mop_defcl0_bindings[ 1] = eul_nil;
  mop_defcl0_bindings[ 83] = sym_1196;
  mop_defcl0_bindings[ 84] = sym_1197;
  mop_defcl0_bindings[ 85] = sym_1198;
  mop_defcl0_bindings[ 86] = sym_1199;
  mop_defcl0_bindings[ 87] = sym_1200;
  mop_defcl0_bindings[ 88] = sym_1201;
  mop_defcl0_bindings[ 89] = sym_1202;
  mop_defcl0_bindings[ 90] = sym_1203;
  mop_defcl0_bindings[ 91] = sym_1204;
  mop_defcl0_bindings[ 92] = sym_1205;
  mop_defcl0_bindings[ 93] = sym_1206;
  mop_defcl0_bindings[ 94] = sym_1207;
  eul_allocate_lambda( mop_defcl0_bindings[0], "initialize-mop-defcl0", 0, G001195);

  }
}
Example #13
0
/* Initialize module sx-obj2 */
void initialize_module_sx_obj2()
{
  if (is_initialized) return;
  initialize_module_i_level_1();
  initialize_module_sx_obj1();
  eul_fast_table_set(eul_modules,"sx_obj2",(LispRef) sx_obj2_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_1793, sym_1792, sym_1791, sym_1790, sym_1789, sym_1788, sym_1787, sym_1786, sym_1785, sym_1784, sym_1783, sym_1782, sym_1781, sym_1780, sym_1779, sym_1778, sym_1777, sym_1776, sym_1775, sym_1774, sym_1773, sym_1772, sym_1771, G001770, G001768, G001766, G001764, G001762, G001760, G001758, G001756, G001754, G001752, G001750, G001748, G001746, G001744, G001742, G001740, G001738, G001736, G001734, G001732, G001730, G001728, G001726, sym_1724, sym_1723, sym_1722, sym_1721, sym_1720, sym_1719, sym_1718, sym_1717, sym_1716, sym_1715, sym_1714, sym_1713, sym_1712, sym_1711, sym_1710, sym_1709, sym_1708, sym_1707, sym_1706, sym_1703, sym_1701, sym_1698, key_1697, sym_1696, sym_1695, sym_1694, sym_1691, key_1690, sym_1689, key_1688, sym_1687, sym_1686, key_1681, key_1680, key_1679, sym_1678, key_1677, sym_1676, key_1675, sym_1674, key_1673, sym_1672, key_1671, sym_1670, key_1669, sym_1668, key_1667, G001666, G001664, G001662, G001660, G001658, G001656, G001654, G001652, G001650, G001648, G001646, G001644, G001642, G001640, G001638, G001636, G001634, G001632, G001630, G001628, G001626, G001624, G001622, G001620, G001618, G001616, G001614, G001612, G001610, G001608;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 1 is_init: 0 index: 42 binding: (method-literal-const?) */
  static const void *G001607[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 43 binding: (method-literal-const?) */
  static const void *G001609[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 44 binding: (method-named-const?) */
  static const void *G001611[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 45 binding: (method-named-const?) */
  static const void *G001613[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 46 binding: (method-const?) */
  static const void *G001615[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 47 binding: (method-const?) */
  static const void *G001617[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 48 binding: (method-setq?) */
  static const void *G001619[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 49 binding: (method-setq?) */
  static const void *G001621[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 50 binding: (method-global-static-var?) */
  static const void *G001623[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 51 binding: (method-global-static-var?) */
  static const void *G001625[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 52 binding: (method-global-var?) */
  static const void *G001627[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 53 binding: (method-global-var?) */
  static const void *G001629[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 54 binding: (method-local-static-var?) */
  static const void *G001631[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 55 binding: (method-local-static-var?) */
  static const void *G001633[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 56 binding: (method-local-var?) */
  static const void *G001635[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 57 binding: (method-local-var?) */
  static const void *G001637[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 58 binding: (method-var?) */
  static const void *G001639[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 59 binding: (method-var?) */
  static const void *G001641[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 60 binding: anonymous */
  static const void *G001643[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 61 binding: anonymous */
  static const void *G001645[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 62 binding: anonymous */
  static const void *G001647[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 63 binding: anonymous */
  static const void *G001649[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 64 binding: anonymous */
  static const void *G001651[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 65 binding: anonymous */
  static const void *G001653[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 66 binding: anonymous */
  static const void *G001655[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 67 binding: anonymous */
  static const void *G001657[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 68 binding: anonymous */
  static const void *G001659[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 69 binding: anonymous */
  static const void *G001661[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 70 binding: anonymous */
  static const void *G001663[] = {I(a9,86,45,00)};

  eul_allocate_static_cons(cons_1685, NULL, NULL);
  eul_allocate_static_cons(cons_1684, NULL, eul_as_static(cons_1685));
  eul_allocate_static_cons(cons_1683, NULL, eul_as_static(cons_1684));
  eul_allocate_static_cons(cons_1682, NULL, eul_as_static(cons_1683));
  eul_allocate_static_cons(cons_1693, NULL, NULL);
  eul_allocate_static_cons(cons_1692, NULL, eul_as_static(cons_1693));
  eul_allocate_static_cons(cons_1700, NULL, NULL);
  eul_allocate_static_cons(cons_1699, NULL, eul_as_static(cons_1700));
  eul_allocate_static_cons(cons_1702, NULL, NULL);
  eul_allocate_static_cons(cons_1705, NULL, NULL);
  eul_allocate_static_cons(cons_1704, NULL, eul_as_static(cons_1705));
  /* Byte-vector with size: 1065 is_init: 0 index: 123 binding: top-level */
  static const void *G001665[] = {I(a9,24,00,00),B(sx_obj1 ,3),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,72),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,70),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,71),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,76),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,69),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,77),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,78),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,68),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,79),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,80),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,67),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,81),I(24,00,00,00),B(boot1 ,26),I(3c,06,1f,03),I(1f,03,1f,03),I(1f,03,24,00),B(boot1 ,26),I(3c,04,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,82),I(23,00,00,00),B(sx_obj2 ,83),I(1f,09,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(23,00,00,00),B(sx_obj2 ,86),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,11),I(2a,24,00,00),B(sx_obj2 ,11),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,87),I(23,00,00,00),B(sx_obj2 ,83),I(1f,05,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,24),I(2a,24,00,00),B(sx_obj2 ,24),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,88),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,66),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,89),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,90),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,65),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,91),I(24,00,00,00),B(boot1 ,26),I(3c,06,1c,1c),I(24,00,00,00),B(boot1 ,26),I(3c,02,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,92),I(23,00,00,00),B(sx_obj2 ,83),I(1f,07,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(23,00,00,00),B(sx_obj2 ,93),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,9),I(2a,24,00,00),B(sx_obj2 ,11),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,94),I(23,00,00,00),B(sx_obj2 ,83),I(1f,05,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,7),I(2a,24,00,00),B(sx_obj2 ,7),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,95),I(23,00,00,00),B(sx_obj2 ,83),I(1f,05,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,28),I(2a,24,00,00),B(sx_obj1 ,3),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,76),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,64),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,77),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,96),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,63),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,97),I(24,00,00,00),B(boot1 ,26),I(3c,06,1c,1c),I(24,00,00,00),B(boot1 ,26),I(3c,02,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,98),I(23,00,00,00),B(sx_obj2 ,83),I(1f,07,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(23,00,00,00),B(sx_obj2 ,99),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,25),I(2a,24,00,00),B(sx_obj1 ,27),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,78),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,62),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,79),I(24,00,00,00),B(boot1 ,26),I(3c,06,1b,24),B(boot1 ,26),I(3c,01,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,100),I(23,00,00,00),B(sx_obj2 ,83),I(1f,06,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(23,00,00,00),B(sx_obj2 ,101),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,29),I(2a,24,00,00),B(sx_obj2 ,29),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,72),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,61),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,71),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,76),I(23,00,00,00),B(sx_obj2 ,73),I(23,00,00,00),B(sx_obj2 ,74),I(23,00,00,00),B(sx_obj2 ,60),I(3b,00,23,00),B(sx_obj2 ,75),I(23,00,00,00),B(sx_obj2 ,77),I(24,00,00,00),B(boot1 ,26),I(3c,06,1c,1c),I(24,00,00,00),B(boot1 ,26),I(3c,02,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,102),I(23,00,00,00),B(sx_obj2 ,83),I(1f,07,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(23,00,00,00),B(sx_obj2 ,103),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,22),I(2a,24,00,00),B(sx_obj2 ,29),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj2 ,71),I(23,00,00,00),B(sx_obj2 ,104),I(23,00,00,00),B(sx_obj2 ,83),I(1f,05,23,00),B(sx_obj2 ,84),I(1f,06,23,00),B(sx_obj2 ,85),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj2 ,32),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,105),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,33),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,106),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,40),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,107),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,18),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,108),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,3),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,109),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,31),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,110),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,4),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,111),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,17),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,112),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,12),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj2 ,113),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj2 ,14),I(2a,24,00,00),B(sx_obj2 ,33),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,33),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,114),I(23,00,00,00),B(sx_obj2 ,59),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,33),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,33),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,11),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,33),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,114),I(23,00,00,00),B(sx_obj2 ,58),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,33),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,33),I(2a,24,00,00),B(sx_obj2 ,11),I(2a,24,00,00),B(sx_obj2 ,40),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,40),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,115),I(23,00,00,00),B(sx_obj2 ,57),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,40),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,40),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,24),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,40),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,115),I(23,00,00,00),B(sx_obj2 ,56),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,40),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,40),I(2a,24,00,00),B(sx_obj2 ,24),I(2a,24,00,00),B(sx_obj2 ,18),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,18),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,116),I(23,00,00,00),B(sx_obj2 ,55),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,18),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,18),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,9),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,18),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,116),I(23,00,00,00),B(sx_obj2 ,54),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,18),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,18),I(2a,24,00,00),B(sx_obj2 ,9),I(2a,24,00,00),B(sx_obj2 ,3),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,3),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,117),I(23,00,00,00),B(sx_obj2 ,53),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,3),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,3),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,7),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,3),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,117),I(23,00,00,00),B(sx_obj2 ,52),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,3),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,3),I(2a,24,00,00),B(sx_obj2 ,7),I(2a,24,00,00),B(sx_obj2 ,31),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,118),I(23,00,00,00),B(sx_obj2 ,51),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,31),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,28),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,118),I(23,00,00,00),B(sx_obj2 ,50),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,31),I(2a,24,00,00),B(sx_obj2 ,28),I(2a,24,00,00),B(sx_obj2 ,4),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,4),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,119),I(23,00,00,00),B(sx_obj2 ,49),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,4),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,4),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,25),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,4),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,119),I(23,00,00,00),B(sx_obj2 ,48),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,4),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,4),I(2a,24,00,00),B(sx_obj2 ,25),I(2a,24,00,00),B(sx_obj2 ,17),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,17),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,120),I(23,00,00,00),B(sx_obj2 ,47),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,17),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,17),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,29),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,17),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,120),I(23,00,00,00),B(sx_obj2 ,46),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,17),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,17),I(2a,24,00,00),B(sx_obj2 ,29),I(2a,24,00,00),B(sx_obj2 ,12),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,12),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,121),I(23,00,00,00),B(sx_obj2 ,45),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,12),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,12),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,12),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,121),I(23,00,00,00),B(sx_obj2 ,44),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,12),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,12),I(2a,24,00,00),B(sx_obj2 ,22),I(2a,24,00,00),B(sx_obj2 ,14),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,14),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,122),I(23,00,00,00),B(sx_obj2 ,43),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,14),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,14),I(8a,03,02,83),I(24,00,00,00),B(sx_obj2 ,32),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj2 ,14),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj2 ,122),I(23,00,00,00),B(sx_obj2 ,42),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj2 ,14),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj2 ,14),I(2a,24,00,00),B(sx_obj2 ,32),I(45,b6,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 124 binding: setq-binding! */
  static const void *G001725[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj2 ,25),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 125 binding: var-value! */
  static const void *G001727[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj2 ,11),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 126 binding: setq-obj? */
  static const void *G001729[] = {I(aa,82,24,00),B(sx_obj2 ,25),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 127 binding: local-static-var-lambda! */
  static const void *G001731[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj2 ,9),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 128 binding: var-name? */
  static const void *G001733[] = {I(aa,8a,03,24),B(sx_obj2 ,11),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 129 binding: named-const-name? */
  static const void *G001735[] = {I(aa,83,24,00),B(sx_obj2 ,22),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 130 binding: var-used? */
  static const void *G001737[] = {I(aa,82,24,00),B(sx_obj2 ,11),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 131 binding: named-const-name! */
  static const void *G001739[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj2 ,22),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 132 binding: const-value? */
  static const void *G001741[] = {I(aa,82,24,00),B(sx_obj2 ,29),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 133 binding: setq-obj! */
  static const void *G001743[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj2 ,25),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 134 binding: var-binding! */
  static const void *G001745[] = {I(ab,1c,84,1d),I(24,00,00,00),B(sx_obj2 ,11),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 135 binding: local-static-var-captured? */
  static const void *G001747[] = {I(aa,82,24,00),B(sx_obj2 ,9),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 136 binding: var-used! */
  static const void *G001749[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj2 ,11),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 137 binding: const-value! */
  static const void *G001751[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj2 ,29),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 138 binding: var-name! */
  static const void *G001753[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(sx_obj2 ,11),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 139 binding: var-value? */
  static const void *G001755[] = {I(aa,83,24,00),B(sx_obj2 ,11),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 140 binding: setq-binding? */
  static const void *G001757[] = {I(aa,83,24,00),B(sx_obj2 ,25),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 141 binding: local-static-var-captured! */
  static const void *G001759[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj2 ,9),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 142 binding: var-binding? */
  static const void *G001761[] = {I(aa,84,24,00),B(sx_obj2 ,11),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 143 binding: named-const-binding? */
  static const void *G001763[] = {I(aa,82,24,00),B(sx_obj2 ,22),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 144 binding: local-static-var-lambda? */
  static const void *G001765[] = {I(aa,83,24,00),B(sx_obj2 ,9),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 145 binding: named-const-binding! */
  static const void *G001767[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj2 ,22),I(09,45,02,00)};

  /* Byte-vector with size: 186 is_init: 1 index: 0 binding: initialize-sx-obj2 */
  static const void *G001769[] = {I(87,25,00,00),B(sx_obj2 ,1),I(24,00,00,00),B(sx_obj1 ,1),I(3e,0b,24,00),B(sx_obj1 ,0),I(3c,00,21,01),I(24,00,00,00),B(i_level_1 ,1),I(3e,0b,24,00),B(i_level_1 ,0),I(3c,00,21,01),I(23,00,00,00),B(sx_obj2 ,146),I(23,00,00,00),B(sx_obj2 ,145),I(3b,02,25,00),B(sx_obj2 ,41),I(86,25,00,00),B(sx_obj2 ,40),I(23,00,00,00),B(sx_obj2 ,147),I(23,00,00,00),B(sx_obj2 ,144),I(3b,01,25,00),B(sx_obj2 ,39),I(23,00,00,00),B(sx_obj2 ,148),I(23,00,00,00),B(sx_obj2 ,143),I(3b,01,25,00),B(sx_obj2 ,38),I(23,00,00,00),B(sx_obj2 ,149),I(23,00,00,00),B(sx_obj2 ,142),I(3b,01,25,00),B(sx_obj2 ,37),I(23,00,00,00),B(sx_obj2 ,150),I(23,00,00,00),B(sx_obj2 ,141),I(3b,02,25,00),B(sx_obj2 ,36),I(23,00,00,00),B(sx_obj2 ,151),I(23,00,00,00),B(sx_obj2 ,140),I(3b,01,25,00),B(sx_obj2 ,35),I(23,00,00,00),B(sx_obj2 ,152),I(23,00,00,00),B(sx_obj2 ,139),I(3b,01,25,00),B(sx_obj2 ,34),I(86,25,00,00),B(sx_obj2 ,33),I(86,25,00,00),B(sx_obj2 ,32),I(86,25,00,00),B(sx_obj2 ,31),I(23,00,00,00),B(sx_obj2 ,153),I(23,00,00,00),B(sx_obj2 ,138),I(3b,02,25,00),B(sx_obj2 ,30),I(86,25,00,00),B(sx_obj2 ,29),I(86,25,00,00),B(sx_obj2 ,28),I(23,00,00,00),B(sx_obj2 ,154),I(23,00,00,00),B(sx_obj2 ,137),I(3b,02,25,00),B(sx_obj2 ,27),I(23,00,00,00),B(sx_obj2 ,155),I(23,00,00,00),B(sx_obj2 ,136),I(3b,02,25,00),B(sx_obj2 ,26),I(86,25,00,00),B(sx_obj2 ,25),I(86,25,00,00),B(sx_obj2 ,24),I(23,00,00,00),B(sx_obj2 ,156),I(23,00,00,00),B(sx_obj2 ,135),I(3b,01,25,00),B(sx_obj2 ,23),I(86,25,00,00),B(sx_obj2 ,22),I(23,00,00,00),B(sx_obj2 ,157),I(23,00,00,00),B(sx_obj2 ,134),I(3b,02,25,00),B(sx_obj2 ,21),I(23,00,00,00),B(sx_obj2 ,158),I(23,00,00,00),B(sx_obj2 ,133),I(3b,02,25,00),B(sx_obj2 ,20),I(23,00,00,00),B(sx_obj2 ,159),I(23,00,00,00),B(sx_obj2 ,132),I(3b,01,25,00),B(sx_obj2 ,19),I(86,25,00,00),B(sx_obj2 ,18),I(86,25,00,00),B(sx_obj2 ,17),I(23,00,00,00),B(sx_obj2 ,160),I(23,00,00,00),B(sx_obj2 ,131),I(3b,02,25,00),B(sx_obj2 ,16),I(23,00,00,00),B(sx_obj2 ,161),I(23,00,00,00),B(sx_obj2 ,130),I(3b,01,25,00),B(sx_obj2 ,15),I(86,25,00,00),B(sx_obj2 ,14),I(23,00,00,00),B(sx_obj2 ,162),I(23,00,00,00),B(sx_obj2 ,129),I(3b,01,25,00),B(sx_obj2 ,13),I(86,25,00,00),B(sx_obj2 ,12),I(86,25,00,00),B(sx_obj2 ,11),I(23,00,00,00),B(sx_obj2 ,163),I(23,00,00,00),B(sx_obj2 ,128),I(3b,01,25,00),B(sx_obj2 ,10),I(86,25,00,00),B(sx_obj2 ,9),I(23,00,00,00),B(sx_obj2 ,164),I(23,00,00,00),B(sx_obj2 ,127),I(3b,02,25,00),B(sx_obj2 ,8),I(86,25,00,00),B(sx_obj2 ,7),I(23,00,00,00),B(sx_obj2 ,165),I(23,00,00,00),B(sx_obj2 ,126),I(3b,01,25,00),B(sx_obj2 ,6),I(23,00,00,00),B(sx_obj2 ,166),I(23,00,00,00),B(sx_obj2 ,125),I(3b,02,25,00),B(sx_obj2 ,5),I(86,25,00,00),B(sx_obj2 ,4),I(86,25,00,00),B(sx_obj2 ,3),I(23,00,00,00),B(sx_obj2 ,167),I(23,00,00,00),B(sx_obj2 ,124),I(3b,02,25,00),B(sx_obj2 ,2),I(23,00,00,00),B(sx_obj2 ,168),I(23,00,00,00),B(sx_obj2 ,123),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G001608,G001607);
  eul_allocate_bytevector( G001610,G001609);
  eul_allocate_bytevector( G001612,G001611);
  eul_allocate_bytevector( G001614,G001613);
  eul_allocate_bytevector( G001616,G001615);
  eul_allocate_bytevector( G001618,G001617);
  eul_allocate_bytevector( G001620,G001619);
  eul_allocate_bytevector( G001622,G001621);
  eul_allocate_bytevector( G001624,G001623);
  eul_allocate_bytevector( G001626,G001625);
  eul_allocate_bytevector( G001628,G001627);
  eul_allocate_bytevector( G001630,G001629);
  eul_allocate_bytevector( G001632,G001631);
  eul_allocate_bytevector( G001634,G001633);
  eul_allocate_bytevector( G001636,G001635);
  eul_allocate_bytevector( G001638,G001637);
  eul_allocate_bytevector( G001640,G001639);
  eul_allocate_bytevector( G001642,G001641);
  eul_allocate_bytevector( G001644,G001643);
  eul_allocate_bytevector( G001646,G001645);
  eul_allocate_bytevector( G001648,G001647);
  eul_allocate_bytevector( G001650,G001649);
  eul_allocate_bytevector( G001652,G001651);
  eul_allocate_bytevector( G001654,G001653);
  eul_allocate_bytevector( G001656,G001655);
  eul_allocate_bytevector( G001658,G001657);
  eul_allocate_bytevector( G001660,G001659);
  eul_allocate_bytevector( G001662,G001661);
  eul_allocate_bytevector( G001664,G001663);
  eul_intern_keyword(key_1667,"name");
  eul_intern_symbol(sym_1668,"name");
  eul_intern_keyword(key_1669,"default");
  eul_intern_symbol(sym_1670,"anonymous");
  eul_intern_keyword(key_1671,"keyword");
  eul_intern_symbol(sym_1672,"binding");
  eul_intern_keyword(key_1673,"binding");
  eul_intern_symbol(sym_1674,"value");
  eul_intern_keyword(key_1675,"value");
  eul_intern_symbol(sym_1676,"used");
  eul_intern_keyword(key_1677,"used");
  eul_intern_symbol(sym_1678,"var");
  eul_intern_keyword(key_1679,"direct-superclasses");
  eul_intern_keyword(key_1680,"direct-slots");
  eul_intern_keyword(key_1681,"direct-keywords");
  object_class(cons_1685) = eul_static_cons_class;
  eul_car(cons_1685) = key_1667;
  eul_cdr(cons_1685) = eul_nil;
  object_class(cons_1684) = eul_static_cons_class;
  eul_car(cons_1684) = key_1673;
  object_class(cons_1683) = eul_static_cons_class;
  eul_car(cons_1683) = key_1675;
  object_class(cons_1682) = eul_static_cons_class;
  eul_car(cons_1682) = key_1677;
  eul_intern_symbol(sym_1686,"local-var");
  eul_intern_symbol(sym_1687,"lambda");
  eul_intern_keyword(key_1688,"lambda");
  eul_intern_symbol(sym_1689,"captured");
  eul_intern_keyword(key_1690,"captured");
  eul_intern_symbol(sym_1691,"local-static-var");
  object_class(cons_1693) = eul_static_cons_class;
  eul_car(cons_1693) = key_1688;
  eul_cdr(cons_1693) = eul_nil;
  object_class(cons_1692) = eul_static_cons_class;
  eul_car(cons_1692) = key_1690;
  eul_intern_symbol(sym_1694,"global-var");
  eul_intern_symbol(sym_1695,"global-static-var");
  eul_intern_symbol(sym_1696,"obj");
  eul_intern_keyword(key_1697,"obj");
  eul_intern_symbol(sym_1698,"setq");
  object_class(cons_1700) = eul_static_cons_class;
  eul_car(cons_1700) = key_1673;
  eul_cdr(cons_1700) = eul_nil;
  object_class(cons_1699) = eul_static_cons_class;
  eul_car(cons_1699) = key_1697;
  eul_intern_symbol(sym_1701,"const");
  object_class(cons_1702) = eul_static_cons_class;
  eul_car(cons_1702) = key_1675;
  eul_cdr(cons_1702) = eul_nil;
  eul_intern_symbol(sym_1703,"named-const");
  object_class(cons_1705) = eul_static_cons_class;
  eul_car(cons_1705) = key_1667;
  eul_cdr(cons_1705) = eul_nil;
  object_class(cons_1704) = eul_static_cons_class;
  eul_car(cons_1704) = key_1673;
  eul_intern_symbol(sym_1706,"literal-const");
  eul_intern_symbol(sym_1707,"var?");
  eul_intern_symbol(sym_1708,"local-var?");
  eul_intern_symbol(sym_1709,"local-static-var?");
  eul_intern_symbol(sym_1710,"global-var?");
  eul_intern_symbol(sym_1711,"global-static-var?");
  eul_intern_symbol(sym_1712,"setq?");
  eul_intern_symbol(sym_1713,"const?");
  eul_intern_symbol(sym_1714,"named-const?");
  eul_intern_symbol(sym_1715,"literal-const?");
  eul_intern_symbol(sym_1716,"(method var?)");
  eul_intern_symbol(sym_1717,"(method local-var?)");
  eul_intern_symbol(sym_1718,"(method local-static-var?)");
  eul_intern_symbol(sym_1719,"(method global-var?)");
  eul_intern_symbol(sym_1720,"(method global-static-var?)");
  eul_intern_symbol(sym_1721,"(method setq?)");
  eul_intern_symbol(sym_1722,"(method const?)");
  eul_intern_symbol(sym_1723,"(method named-const?)");
  eul_intern_symbol(sym_1724,"(method literal-const?)");
  eul_allocate_bytevector( G001666,G001665);
  eul_allocate_bytevector( G001726,G001725);
  eul_allocate_bytevector( G001728,G001727);
  eul_allocate_bytevector( G001730,G001729);
  eul_allocate_bytevector( G001732,G001731);
  eul_allocate_bytevector( G001734,G001733);
  eul_allocate_bytevector( G001736,G001735);
  eul_allocate_bytevector( G001738,G001737);
  eul_allocate_bytevector( G001740,G001739);
  eul_allocate_bytevector( G001742,G001741);
  eul_allocate_bytevector( G001744,G001743);
  eul_allocate_bytevector( G001746,G001745);
  eul_allocate_bytevector( G001748,G001747);
  eul_allocate_bytevector( G001750,G001749);
  eul_allocate_bytevector( G001752,G001751);
  eul_allocate_bytevector( G001754,G001753);
  eul_allocate_bytevector( G001756,G001755);
  eul_allocate_bytevector( G001758,G001757);
  eul_allocate_bytevector( G001760,G001759);
  eul_allocate_bytevector( G001762,G001761);
  eul_allocate_bytevector( G001764,G001763);
  eul_allocate_bytevector( G001766,G001765);
  eul_allocate_bytevector( G001768,G001767);
  eul_intern_symbol(sym_1771,"named-const-binding!");
  eul_intern_symbol(sym_1772,"local-static-var-lambda?");
  eul_intern_symbol(sym_1773,"named-const-binding?");
  eul_intern_symbol(sym_1774,"var-binding?");
  eul_intern_symbol(sym_1775,"local-static-var-captured!");
  eul_intern_symbol(sym_1776,"setq-binding?");
  eul_intern_symbol(sym_1777,"var-value?");
  eul_intern_symbol(sym_1778,"var-name!");
  eul_intern_symbol(sym_1779,"const-value!");
  eul_intern_symbol(sym_1780,"var-used!");
  eul_intern_symbol(sym_1781,"local-static-var-captured?");
  eul_intern_symbol(sym_1782,"var-binding!");
  eul_intern_symbol(sym_1783,"setq-obj!");
  eul_intern_symbol(sym_1784,"const-value?");
  eul_intern_symbol(sym_1785,"named-const-name!");
  eul_intern_symbol(sym_1786,"var-used?");
  eul_intern_symbol(sym_1787,"named-const-name?");
  eul_intern_symbol(sym_1788,"var-name?");
  eul_intern_symbol(sym_1789,"local-static-var-lambda!");
  eul_intern_symbol(sym_1790,"setq-obj?");
  eul_intern_symbol(sym_1791,"var-value!");
  eul_intern_symbol(sym_1792,"setq-binding!");
  eul_intern_symbol(sym_1793,"top-level");
  eul_allocate_bytevector( G001770,G001769);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 42; i++)
      sx_obj2_bindings[i] = eul_nil;
  }

  sx_obj2_bindings[ 42] = G001608;
  sx_obj2_bindings[ 43] = G001610;
  sx_obj2_bindings[ 44] = G001612;
  sx_obj2_bindings[ 45] = G001614;
  sx_obj2_bindings[ 46] = G001616;
  sx_obj2_bindings[ 47] = G001618;
  sx_obj2_bindings[ 48] = G001620;
  sx_obj2_bindings[ 49] = G001622;
  sx_obj2_bindings[ 50] = G001624;
  sx_obj2_bindings[ 51] = G001626;
  sx_obj2_bindings[ 52] = G001628;
  sx_obj2_bindings[ 53] = G001630;
  sx_obj2_bindings[ 54] = G001632;
  sx_obj2_bindings[ 55] = G001634;
  sx_obj2_bindings[ 56] = G001636;
  sx_obj2_bindings[ 57] = G001638;
  sx_obj2_bindings[ 58] = G001640;
  sx_obj2_bindings[ 59] = G001642;
  sx_obj2_bindings[ 60] = G001644;
  sx_obj2_bindings[ 61] = G001646;
  sx_obj2_bindings[ 62] = G001648;
  sx_obj2_bindings[ 63] = G001650;
  sx_obj2_bindings[ 64] = G001652;
  sx_obj2_bindings[ 65] = G001654;
  sx_obj2_bindings[ 66] = G001656;
  sx_obj2_bindings[ 67] = G001658;
  sx_obj2_bindings[ 68] = G001660;
  sx_obj2_bindings[ 69] = G001662;
  sx_obj2_bindings[ 70] = G001664;
  sx_obj2_bindings[ 71] = key_1667;
  sx_obj2_bindings[ 72] = sym_1668;
  sx_obj2_bindings[ 73] = key_1669;
  sx_obj2_bindings[ 74] = sym_1670;
  sx_obj2_bindings[ 75] = key_1671;
  sx_obj2_bindings[ 76] = sym_1672;
  sx_obj2_bindings[ 77] = key_1673;
  sx_obj2_bindings[ 78] = sym_1674;
  sx_obj2_bindings[ 79] = key_1675;
  sx_obj2_bindings[ 80] = sym_1676;
  sx_obj2_bindings[ 81] = key_1677;
  sx_obj2_bindings[ 82] = sym_1678;
  sx_obj2_bindings[ 83] = key_1679;
  sx_obj2_bindings[ 84] = key_1680;
  sx_obj2_bindings[ 85] = key_1681;
  sx_obj2_bindings[ 86] = cons_1682;
  sx_obj2_bindings[ 87] = sym_1686;
  sx_obj2_bindings[ 88] = sym_1687;
  sx_obj2_bindings[ 89] = key_1688;
  sx_obj2_bindings[ 90] = sym_1689;
  sx_obj2_bindings[ 91] = key_1690;
  sx_obj2_bindings[ 92] = sym_1691;
  sx_obj2_bindings[ 93] = cons_1692;
  sx_obj2_bindings[ 94] = sym_1694;
  sx_obj2_bindings[ 95] = sym_1695;
  sx_obj2_bindings[ 96] = sym_1696;
  sx_obj2_bindings[ 97] = key_1697;
  sx_obj2_bindings[ 98] = sym_1698;
  sx_obj2_bindings[ 99] = cons_1699;
  sx_obj2_bindings[ 100] = sym_1701;
  sx_obj2_bindings[ 101] = cons_1702;
  sx_obj2_bindings[ 102] = sym_1703;
  sx_obj2_bindings[ 103] = cons_1704;
  sx_obj2_bindings[ 104] = sym_1706;
  sx_obj2_bindings[ 105] = sym_1707;
  sx_obj2_bindings[ 106] = sym_1708;
  sx_obj2_bindings[ 107] = sym_1709;
  sx_obj2_bindings[ 108] = sym_1710;
  sx_obj2_bindings[ 109] = sym_1711;
  sx_obj2_bindings[ 110] = sym_1712;
  sx_obj2_bindings[ 111] = sym_1713;
  sx_obj2_bindings[ 112] = sym_1714;
  sx_obj2_bindings[ 113] = sym_1715;
  sx_obj2_bindings[ 114] = sym_1716;
  sx_obj2_bindings[ 115] = sym_1717;
  sx_obj2_bindings[ 116] = sym_1718;
  sx_obj2_bindings[ 117] = sym_1719;
  sx_obj2_bindings[ 118] = sym_1720;
  sx_obj2_bindings[ 119] = sym_1721;
  sx_obj2_bindings[ 120] = sym_1722;
  sx_obj2_bindings[ 121] = sym_1723;
  sx_obj2_bindings[ 122] = sym_1724;
  sx_obj2_bindings[ 123] = G001666;
  sx_obj2_bindings[ 124] = G001726;
  sx_obj2_bindings[ 125] = G001728;
  sx_obj2_bindings[ 126] = G001730;
  sx_obj2_bindings[ 127] = G001732;
  sx_obj2_bindings[ 128] = G001734;
  sx_obj2_bindings[ 129] = G001736;
  sx_obj2_bindings[ 130] = G001738;
  sx_obj2_bindings[ 131] = G001740;
  sx_obj2_bindings[ 132] = G001742;
  sx_obj2_bindings[ 133] = G001744;
  sx_obj2_bindings[ 134] = G001746;
  sx_obj2_bindings[ 135] = G001748;
  sx_obj2_bindings[ 136] = G001750;
  sx_obj2_bindings[ 137] = G001752;
  sx_obj2_bindings[ 138] = G001754;
  sx_obj2_bindings[ 139] = G001756;
  sx_obj2_bindings[ 140] = G001758;
  sx_obj2_bindings[ 141] = G001760;
  sx_obj2_bindings[ 142] = G001762;
  sx_obj2_bindings[ 143] = G001764;
  sx_obj2_bindings[ 144] = G001766;
  sx_obj2_bindings[ 145] = G001768;
  sx_obj2_bindings[ 1] = eul_nil;
  sx_obj2_bindings[ 146] = sym_1771;
  sx_obj2_bindings[ 147] = sym_1772;
  sx_obj2_bindings[ 148] = sym_1773;
  sx_obj2_bindings[ 149] = sym_1774;
  sx_obj2_bindings[ 150] = sym_1775;
  sx_obj2_bindings[ 151] = sym_1776;
  sx_obj2_bindings[ 152] = sym_1777;
  sx_obj2_bindings[ 153] = sym_1778;
  sx_obj2_bindings[ 154] = sym_1779;
  sx_obj2_bindings[ 155] = sym_1780;
  sx_obj2_bindings[ 156] = sym_1781;
  sx_obj2_bindings[ 157] = sym_1782;
  sx_obj2_bindings[ 158] = sym_1783;
  sx_obj2_bindings[ 159] = sym_1784;
  sx_obj2_bindings[ 160] = sym_1785;
  sx_obj2_bindings[ 161] = sym_1786;
  sx_obj2_bindings[ 162] = sym_1787;
  sx_obj2_bindings[ 163] = sym_1788;
  sx_obj2_bindings[ 164] = sym_1789;
  sx_obj2_bindings[ 165] = sym_1790;
  sx_obj2_bindings[ 166] = sym_1791;
  sx_obj2_bindings[ 167] = sym_1792;
  sx_obj2_bindings[ 168] = sym_1793;
  eul_allocate_lambda( sx_obj2_bindings[0], "initialize-sx-obj2", 0, G001770);

  }
}
Example #14
0
/* Initialize module mop-meth0 */
void initialize_module_mop_meth0()
{
    if (is_initialized) return;
    initialize_module_level_1();
    eul_fast_table_set(eul_modules,"mop_meth0",(LispRef) mop_meth0_bindings);
    is_initialized = 1;
    {
        /* Declarations */
        LispRef sym_452, sym_451, sym_450, sym_449, sym_448, sym_447, sym_446, G00445, sym_443, sym_442, G00441, G00439, G00437, G00435, sym_433, sym_432, G00431, sym_429, sym_428, sym_427, sym_426, sym_425, sym_423, G00421, G00419, sym_417, sym_416, sym_415, sym_414, sym_413, key_412, G00410, G00408;

        /* Code vector and literal definitions */
        /* Byte-vector with size: 26 is_init: 0 index: 11 binding: defmethod-args */
        static const void *G00407[] = {I(aa,1b,12,1b),I(34,00,00,00),I(00,00,00,10),I(86,32,00,00),I(00,00,00,56),I(1c,7a,12,1b),I(34,00,00,00),I(00,00,00,10),I(1d,32,00,00),I(00,00,00,40),I(1d,10,7a,12),I(1b,34,00,00),I(00,00,00,1f),I(1f,03,10,1f),I(04,11,1b,24),B(mop_meth0 ,2),I(3c,01,1d,1c),I(0f,22,03,32),I(00,00,00,18),I(1f,03,72,1f),I(04,11,1b,24),B(mop_meth0 ,2),I(3c,01,1d,1c),I(0f,22,03,22),I(01,22,01,45),I(02,00,00,00)};

        eul_allocate_static_cons(cons_411, NULL, NULL);
        /* Byte-vector with size: 39 is_init: 0 index: 19 binding: method-lambda */
        static const void *G00409[] = {I(a8,1b,24,00),B(mop_meth0 ,9),I(3c,01,1c,24),B(mop_meth0 ,8),I(3c,01,1d,24),B(mop_meth0 ,7),I(3c,01,1d,23),B(mop_meth0 ,13),I(24,00,00,00),B(mop_key ,3),I(3c,02,23,00),B(mop_meth0 ,12),I(1f,04,23,00),B(mop_meth0 ,14),I(24,00,00,00),B(mop_key ,2),I(3c,03,1f,03),I(24,00,00,00),B(mop_meth0 ,2),I(3c,01,1f,04),I(24,00,00,00),B(mop_meth0 ,4),I(3c,01,1b,24),B(collect ,9),I(3c,01,1b,1d),I(0f,23,00,00),B(mop_meth0 ,15),I(1c,0f,1f,04),I(1f,08,0f,23),B(mop_meth0 ,16),I(1c,0f,23,00),B(mop_meth0 ,17),I(1f,09,0f,1b),I(86,0f,1d,1c),I(0f,1f,05,1c),I(0f,1f,0b,1c),I(0f,23,00,00),B(mop_meth0 ,18),I(1c,0f,45,12)};

        /* Byte-vector with size: 20 is_init: 0 index: 20 binding: defmethod-domain */
        static const void *G00418[] = {I(aa,1b,7a,12),I(1b,34,00,00),I(00,00,00,0f),I(86,32,00,00),I(00,00,00,40),I(1c,10,7a,12),I(1b,34,00,00),I(00,00,00,1b),I(1d,11,1b,24),B(mop_meth0 ,4),I(3c,01,86,1c),I(0f,22,02,32),I(00,00,00,1c),I(1d,10,1b,73),I(1f,04,11,1b),I(24,00,00,00),B(mop_meth0 ,4),I(3c,01,1d,1c),I(0f,22,04,22),I(01,45,02,00)};

        eul_allocate_static_cons(cons_422, NULL, NULL);
        eul_allocate_static_cons(cons_424, NULL, NULL);
        /* Byte-vector with size: 62 is_init: 0 index: 29 binding: defmethod */
        static const void *G00420[] = {I(43,fe,23,00),B(mop_meth0 ,22),I(1c,24,00,00),B(mop_meth0 ,9),I(3c,01,1d,24),B(mop_meth0 ,8),I(3c,01,1f,03),I(24,00,00,00),B(mop_meth0 ,7),I(3c,01,1d,23),B(mop_meth0 ,23),I(24,00,00,00),B(mop_key ,3),I(3c,02,23,00),B(mop_meth0 ,12),I(1f,04,1f,06),I(24,00,00,00),B(mop_key ,2),I(3c,03,1f,03),I(24,00,00,00),B(mop_meth0 ,2),I(3c,01,1f,04),I(24,00,00,00),B(mop_meth0 ,4),I(3c,01,1d,1f),I(08,50,1b,34),I(00,00,00,1d),I(1f,0a,86,0f),I(23,00,00,00),B(mop_meth0 ,24),I(1c,0f,22,01),I(32,00,00,00),I(00,00,00,0a),I(1f,03,1d,24),B(collect ,9),I(3c,01,1b,1f),I(04,0f,23,00),B(mop_meth0 ,15),I(1c,0f,1f,06),I(1f,0a,0f,1f),I(0f,1c,0f,23),B(mop_meth0 ,25),I(1c,0f,23,00),B(mop_meth0 ,17),I(1f,0c,0f,1f),I(12,86,0f,23),B(mop_meth0 ,26),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,23,00,00),B(mop_meth0 ,27),I(1c,0f,1b,86),I(0f,1f,07,1c),I(0f,1f,0b,1c),I(0f,1f,0f,1c),I(0f,23,00,00),B(mop_meth0 ,18),I(1c,0f,1b,86),I(0f,1f,1d,1c),I(0f,23,00,00),B(mop_meth0 ,28),I(1c,0f,45,1f)};

        /* Byte-vector with size: 7 is_init: 0 index: 32 binding: method-function-lambda */
        static const void *G00430[] = {I(43,fe,23,00),B(mop_meth0 ,30),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,23,00,00),B(mop_meth0 ,31),I(1c,0f,45,05)};

        /* Byte-vector with size: 10 is_init: 0 index: 33 binding: defmethod-body */
        static const void *G00434[] = {I(aa,1b,10,7a),I(12,1b,34,00),I(00,00,00,1e),I(1c,11,1b,11),I(24,00,00,00),B(mop_meth0 ,7),I(3d,01,03,22),I(01,32,00,00),I(00,00,00,09),I(1c,11,45,02)};

        /* Byte-vector with size: 10 is_init: 0 index: 34 binding: defmethod-sig */
        static const void *G00436[] = {I(aa,1b,10,7a),I(12,1b,34,00),I(00,00,00,1e),I(1c,11,1b,11),I(24,00,00,00),B(mop_meth0 ,8),I(3d,01,03,22),I(01,32,00,00),I(00,00,00,09),I(1c,10,45,02)};

        /* Byte-vector with size: 14 is_init: 0 index: 35 binding: defmethod-keywords */
        static const void *G00438[] = {I(aa,1b,10,7a),I(12,1b,34,00),I(00,00,00,2e),I(1c,10,1d,11),I(1b,10,1f,04),I(11,1b,11,1b),I(24,00,00,00),B(mop_meth0 ,9),I(3c,01,1f,03),I(1c,0f,1f,06),I(1c,0f,22,07),I(32,00,00,00),I(00,00,00,09),I(86,45,02,00)};

        /* Byte-vector with size: 11 is_init: 0 index: 38 binding: named-method-function-lambda */
        static const void *G00440[] = {I(43,fd,1d,86),I(0f,23,00,00),B(mop_meth0 ,36),I(1c,0f,23,00),B(mop_meth0 ,30),I(1f,03,0f,1b),I(86,0f,1f,05),I(1c,0f,1f,03),I(1c,0f,23,00),B(mop_meth0 ,37),I(1c,0f,45,09)};

        /* Byte-vector with size: 62 is_init: 1 index: 0 binding: initialize-mop-meth0 */
        static const void *G00444[] = {I(87,25,00,00),B(mop_meth0 ,1),I(24,00,00,00),B(level_1 ,1),I(3e,0b,24,00),B(level_1 ,0),I(3c,00,21,01),I(23,00,00,00),B(mop_meth0 ,25),I(23,00,00,00),B(mop_meth0 ,38),I(3b,fd,25,00),B(mop_meth0 ,10),I(23,00,00,00),B(mop_meth0 ,39),I(23,00,00,00),B(mop_meth0 ,35),I(3b,01,25,00),B(mop_meth0 ,9),I(23,00,00,00),B(mop_meth0 ,40),I(23,00,00,00),B(mop_meth0 ,34),I(3b,01,25,00),B(mop_meth0 ,8),I(23,00,00,00),B(mop_meth0 ,41),I(23,00,00,00),B(mop_meth0 ,33),I(3b,01,25,00),B(mop_meth0 ,7),I(23,00,00,00),B(mop_meth0 ,16),I(23,00,00,00),B(mop_meth0 ,32),I(3b,fe,25,00),B(mop_meth0 ,6),I(23,00,00,00),B(mop_meth0 ,42),I(23,00,00,00),B(mop_meth0 ,29),I(3b,fe,25,00),B(mop_meth0 ,5),I(23,00,00,00),B(mop_meth0 ,43),I(23,00,00,00),B(mop_meth0 ,20),I(3b,01,25,00),B(mop_meth0 ,4),I(23,00,00,00),B(mop_meth0 ,44),I(23,00,00,00),B(mop_meth0 ,19),I(3b,ff,25,00),B(mop_meth0 ,3),I(23,00,00,00),B(mop_meth0 ,45),I(23,00,00,00),B(mop_meth0 ,11),I(3b,01,25,00),B(mop_meth0 ,2),I(86,ac,00,00)};


        /* Initializations */
        eul_allocate_bytevector( G00408,G00407);
        eul_intern_keyword(key_412,"class");
        object_class(cons_411) = eul_static_cons_class;
        eul_car(cons_411) = key_412;
        eul_cdr(cons_411) = eul_nil;
        eul_intern_symbol(sym_413,"<simple-method>");
        eul_intern_symbol(sym_414,"make-vector");
        eul_intern_symbol(sym_415,"method-function-lambda");
        eul_intern_symbol(sym_416,"list");
        eul_intern_symbol(sym_417,"make-method");
        eul_allocate_bytevector( G00410,G00409);
        eul_allocate_bytevector( G00419,G00418);
        eul_intern_symbol(sym_423,"absent");
        object_class(cons_422) = eul_static_cons_class;
        eul_car(cons_422) = sym_423;
        eul_cdr(cons_422) = eul_nil;
        object_class(cons_424) = eul_static_cons_class;
        eul_car(cons_424) = key_412;
        eul_cdr(cons_424) = eul_nil;
        eul_intern_symbol(sym_425,"generic-function-method-class");
        eul_intern_symbol(sym_426,"named-method-function-lambda");
        eul_intern_symbol(sym_427,"generic-function-method-keywords");
        eul_intern_symbol(sym_428,"append");
        eul_intern_symbol(sym_429,"stable-add-method");
        eul_allocate_bytevector( G00421,G00420);
        eul_intern_symbol(sym_432,"progn");
        eul_intern_symbol(sym_433,"lambda");
        eul_allocate_bytevector( G00431,G00430);
        eul_allocate_bytevector( G00435,G00434);
        eul_allocate_bytevector( G00437,G00436);
        eul_allocate_bytevector( G00439,G00438);
        eul_intern_symbol(sym_442,"method");
        eul_intern_symbol(sym_443,"named-lambda");
        eul_allocate_bytevector( G00441,G00440);
        eul_intern_symbol(sym_446,"defmethod-keywords");
        eul_intern_symbol(sym_447,"defmethod-sig");
        eul_intern_symbol(sym_448,"defmethod-body");
        eul_intern_symbol(sym_449,"defmethod");
        eul_intern_symbol(sym_450,"defmethod-domain");
        eul_intern_symbol(sym_451,"method-lambda");
        eul_intern_symbol(sym_452,"defmethod-args");
        eul_allocate_bytevector( G00445,G00444);

        /* Set local bindings */
        {
            int i;
            for (i = 2; i < 11; i++)
                mop_meth0_bindings[i] = eul_nil;
        }

        mop_meth0_bindings[ 11] = G00408;
        mop_meth0_bindings[ 12] = key_412;
        mop_meth0_bindings[ 13] = cons_411;
        mop_meth0_bindings[ 14] = sym_413;
        mop_meth0_bindings[ 15] = sym_414;
        mop_meth0_bindings[ 16] = sym_415;
        mop_meth0_bindings[ 17] = sym_416;
        mop_meth0_bindings[ 18] = sym_417;
        mop_meth0_bindings[ 19] = G00410;
        mop_meth0_bindings[ 20] = G00419;
        mop_meth0_bindings[ 21] = sym_423;
        mop_meth0_bindings[ 22] = cons_422;
        mop_meth0_bindings[ 23] = cons_424;
        mop_meth0_bindings[ 24] = sym_425;
        mop_meth0_bindings[ 25] = sym_426;
        mop_meth0_bindings[ 26] = sym_427;
        mop_meth0_bindings[ 27] = sym_428;
        mop_meth0_bindings[ 28] = sym_429;
        mop_meth0_bindings[ 29] = G00421;
        mop_meth0_bindings[ 30] = sym_432;
        mop_meth0_bindings[ 31] = sym_433;
        mop_meth0_bindings[ 32] = G00431;
        mop_meth0_bindings[ 33] = G00435;
        mop_meth0_bindings[ 34] = G00437;
        mop_meth0_bindings[ 35] = G00439;
        mop_meth0_bindings[ 36] = sym_442;
        mop_meth0_bindings[ 37] = sym_443;
        mop_meth0_bindings[ 38] = G00441;
        mop_meth0_bindings[ 1] = eul_nil;
        mop_meth0_bindings[ 39] = sym_446;
        mop_meth0_bindings[ 40] = sym_447;
        mop_meth0_bindings[ 41] = sym_448;
        mop_meth0_bindings[ 42] = sym_449;
        mop_meth0_bindings[ 43] = sym_450;
        mop_meth0_bindings[ 44] = sym_451;
        mop_meth0_bindings[ 45] = sym_452;
        eul_allocate_lambda( mop_meth0_bindings[0], "initialize-mop-meth0", 0, G00445);

    }
}
Example #15
0
/* Initialize module symbol */
void initialize_module_symbol()
{
  if (is_initialized) return;
  initialize_module_telos();
  initialize_module_convert();
  initialize_module_compare();
  initialize_module_collect();
  initialize_module_character();
  initialize_module_string();
  initialize_module_table();
  initialize_module_fpi();
  eul_fast_table_set(eul_modules,"symbol",(LispRef) symbol_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_10835, sym_10834, sym_10833, sym_10832, G0010831, G0010828, G0010826, G0010824, sym_10822, sym_10821, sym_10819, sym_10817, sym_10816, sym_10815, sym_10814, sym_10813, G0010812, G0010810, G0010808, G0010806, G0010804, G0010802, sym_10800, G0010799, G0010797, key_10795, G0010794;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 7 is_init: 0 index: 10 binding: (method-(converter <symbol>)) */
  static const void *G0010793[] = {I(aa,24,00,00),B(mop_class ,5),I(23,00,00,00),B(symbol ,9),I(1d,24,00,00),B(mop_gf ,2),I(3d,03,01,00)};

  /* Byte-vector with size: 20 is_init: 0 index: 11 binding: anonymous */
  static const void *G0010796[] = {I(ab,1c,12,1b),I(44,1a,47,00),I(00,04,1b,23),B(symbol ,9),I(1f,04,24,00),B(mop_gf ,2),I(3d,03,04,22),I(01,36,2f,1d),I(11,1f,03,10),I(1b,24,00,00),B(string ,13),I(24,00,00,00),B(convert ,2),I(3c,02,1f,04),I(1c,24,00,00),B(string ,11),I(3c,02,1f,03),I(1c,47,00,01),I(3d,02,07,22),I(04,45,03,00)};

  /* Byte-vector with size: 14 is_init: 0 index: 13 binding: (method-concatenate) */
  static const void *G0010798[] = {I(a7,46,02,1c),I(48,00,00,86),I(1b,48,00,01),I(23,00,00,00),B(symbol ,12),I(23,00,00,00),B(symbol ,11),I(3b,02,48,00),I(01,47,00,00),I(24,00,00,00),B(collect ,8),I(3c,01,1d,1c),I(47,00,01,3d),I(02,04,45,04)};

  /* Byte-vector with size: 6 is_init: 0 index: 14 binding: (method-binary<) */
  static const void *G0010801[] = {I(ab,1c,82,02),I(1c,82,02,1c),I(1c,41,00,00),B(string ,17),I(22,02,82,1a),I(45,04,00,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 15 binding: (method-namep) */
  static const void *G0010803[] = {I(aa,87,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 16 binding: (method-namep) */
  static const void *G0010805[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 4 is_init: 0 index: 17 binding: (method-initialize) */
  static const void *G0010807[] = {I(ab,1c,1c,37),I(02,2a,1c,41),B(symbol ,8),I(45,03,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 18 binding: (method-initialize) */
  static const void *G0010809[] = {I(ab,1c,1c,37),I(02,2a,1c,41),B(symbol ,7),I(45,03,00,00)};

  eul_allocate_static_cons(cons_10820, NULL, NULL);
  eul_allocate_static_cons(cons_10818, NULL, eul_as_static(cons_10820));
  /* Byte-vector with size: 243 is_init: 0 index: 28 binding: top-level */
  static const void *G0010811[] = {I(a9,82,89,00),B(symbol ,3),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(symbol ,19),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(symbol ,5),I(2a,24,00,00),B(mop_gf ,12),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,5),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_gf ,12),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,20),I(23,00,00,00),B(symbol ,18),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_gf ,12),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(mop_gf ,12),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,92),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_gf ,12),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,20),I(23,00,00,00),B(symbol ,17),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_gf ,12),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(symbol ,5),I(8a,03,02,83),I(86,24,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(symbol ,5),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,21),I(23,00,00,00),B(symbol ,16),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(symbol ,5),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(symbol ,5),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,39),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(symbol ,5),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,21),I(23,00,00,00),B(symbol ,15),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(symbol ,5),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(symbol ,5),I(2a,24,00,00),B(compare ,6),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,5),I(24,00,00,00),B(mop_class ,5),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(compare ,6),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,22),I(23,00,00,00),B(symbol ,14),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(compare ,6),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(collect ,17),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,39),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(collect ,17),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(symbol ,23),I(23,00,00,00),B(symbol ,13),I(3b,fe,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(collect ,17),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(mop_class ,13),I(24,00,00,00),B(boot1 ,42),I(3c,01,83,24),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(symbol ,26),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,24,00),B(mop_class ,5),I(1c,1f,06,3c),I(02,2a,24,00),B(mop_class ,5),I(24,00,00,00),B(mop_class ,13),I(3c,01,2a,24),B(mop_class ,5),I(24,00,00,00),B(mop_class ,13),I(3c,01,24,00),B(mop_class ,5),I(24,00,00,00),B(mop_class ,13),I(3c,01,1b,8a),I(03,02,83,24),B(string ,13),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,5),I(24,00,00,00),B(mop_class ,13),I(3c,01,1b,8a),I(04,02,1d,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1f,05),I(1f,05,23,00),B(symbol ,27),I(23,00,00,00),B(symbol ,10),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,1f,08),I(1c,24,00,00),B(mop_meth ,5),I(3d,02,36,45),I(36,00,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 29 binding: keyword? */
  static const void *G0010823[] = {I(aa,04,24,00),B(mop_class ,92),I(50,45,00,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 30 binding: symbol-exists? */
  static const void *G0010825[] = {I(aa,28,11,1b),I(1d,24,00,00),B(table ,7),I(3d,02,02,45),I(02,00,00,00)};

  eul_allocate_static_string(str_10829, "G00", 3);
  /* Byte-vector with size: 18 is_init: 0 index: 32 binding: gensym */
  static const void *G0010827[] = {I(a8,1b,44,05),I(1b,10,36,09),I(23,00,00,00),B(symbol ,31),I(24,00,00,00),B(symbol ,3),I(41,00,00,00),B(fpi ,7),I(22,01,1c,1c),I(24,00,00,00),B(string ,11),I(3c,02,41,00),B(boot1 ,56),I(22,01,24,00),B(symbol ,3),I(2b,1b,89,00),B(symbol ,3),I(2a,1c,45,05)};

  /* Byte-vector with size: 70 is_init: 1 index: 0 binding: initialize-symbol */
  static const void *G0010830[] = {I(87,25,00,00),B(symbol ,1),I(24,00,00,00),B(fpi ,1),I(3e,0b,24,00),B(fpi ,0),I(3c,00,21,01),I(24,00,00,00),B(table ,1),I(3e,0b,24,00),B(table ,0),I(3c,00,21,01),I(24,00,00,00),B(string ,1),I(3e,0b,24,00),B(string ,0),I(3c,00,21,01),I(24,00,00,00),B(character ,1),I(3e,0b,24,00),B(character ,0),I(3c,00,21,01),I(24,00,00,00),B(collect ,1),I(3e,0b,24,00),B(collect ,0),I(3c,00,21,01),I(24,00,00,00),B(compare ,1),I(3e,0b,24,00),B(compare ,0),I(3c,00,21,01),I(24,00,00,00),B(convert ,1),I(3e,0b,24,00),B(convert ,0),I(3c,00,21,01),I(24,00,00,00),B(telos ,1),I(3e,0b,24,00),B(telos ,0),I(3c,00,21,01),I(23,00,00,00),B(symbol ,33),I(23,00,00,00),B(symbol ,32),I(3b,ff,25,00),B(symbol ,6),I(86,25,00,00),B(symbol ,5),I(23,00,00,00),B(symbol ,34),I(23,00,00,00),B(symbol ,30),I(3b,01,25,00),B(symbol ,4),I(86,25,00,00),B(symbol ,3),I(23,00,00,00),B(symbol ,35),I(23,00,00,00),B(symbol ,29),I(3b,01,25,00),B(symbol ,2),I(23,00,00,00),B(symbol ,36),I(23,00,00,00),B(symbol ,28),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_intern_keyword(key_10795,"name");
  eul_allocate_bytevector( G0010794,G0010793);
  eul_allocate_bytevector( G0010797,G0010796);
  eul_intern_symbol(sym_10800,"anonymous");
  eul_allocate_bytevector( G0010799,G0010798);
  eul_allocate_bytevector( G0010802,G0010801);
  eul_allocate_bytevector( G0010804,G0010803);
  eul_allocate_bytevector( G0010806,G0010805);
  eul_allocate_bytevector( G0010808,G0010807);
  eul_allocate_bytevector( G0010810,G0010809);
  eul_intern_symbol(sym_10813,"namep");
  eul_intern_symbol(sym_10814,"(method initialize)");
  eul_intern_symbol(sym_10815,"(method namep)");
  eul_intern_symbol(sym_10816,"(method binary<)");
  eul_intern_symbol(sym_10817,"(method concatenate)");
  eul_intern_symbol(sym_10819,"converter");
  eul_intern_symbol(sym_10821,"<symbol>");
  object_class(cons_10820) = eul_static_cons_class;
  eul_car(cons_10820) = sym_10821;
  eul_cdr(cons_10820) = eul_nil;
  object_class(cons_10818) = eul_static_cons_class;
  eul_car(cons_10818) = sym_10819;
  eul_intern_symbol(sym_10822,"(method (converter <symbol>))");
  eul_allocate_bytevector( G0010812,G0010811);
  eul_allocate_bytevector( G0010824,G0010823);
  eul_allocate_bytevector( G0010826,G0010825);
  object_class(str_10829) = eul_static_string_class;
  eul_allocate_bytevector( G0010828,G0010827);
  eul_intern_symbol(sym_10832,"gensym");
  eul_intern_symbol(sym_10833,"symbol-exists?");
  eul_intern_symbol(sym_10834,"keyword?");
  eul_intern_symbol(sym_10835,"top-level");
  eul_allocate_bytevector( G0010831,G0010830);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 7; i++)
      symbol_bindings[i] = eul_nil;
  }

  symbol_bindings[ 7] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_init_symbol10791;
  symbol_bindings[ 8] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_init_keyword10792;
  symbol_bindings[ 9] = key_10795;
  symbol_bindings[ 10] = G0010794;
  symbol_bindings[ 11] = G0010797;
  symbol_bindings[ 12] = sym_10800;
  symbol_bindings[ 13] = G0010799;
  symbol_bindings[ 14] = G0010802;
  symbol_bindings[ 15] = G0010804;
  symbol_bindings[ 16] = G0010806;
  symbol_bindings[ 17] = G0010808;
  symbol_bindings[ 18] = G0010810;
  symbol_bindings[ 19] = sym_10813;
  symbol_bindings[ 20] = sym_10814;
  symbol_bindings[ 21] = sym_10815;
  symbol_bindings[ 22] = sym_10816;
  symbol_bindings[ 23] = sym_10817;
  symbol_bindings[ 24] = sym_10819;
  symbol_bindings[ 25] = sym_10821;
  symbol_bindings[ 26] = cons_10818;
  symbol_bindings[ 27] = sym_10822;
  symbol_bindings[ 28] = G0010812;
  symbol_bindings[ 29] = G0010824;
  symbol_bindings[ 30] = G0010826;
  symbol_bindings[ 31] = str_10829;
  symbol_bindings[ 32] = G0010828;
  symbol_bindings[ 1] = eul_nil;
  symbol_bindings[ 33] = sym_10832;
  symbol_bindings[ 34] = sym_10833;
  symbol_bindings[ 35] = sym_10834;
  symbol_bindings[ 36] = sym_10835;
  eul_allocate_lambda( symbol_bindings[0], "initialize-symbol", 0, G0010831);

  }
}
Example #16
0
/* Initialize module stream0 */
void initialize_module_stream0()
{
  if (is_initialized) return;
  initialize_module_level_1();
  eul_fast_table_set(eul_modules,"stream0",(LispRef) stream0_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_388, sym_387, sym_386, sym_385, sym_384, G00383, G00381, sym_379, sym_378, G00377, G00375, sym_373, sym_372, G00371, sym_369, sym_368, sym_367, sym_366, sym_365, sym_364, sym_363, sym_361, sym_360, sym_359, G00358, sym_356, sym_355, sym_354, sym_353, sym_352, sym_351, sym_350, key_349, key_348, sym_347, sym_346, G00345;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 42 is_init: 0 index: 19 binding: with-output-file */
  static const void *G00344[] = {I(a7,1c,10,1d),I(11,1b,10,24),B(symbol ,6),I(3c,00,1f,03),I(1d,1d,23,00),B(stream0 ,8),I(86,0f,23,00),B(stream0 ,9),I(1c,0f,1b,86),I(0f,23,00,00),B(stream0 ,10),I(1c,0f,1f,05),I(1c,0f,23,00),B(stream0 ,11),I(1c,0f,23,00),B(stream0 ,12),I(1c,0f,23,00),B(stream0 ,13),I(1c,0f,1b,86),I(0f,1f,0b,1c),I(0f,86,86,0f),I(1f,0b,1c,0f),I(1b,86,0f,1f),I(03,1c,0f,23),B(stream0 ,14),I(1f,16,0f,1b),I(86,0f,1f,10),I(1c,0f,23,00),B(stream0 ,15),I(1c,0f,1f,14),I(86,0f,23,00),B(stream0 ,16),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,23,00,00),B(stream0 ,17),I(1c,0f,1f,17),I(86,0f,1c,1c),I(0f,1f,0b,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,23)};

  eul_allocate_static_string(str_362, "No such file or directory ~a in ~a", 34);
  /* Byte-vector with size: 69 is_init: 0 index: 31 binding: with-input-file-of-path */
  static const void *G00357[] = {I(a7,1c,10,1d),I(11,1b,10,1f),I(04,11,1b,11),I(1b,10,1f,07),I(11,1b,11,1b),I(11,1b,10,24),B(symbol ,6),I(3c,00,24,00),B(symbol ,6),I(3c,00,24,00),B(symbol ,6),I(3c,00,1f,0c),I(1f,0b,1f,09),I(1f,06,1f,06),I(1f,06,1f,06),I(1f,03,86,0f),I(1f,06,1c,0f),I(23,00,00,00),B(stream0 ,20),I(1c,0f,23,00),B(stream0 ,21),I(1c,0f,1b,86),I(0f,1f,07,1c),I(0f,1b,86,0f),I(1f,09,86,0f),I(23,00,00,00),B(stream0 ,22),I(1c,0f,1f,0c),I(86,0f,1f,0f),I(1c,0f,23,00),B(stream0 ,23),I(1c,0f,23,00),B(stream0 ,24),I(1c,0f,1b,86),I(0f,23,00,00),B(stream0 ,25),I(1c,0f,23,00),B(stream0 ,26),I(1c,0f,1f,12),I(86,0f,23,00),B(stream0 ,27),I(1c,0f,1b,86),I(0f,1f,14,1c),I(0f,1f,16,86),I(0f,23,00,00),B(stream0 ,28),I(1c,0f,1b,86),I(0f,1f,1b,1c),I(0f,1b,86,0f),I(1f,05,1c,0f),I(1f,1b,86,0f),I(1f,21,1c,0f),I(1b,1f,31,0f),I(23,00,00,00),B(stream0 ,29),I(1c,0f,1b,86),I(0f,1f,05,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,1b,86),I(0f,1f,12,1c),I(0f,1f,1a,1c),I(0f,23,00,00),B(stream0 ,30),I(1c,0f,1b,86),I(0f,1f,1f,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,3d)};

  /* Byte-vector with size: 30 is_init: 0 index: 34 binding: with-source */
  static const void *G00370[] = {I(a7,24,00,00),B(symbol ,6),I(3c,00,1d,10),I(1b,86,0f,23),B(stream0 ,32),I(1c,0f,1b,86),I(0f,1f,04,1c),I(0f,1b,86,0f),I(1f,08,11,1b),I(10,1f,0a,10),I(1b,86,0f,1d),I(1c,0f,23,00),B(stream0 ,33),I(1c,0f,23,00),B(stream0 ,14),I(1f,0e,0f,1f),I(0f,10,1b,86),I(0f,1f,0f,1c),I(0f,23,00,00),B(stream0 ,33),I(1c,0f,1b,86),I(0f,1f,05,1c),I(0f,23,00,00),B(stream0 ,17),I(1c,0f,1b,86),I(0f,1f,09,1c),I(0f,1f,10,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,1a)};

  /* Byte-vector with size: 30 is_init: 0 index: 35 binding: with-sink */
  static const void *G00374[] = {I(a7,24,00,00),B(symbol ,6),I(3c,00,1d,10),I(1b,86,0f,23),B(stream0 ,32),I(1c,0f,1b,86),I(0f,1f,04,1c),I(0f,1b,86,0f),I(1f,08,11,1b),I(10,1f,0a,10),I(1b,86,0f,1d),I(1c,0f,23,00),B(stream0 ,33),I(1c,0f,23,00),B(stream0 ,14),I(1f,0e,0f,1f),I(0f,10,1b,86),I(0f,1f,0f,1c),I(0f,23,00,00),B(stream0 ,33),I(1c,0f,1b,86),I(0f,1f,05,1c),I(0f,23,00,00),B(stream0 ,17),I(1c,0f,1b,86),I(0f,1f,09,1c),I(0f,1f,10,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,1a)};

  /* Byte-vector with size: 22 is_init: 0 index: 38 binding: with-lock */
  static const void *G00376[] = {I(a7,24,00,00),B(symbol ,6),I(3c,00,1d,86),I(0f,1c,1c,0f),I(1b,86,0f,1f),I(03,86,0f,23),B(stream0 ,36),I(1c,0f,1b,1f),I(07,0f,23,00),B(stream0 ,14),I(1c,0f,1f,07),I(86,0f,23,00),B(stream0 ,37),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,23,00,00),B(stream0 ,17),I(1c,0f,1b,86),I(0f,1f,0a,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,11)};

  /* Byte-vector with size: 35 is_init: 0 index: 39 binding: with-input-file */
  static const void *G00380[] = {I(a7,1c,10,1d),I(11,1b,10,24),B(symbol ,6),I(3c,00,1f,03),I(1d,1d,1c,86),I(0f,23,00,00),B(stream0 ,11),I(1c,0f,23,00),B(stream0 ,12),I(1c,0f,23,00),B(stream0 ,13),I(1c,0f,1b,86),I(0f,1f,07,1c),I(0f,86,86,0f),I(1f,07,1c,0f),I(1b,86,0f,1f),I(03,1c,0f,23),B(stream0 ,14),I(1f,12,0f,1b),I(86,0f,1f,0c),I(1c,0f,23,00),B(stream0 ,15),I(1c,0f,1f,10),I(86,0f,23,00),B(stream0 ,16),I(1c,0f,1b,86),I(0f,1f,03,1c),I(0f,23,00,00),B(stream0 ,17),I(1c,0f,1f,13),I(86,0f,1c,1c),I(0f,1f,0b,1c),I(0f,23,00,00),B(stream0 ,18),I(1c,0f,45,1f)};

  /* Byte-vector with size: 44 is_init: 1 index: 0 binding: initialize-stream0 */
  static const void *G00382[] = {I(87,25,00,00),B(stream0 ,1),I(24,00,00,00),B(level_1 ,1),I(3e,0b,24,00),B(level_1 ,0),I(3c,00,21,01),I(23,00,00,00),B(stream0 ,29),I(23,00,00,00),B(stream0 ,39),I(3b,fe,25,00),B(stream0 ,7),I(23,00,00,00),B(stream0 ,40),I(23,00,00,00),B(stream0 ,38),I(3b,fe,25,00),B(stream0 ,6),I(23,00,00,00),B(stream0 ,41),I(23,00,00,00),B(stream0 ,35),I(3b,fe,25,00),B(stream0 ,5),I(23,00,00,00),B(stream0 ,42),I(23,00,00,00),B(stream0 ,34),I(3b,fe,25,00),B(stream0 ,4),I(23,00,00,00),B(stream0 ,43),I(23,00,00,00),B(stream0 ,31),I(3b,fe,25,00),B(stream0 ,3),I(23,00,00,00),B(stream0 ,44),I(23,00,00,00),B(stream0 ,19),I(3b,fe,25,00),B(stream0 ,2),I(86,ac,00,00)};


  /* Initializations */
  eul_intern_symbol(sym_346,"w");
  eul_intern_symbol(sym_347,"quote");
  eul_intern_keyword(key_348,"mode");
  eul_intern_keyword(key_349,"file-name");
  eul_intern_symbol(sym_350,"<file-stream>");
  eul_intern_symbol(sym_351,"make");
  eul_intern_symbol(sym_352,"progn");
  eul_intern_symbol(sym_353,"setq");
  eul_intern_symbol(sym_354,"disconnect");
  eul_intern_symbol(sym_355,"unwind-protect");
  eul_intern_symbol(sym_356,"let");
  eul_allocate_bytevector( G00345,G00344);
  eul_intern_symbol(sym_359,"file-lookup");
  eul_intern_symbol(sym_360,"apply");
  eul_intern_symbol(sym_361,"null?");
  object_class(str_362) = eul_static_string_class;
  eul_intern_symbol(sym_363,"fmt");
  eul_intern_symbol(sym_364,"<condition>");
  eul_intern_symbol(sym_365,"error");
  eul_intern_symbol(sym_366,"car");
  eul_intern_symbol(sym_367,"cdr");
  eul_intern_symbol(sym_368,"with-input-file");
  eul_intern_symbol(sym_369,"if");
  eul_allocate_bytevector( G00358,G00357);
  eul_intern_symbol(sym_372,"source");
  eul_intern_symbol(sym_373,"reconnect");
  eul_allocate_bytevector( G00371,G00370);
  eul_allocate_bytevector( G00375,G00374);
  eul_intern_symbol(sym_378,"lock");
  eul_intern_symbol(sym_379,"unlock");
  eul_allocate_bytevector( G00377,G00376);
  eul_allocate_bytevector( G00381,G00380);
  eul_intern_symbol(sym_384,"with-lock");
  eul_intern_symbol(sym_385,"with-sink");
  eul_intern_symbol(sym_386,"with-source");
  eul_intern_symbol(sym_387,"with-input-file-of-path");
  eul_intern_symbol(sym_388,"with-output-file");
  eul_allocate_bytevector( G00383,G00382);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 8; i++)
      stream0_bindings[i] = eul_nil;
  }

  stream0_bindings[ 8] = sym_346;
  stream0_bindings[ 9] = sym_347;
  stream0_bindings[ 10] = key_348;
  stream0_bindings[ 11] = key_349;
  stream0_bindings[ 12] = sym_350;
  stream0_bindings[ 13] = sym_351;
  stream0_bindings[ 14] = sym_352;
  stream0_bindings[ 15] = sym_353;
  stream0_bindings[ 16] = sym_354;
  stream0_bindings[ 17] = sym_355;
  stream0_bindings[ 18] = sym_356;
  stream0_bindings[ 19] = G00345;
  stream0_bindings[ 20] = sym_359;
  stream0_bindings[ 21] = sym_360;
  stream0_bindings[ 22] = sym_361;
  stream0_bindings[ 23] = str_362;
  stream0_bindings[ 24] = sym_363;
  stream0_bindings[ 25] = sym_364;
  stream0_bindings[ 26] = sym_365;
  stream0_bindings[ 27] = sym_366;
  stream0_bindings[ 28] = sym_367;
  stream0_bindings[ 29] = sym_368;
  stream0_bindings[ 30] = sym_369;
  stream0_bindings[ 31] = G00358;
  stream0_bindings[ 32] = sym_372;
  stream0_bindings[ 33] = sym_373;
  stream0_bindings[ 34] = G00371;
  stream0_bindings[ 35] = G00375;
  stream0_bindings[ 36] = sym_378;
  stream0_bindings[ 37] = sym_379;
  stream0_bindings[ 38] = G00377;
  stream0_bindings[ 39] = G00381;
  stream0_bindings[ 1] = eul_nil;
  stream0_bindings[ 40] = sym_384;
  stream0_bindings[ 41] = sym_385;
  stream0_bindings[ 42] = sym_386;
  stream0_bindings[ 43] = sym_387;
  stream0_bindings[ 44] = sym_388;
  eul_allocate_lambda( stream0_bindings[0], "initialize-stream0", 0, G00383);

  }
}
Example #17
0
/* Initialize module sx-obj */
void initialize_module_sx_obj()
{
  if (is_initialized) return;
  initialize_module_i_level_1();
  initialize_module_sx_obj1();
  initialize_module_sx_obj2();
  eul_fast_table_set(eul_modules,"sx_obj",(LispRef) sx_obj_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_2434, sym_2433, sym_2432, sym_2431, sym_2430, sym_2429, sym_2428, sym_2427, sym_2426, sym_2425, sym_2424, sym_2423, sym_2422, sym_2421, sym_2420, sym_2419, sym_2418, sym_2417, sym_2416, sym_2415, sym_2414, sym_2413, sym_2412, sym_2411, sym_2410, sym_2409, sym_2408, sym_2407, sym_2406, sym_2405, sym_2404, sym_2403, sym_2402, sym_2401, sym_2400, sym_2399, sym_2398, sym_2397, G002396, G002394, G002392, G002390, G002388, G002386, G002384, G002382, G002380, G002378, G002376, G002374, G002372, G002370, G002368, G002366, G002364, G002362, G002360, G002358, G002356, G002354, G002352, G002350, G002348, G002346, G002344, G002342, G002340, G002338, sym_2336, G002335, G002333, G002331, G002329, G002327, G002325, G002323, G002321, G002319, sym_2317, sym_2316, sym_2315, sym_2314, sym_2313, sym_2312, sym_2311, sym_2310, sym_2309, sym_2308, sym_2307, sym_2306, sym_2305, sym_2304, sym_2300, key_2299, sym_2298, key_2297, sym_2296, key_2295, sym_2294, sym_2293, sym_2290, key_2289, sym_2288, sym_2287, sym_2283, key_2282, sym_2281, key_2280, sym_2279, key_2278, sym_2277, key_2268, key_2267, key_2266, sym_2265, key_2264, sym_2263, key_2262, sym_2261, key_2260, sym_2259, key_2258, sym_2257, key_2256, sym_2255, key_2254, sym_2253, key_2252, sym_2251, key_2250, sym_2249, key_2248, sym_2247, key_2246, G002245, G002243, G002241, G002239, G002237, G002235, G002233, G002231, G002229, G002227, G002225, G002223, G002221, G002219, G002217, G002215, G002213, G002211, G002209, G002207, G002205, G002203, G002201, G002199, G002197, G002195, G002193, G002191, G002189, G002187, G002185;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 1 is_init: 0 index: 53 binding: (method-if?) */
  static const void *G002184[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 54 binding: (method-if?) */
  static const void *G002186[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 55 binding: (method-call-next-method?) */
  static const void *G002188[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 56 binding: (method-call-next-method?) */
  static const void *G002190[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 57 binding: (method-appl?) */
  static const void *G002192[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 58 binding: (method-appl?) */
  static const void *G002194[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 59 binding: (method-let*?) */
  static const void *G002196[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 60 binding: (method-let*?) */
  static const void *G002198[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 61 binding: (method-opencoding?) */
  static const void *G002200[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 62 binding: (method-opencoding?) */
  static const void *G002202[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 63 binding: (method-lambda?) */
  static const void *G002204[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 64 binding: (method-lambda?) */
  static const void *G002206[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 65 binding: (method-fun?) */
  static const void *G002208[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 66 binding: (method-fun?) */
  static const void *G002210[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 67 binding: anonymous */
  static const void *G002212[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 68 binding: anonymous */
  static const void *G002214[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 69 binding: anonymous */
  static const void *G002216[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 70 binding: anonymous */
  static const void *G002218[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 71 binding: anonymous */
  static const void *G002220[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 72 binding: anonymous */
  static const void *G002222[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 73 binding: anonymous */
  static const void *G002224[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 74 binding: anonymous */
  static const void *G002226[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 75 binding: anonymous */
  static const void *G002228[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 76 binding: anonymous */
  static const void *G002230[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 77 binding: anonymous */
  static const void *G002232[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 78 binding: anonymous */
  static const void *G002234[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 79 binding: anonymous */
  static const void *G002236[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 80 binding: anonymous */
  static const void *G002238[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 81 binding: anonymous */
  static const void *G002240[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 82 binding: anonymous */
  static const void *G002242[] = {I(a9,86,45,00)};

  eul_allocate_static_cons(cons_2276, NULL, NULL);
  eul_allocate_static_cons(cons_2275, NULL, eul_as_static(cons_2276));
  eul_allocate_static_cons(cons_2274, NULL, eul_as_static(cons_2275));
  eul_allocate_static_cons(cons_2273, NULL, eul_as_static(cons_2274));
  eul_allocate_static_cons(cons_2272, NULL, eul_as_static(cons_2273));
  eul_allocate_static_cons(cons_2271, NULL, eul_as_static(cons_2272));
  eul_allocate_static_cons(cons_2270, NULL, eul_as_static(cons_2271));
  eul_allocate_static_cons(cons_2269, NULL, eul_as_static(cons_2270));
  eul_allocate_static_cons(cons_2286, NULL, NULL);
  eul_allocate_static_cons(cons_2285, NULL, eul_as_static(cons_2286));
  eul_allocate_static_cons(cons_2284, NULL, eul_as_static(cons_2285));
  eul_allocate_static_cons(cons_2292, NULL, NULL);
  eul_allocate_static_cons(cons_2291, NULL, eul_as_static(cons_2292));
  eul_allocate_static_cons(cons_2303, NULL, NULL);
  eul_allocate_static_cons(cons_2302, NULL, eul_as_static(cons_2303));
  eul_allocate_static_cons(cons_2301, NULL, eul_as_static(cons_2302));
  /* Byte-vector with size: 951 is_init: 0 index: 143 binding: top-level */
  static const void *G002244[] = {I(a9,24,00,00),B(sx_obj1 ,3),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,84),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,82),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,83),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,88),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,81),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,89),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,90),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,80),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,91),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,92),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,79),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,93),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,94),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,78),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,95),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,96),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,77),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,97),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,98),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,76),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,99),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,100),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,75),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,101),I(24,00,00,00),B(boot1 ,26),I(3c,06,1f,07),I(1f,07,1f,07),I(1f,07,1f,07),I(1f,07,1f,07),I(1f,07,24,00),B(boot1 ,26),I(3c,08,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,102),I(23,00,00,00),B(sx_obj ,103),I(1f,0d,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(23,00,00,00),B(sx_obj ,106),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,17),I(2a,24,00,00),B(sx_obj ,17),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,107),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,74),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,108),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,109),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,73),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,110),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,111),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,72),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,112),I(24,00,00,00),B(boot1 ,26),I(3c,06,1d,1d),I(1d,24,00,00),B(boot1 ,26),I(3c,03,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,113),I(23,00,00,00),B(sx_obj ,103),I(1f,08,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(23,00,00,00),B(sx_obj ,114),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,13),I(2a,24,00,00),B(sx_obj ,17),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,115),I(23,00,00,00),B(sx_obj ,103),I(1f,05,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,8),I(2a,24,00,00),B(sx_obj ,17),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,116),I(23,00,00,00),B(sx_obj ,103),I(1f,05,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,2),I(2a,24,00,00),B(sx_obj1 ,3),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,102),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,71),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,117),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,90),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,70),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,91),I(24,00,00,00),B(boot1 ,26),I(3c,06,1c,1c),I(24,00,00,00),B(boot1 ,26),I(3c,02,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,118),I(23,00,00,00),B(sx_obj ,103),I(1f,07,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(23,00,00,00),B(sx_obj ,119),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,39),I(2a,24,00,00),B(sx_obj ,39),I(24,00,00,00),B(boot1 ,26),I(3c,01,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,120),I(23,00,00,00),B(sx_obj ,103),I(1f,05,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(86,24,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,50),I(2a,24,00,00),B(sx_obj1 ,27),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,121),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,69),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,122),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,123),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,68),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,124),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,125),I(23,00,00,00),B(sx_obj ,85),I(23,00,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,67),I(3b,00,23,00),B(sx_obj ,87),I(23,00,00,00),B(sx_obj ,126),I(24,00,00,00),B(boot1 ,26),I(3c,06,1d,1d),I(1d,24,00,00),B(boot1 ,26),I(3c,03,24,00),B(mop_class ,81),I(23,00,00,00),B(sx_obj ,83),I(23,00,00,00),B(sx_obj ,127),I(23,00,00,00),B(sx_obj ,103),I(1f,08,23,00),B(sx_obj ,104),I(1f,06,23,00),B(sx_obj ,105),I(23,00,00,00),B(sx_obj ,128),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(sx_obj ,12),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,129),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,49),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,130),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,44),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,131),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,7),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,132),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,28),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,133),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,45),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,134),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,11),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(sx_obj ,135),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(sx_obj ,21),I(2a,24,00,00),B(sx_obj ,49),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,49),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,136),I(23,00,00,00),B(sx_obj ,66),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,49),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,49),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,17),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,49),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,136),I(23,00,00,00),B(sx_obj ,65),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,49),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,49),I(2a,24,00,00),B(sx_obj ,17),I(2a,24,00,00),B(sx_obj ,44),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,44),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,137),I(23,00,00,00),B(sx_obj ,64),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,44),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,44),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,13),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,44),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,137),I(23,00,00,00),B(sx_obj ,63),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,44),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,44),I(2a,24,00,00),B(sx_obj ,13),I(2a,24,00,00),B(sx_obj ,7),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,7),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,138),I(23,00,00,00),B(sx_obj ,62),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,7),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,7),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,8),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,7),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,138),I(23,00,00,00),B(sx_obj ,61),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,7),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,7),I(2a,24,00,00),B(sx_obj ,8),I(2a,24,00,00),B(sx_obj ,28),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,139),I(23,00,00,00),B(sx_obj ,60),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,28),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,2),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,139),I(23,00,00,00),B(sx_obj ,59),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,28),I(2a,24,00,00),B(sx_obj ,2),I(2a,24,00,00),B(sx_obj ,45),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,45),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,140),I(23,00,00,00),B(sx_obj ,58),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,45),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,45),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,39),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,45),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,140),I(23,00,00,00),B(sx_obj ,57),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,45),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,45),I(2a,24,00,00),B(sx_obj ,39),I(2a,24,00,00),B(sx_obj ,11),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,11),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,141),I(23,00,00,00),B(sx_obj ,56),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,11),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,11),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,50),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,11),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,141),I(23,00,00,00),B(sx_obj ,55),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,11),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,11),I(2a,24,00,00),B(sx_obj ,50),I(2a,24,00,00),B(sx_obj ,21),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,21),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,142),I(23,00,00,00),B(sx_obj ,54),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,21),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,21),I(8a,03,02,83),I(24,00,00,00),B(sx_obj ,12),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(sx_obj ,21),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(sx_obj ,142),I(23,00,00,00),B(sx_obj ,53),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(sx_obj ,21),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(sx_obj ,21),I(2a,24,00,00),B(sx_obj ,12),I(45,95,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 144 binding: fun-binding? */
  static const void *G002318[] = {I(aa,8a,06,24),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 145 binding: fun-body? */
  static const void *G002320[] = {I(aa,84,24,00),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 146 binding: lambda-delegated-vars? */
  static const void *G002322[] = {I(aa,83,24,00),B(sx_obj ,13),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 147 binding: fun-range-and-domain! */
  static const void *G002324[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 148 binding: fun-range-and-domain? */
  static const void *G002326[] = {I(aa,8a,03,24),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 17 is_init: 0 index: 149 binding: local-name? */
  static const void *G002328[] = {I(aa,1b,24,00),B(sx_obj1 ,14),I(3c,01,1b,44),I(0f,1c,8a,06),I(24,00,00,00),B(sx_obj1 ,42),I(08,36,28,1c),I(23,00,00,00),B(sx_obj ,88),I(24,00,00,00),B(mop_defcl ,8),I(3c,02,1b,44),I(0f,1b,8a,06),I(24,00,00,00),B(sx_obj1 ,42),I(08,36,02,86),I(22,01,45,02)};

  /* Byte-vector with size: 3 is_init: 0 index: 150 binding: if-then? */
  static const void *G002330[] = {I(aa,83,24,00),B(sx_obj ,12),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 151 binding: fun-arity? */
  static const void *G002332[] = {I(aa,8a,04,24),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 25 is_init: 0 index: 153 binding: save-binding-module-name? */
  static const void *G002334[] = {I(aa,1b,7a,1b),I(44,05,1c,73),I(36,56,1c,24),B(sx_obj1 ,14),I(3c,01,1b,44),I(2c,1d,8a,05),I(24,00,00,00),B(sx_obj1 ,42),I(08,1b,24,00),B(sx_obj1 ,45),I(3c,01,1b,44),I(0f,1c,8a,15),I(24,00,00,00),B(sx_obj1 ,59),I(08,36,02,1c),I(22,02,36,1e),I(23,00,00,00),B(sx_obj ,152),I(24,00,00,00),B(dynamic ,3),I(3c,01,8a,15),I(24,00,00,00),B(sx_obj1 ,59),I(08,22,01,45),I(02,00,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 154 binding: appl-fun? */
  static const void *G002337[] = {I(aa,83,24,00),B(sx_obj ,39),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 155 binding: if-pred? */
  static const void *G002339[] = {I(aa,84,24,00),B(sx_obj ,12),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 156 binding: lambda-inlined? */
  static const void *G002341[] = {I(aa,84,24,00),B(sx_obj ,13),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 157 binding: if-else! */
  static const void *G002343[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj ,12),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 158 binding: if-else? */
  static const void *G002345[] = {I(aa,82,24,00),B(sx_obj ,12),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 159 binding: lambda-delegated-vars! */
  static const void *G002347[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj ,13),I(09,45,02,00)};

  /* Byte-vector with size: 10 is_init: 0 index: 160 binding: save-binding-local-name? */
  static const void *G002349[] = {I(aa,1b,7a,1b),I(44,05,1c,75),I(36,1d,1c,24),B(sx_obj1 ,14),I(3c,01,1b,44),I(0f,1d,8a,06),I(24,00,00,00),B(sx_obj1 ,42),I(08,36,02,1d),I(22,01,45,02)};

  /* Byte-vector with size: 3 is_init: 0 index: 161 binding: fun-name? */
  static const void *G002351[] = {I(aa,8a,07,24),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 162 binding: appl-fun! */
  static const void *G002353[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj ,39),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 163 binding: if-then! */
  static const void *G002355[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj ,12),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 164 binding: fun-args? */
  static const void *G002357[] = {I(aa,8a,05,24),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 165 binding: fun-body! */
  static const void *G002359[] = {I(ab,1c,84,1d),I(24,00,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 166 binding: fun-appls! */
  static const void *G002361[] = {I(ab,1c,83,1d),I(24,00,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 167 binding: anonymous */
  static const void *G002363[] = {I(ab,84,02,50),I(45,00,00,00)};

  /* Byte-vector with size: 15 is_init: 0 index: 168 binding: binding! */
  static const void *G002365[] = {I(ab,1c,04,8a),I(04,02,23,00),B(sx_obj ,88),I(1c,23,00,00),B(sx_obj ,86),I(23,00,00,00),B(sx_obj ,167),I(3b,02,24,00),B(boot ,27),I(3c,03,1b,44),I(07,1b,10,83),I(02,36,02,86),I(1f,04,1f,04),I(1d,3d,02,05),I(45,05,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 169 binding: if-pred! */
  static const void *G002367[] = {I(ab,1c,84,1d),I(24,00,00,00),B(sx_obj ,12),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 170 binding: lambda-inlined! */
  static const void *G002369[] = {I(ab,1c,84,1d),I(24,00,00,00),B(sx_obj ,13),I(09,45,02,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 171 binding: origin-name? */
  static const void *G002371[] = {I(aa,23,00,00),B(sx_obj ,84),I(24,00,00,00),B(mop_defcl ,8),I(3d,02,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 172 binding: fun-arity! */
  static const void *G002373[] = {I(ab,1c,8a,04),I(1d,24,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 173 binding: lambda-binding-refs! */
  static const void *G002375[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj ,13),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 174 binding: fun-appls? */
  static const void *G002377[] = {I(aa,83,24,00),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 175 binding: fun-has-unknown-appls? */
  static const void *G002379[] = {I(aa,82,24,00),B(sx_obj ,17),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 176 binding: fun-binding! */
  static const void *G002381[] = {I(ab,1c,8a,06),I(1d,24,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 177 binding: fun-name! */
  static const void *G002383[] = {I(ab,1c,8a,07),I(1d,24,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 178 binding: appl-args! */
  static const void *G002385[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj ,39),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 179 binding: lambda-binding-refs? */
  static const void *G002387[] = {I(aa,82,24,00),B(sx_obj ,13),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 180 binding: fun-args! */
  static const void *G002389[] = {I(ab,1c,8a,05),I(1d,24,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 181 binding: fun-has-unknown-appls! */
  static const void *G002391[] = {I(ab,1c,82,1d),I(24,00,00,00),B(sx_obj ,17),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 182 binding: appl-args? */
  static const void *G002393[] = {I(aa,82,24,00),B(sx_obj ,39),I(08,45,00,00)};

  /* Byte-vector with size: 273 is_init: 1 index: 0 binding: initialize-sx-obj */
  static const void *G002395[] = {I(87,25,00,00),B(sx_obj ,1),I(24,00,00,00),B(sx_obj2 ,1),I(3e,0b,24,00),B(sx_obj2 ,0),I(3c,00,21,01),I(24,00,00,00),B(sx_obj1 ,1),I(3e,0b,24,00),B(sx_obj1 ,0),I(3c,00,21,01),I(24,00,00,00),B(i_level_1 ,1),I(3e,0b,24,00),B(i_level_1 ,0),I(3c,00,21,01),I(23,00,00,00),B(sx_obj ,183),I(23,00,00,00),B(sx_obj ,182),I(3b,01,25,00),B(sx_obj ,52),I(23,00,00,00),B(sx_obj ,184),I(23,00,00,00),B(sx_obj ,181),I(3b,02,25,00),B(sx_obj ,51),I(86,25,00,00),B(sx_obj ,50),I(86,25,00,00),B(sx_obj ,49),I(23,00,00,00),B(sx_obj ,185),I(23,00,00,00),B(sx_obj ,180),I(3b,02,25,00),B(sx_obj ,48),I(23,00,00,00),B(sx_obj ,186),I(23,00,00,00),B(sx_obj ,179),I(3b,01,25,00),B(sx_obj ,47),I(23,00,00,00),B(sx_obj ,187),I(23,00,00,00),B(sx_obj ,178),I(3b,02,25,00),B(sx_obj ,46),I(86,25,00,00),B(sx_obj ,45),I(86,25,00,00),B(sx_obj ,44),I(23,00,00,00),B(sx_obj ,188),I(23,00,00,00),B(sx_obj ,177),I(3b,02,25,00),B(sx_obj ,43),I(23,00,00,00),B(sx_obj ,189),I(23,00,00,00),B(sx_obj ,176),I(3b,02,25,00),B(sx_obj ,42),I(23,00,00,00),B(sx_obj ,190),I(23,00,00,00),B(sx_obj ,175),I(3b,01,25,00),B(sx_obj ,41),I(23,00,00,00),B(sx_obj ,191),I(23,00,00,00),B(sx_obj ,174),I(3b,01,25,00),B(sx_obj ,40),I(86,25,00,00),B(sx_obj ,39),I(23,00,00,00),B(sx_obj ,192),I(23,00,00,00),B(sx_obj ,173),I(3b,02,25,00),B(sx_obj ,38),I(23,00,00,00),B(sx_obj ,193),I(23,00,00,00),B(sx_obj ,172),I(3b,02,25,00),B(sx_obj ,37),I(23,00,00,00),B(sx_obj ,194),I(23,00,00,00),B(sx_obj ,171),I(3b,01,25,00),B(sx_obj ,36),I(23,00,00,00),B(sx_obj ,195),I(23,00,00,00),B(sx_obj ,170),I(3b,02,25,00),B(sx_obj ,35),I(23,00,00,00),B(sx_obj ,196),I(23,00,00,00),B(sx_obj ,169),I(3b,02,25,00),B(sx_obj ,34),I(23,00,00,00),B(sx_obj ,197),I(23,00,00,00),B(sx_obj ,168),I(3b,02,25,00),B(sx_obj ,33),I(23,00,00,00),B(sx_obj ,198),I(23,00,00,00),B(sx_obj ,166),I(3b,02,25,00),B(sx_obj ,32),I(23,00,00,00),B(sx_obj ,199),I(23,00,00,00),B(sx_obj ,165),I(3b,02,25,00),B(sx_obj ,31),I(23,00,00,00),B(sx_obj ,200),I(23,00,00,00),B(sx_obj ,164),I(3b,01,25,00),B(sx_obj ,30),I(23,00,00,00),B(sx_obj ,201),I(23,00,00,00),B(sx_obj ,163),I(3b,02,25,00),B(sx_obj ,29),I(86,25,00,00),B(sx_obj ,28),I(23,00,00,00),B(sx_obj ,202),I(23,00,00,00),B(sx_obj ,162),I(3b,02,25,00),B(sx_obj ,27),I(23,00,00,00),B(sx_obj ,203),I(23,00,00,00),B(sx_obj ,161),I(3b,01,25,00),B(sx_obj ,26),I(23,00,00,00),B(sx_obj ,204),I(23,00,00,00),B(sx_obj ,160),I(3b,01,25,00),B(sx_obj ,25),I(23,00,00,00),B(sx_obj ,205),I(23,00,00,00),B(sx_obj ,159),I(3b,02,25,00),B(sx_obj ,24),I(23,00,00,00),B(sx_obj ,206),I(23,00,00,00),B(sx_obj ,158),I(3b,01,25,00),B(sx_obj ,23),I(23,00,00,00),B(sx_obj ,207),I(23,00,00,00),B(sx_obj ,157),I(3b,02,25,00),B(sx_obj ,22),I(86,25,00,00),B(sx_obj ,21),I(23,00,00,00),B(sx_obj ,208),I(23,00,00,00),B(sx_obj ,156),I(3b,01,25,00),B(sx_obj ,20),I(23,00,00,00),B(sx_obj ,209),I(23,00,00,00),B(sx_obj ,155),I(3b,01,25,00),B(sx_obj ,19),I(23,00,00,00),B(sx_obj ,210),I(23,00,00,00),B(sx_obj ,154),I(3b,01,25,00),B(sx_obj ,18),I(86,25,00,00),B(sx_obj ,17),I(23,00,00,00),B(sx_obj ,211),I(23,00,00,00),B(sx_obj ,153),I(3b,01,25,00),B(sx_obj ,16),I(23,00,00,00),B(sx_obj ,212),I(23,00,00,00),B(sx_obj ,151),I(3b,01,25,00),B(sx_obj ,15),I(23,00,00,00),B(sx_obj ,213),I(23,00,00,00),B(sx_obj ,150),I(3b,01,25,00),B(sx_obj ,14),I(86,25,00,00),B(sx_obj ,13),I(86,25,00,00),B(sx_obj ,12),I(86,25,00,00),B(sx_obj ,11),I(23,00,00,00),B(sx_obj ,214),I(23,00,00,00),B(sx_obj ,149),I(3b,01,25,00),B(sx_obj ,10),I(23,00,00,00),B(sx_obj ,215),I(23,00,00,00),B(sx_obj ,148),I(3b,01,25,00),B(sx_obj ,9),I(86,25,00,00),B(sx_obj ,8),I(86,25,00,00),B(sx_obj ,7),I(23,00,00,00),B(sx_obj ,216),I(23,00,00,00),B(sx_obj ,147),I(3b,02,25,00),B(sx_obj ,6),I(23,00,00,00),B(sx_obj ,217),I(23,00,00,00),B(sx_obj ,146),I(3b,01,25,00),B(sx_obj ,5),I(23,00,00,00),B(sx_obj ,218),I(23,00,00,00),B(sx_obj ,145),I(3b,01,25,00),B(sx_obj ,4),I(23,00,00,00),B(sx_obj ,219),I(23,00,00,00),B(sx_obj ,144),I(3b,01,25,00),B(sx_obj ,3),I(86,25,00,00),B(sx_obj ,2),I(23,00,00,00),B(sx_obj ,220),I(23,00,00,00),B(sx_obj ,143),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G002185,G002184);
  eul_allocate_bytevector( G002187,G002186);
  eul_allocate_bytevector( G002189,G002188);
  eul_allocate_bytevector( G002191,G002190);
  eul_allocate_bytevector( G002193,G002192);
  eul_allocate_bytevector( G002195,G002194);
  eul_allocate_bytevector( G002197,G002196);
  eul_allocate_bytevector( G002199,G002198);
  eul_allocate_bytevector( G002201,G002200);
  eul_allocate_bytevector( G002203,G002202);
  eul_allocate_bytevector( G002205,G002204);
  eul_allocate_bytevector( G002207,G002206);
  eul_allocate_bytevector( G002209,G002208);
  eul_allocate_bytevector( G002211,G002210);
  eul_allocate_bytevector( G002213,G002212);
  eul_allocate_bytevector( G002215,G002214);
  eul_allocate_bytevector( G002217,G002216);
  eul_allocate_bytevector( G002219,G002218);
  eul_allocate_bytevector( G002221,G002220);
  eul_allocate_bytevector( G002223,G002222);
  eul_allocate_bytevector( G002225,G002224);
  eul_allocate_bytevector( G002227,G002226);
  eul_allocate_bytevector( G002229,G002228);
  eul_allocate_bytevector( G002231,G002230);
  eul_allocate_bytevector( G002233,G002232);
  eul_allocate_bytevector( G002235,G002234);
  eul_allocate_bytevector( G002237,G002236);
  eul_allocate_bytevector( G002239,G002238);
  eul_allocate_bytevector( G002241,G002240);
  eul_allocate_bytevector( G002243,G002242);
  eul_intern_keyword(key_2246,"name");
  eul_intern_symbol(sym_2247,"name");
  eul_intern_keyword(key_2248,"default");
  eul_intern_symbol(sym_2249,"anonymous");
  eul_intern_keyword(key_2250,"keyword");
  eul_intern_symbol(sym_2251,"binding");
  eul_intern_keyword(key_2252,"binding");
  eul_intern_symbol(sym_2253,"args");
  eul_intern_keyword(key_2254,"args");
  eul_intern_symbol(sym_2255,"arity");
  eul_intern_keyword(key_2256,"arity");
  eul_intern_symbol(sym_2257,"range-and-domain");
  eul_intern_keyword(key_2258,"range-and-domain");
  eul_intern_symbol(sym_2259,"body");
  eul_intern_keyword(key_2260,"body");
  eul_intern_symbol(sym_2261,"appls");
  eul_intern_keyword(key_2262,"appls");
  eul_intern_symbol(sym_2263,"has-unknown-appls");
  eul_intern_keyword(key_2264,"has-unknown-appls");
  eul_intern_symbol(sym_2265,"fun");
  eul_intern_keyword(key_2266,"direct-superclasses");
  eul_intern_keyword(key_2267,"direct-slots");
  eul_intern_keyword(key_2268,"direct-keywords");
  object_class(cons_2276) = eul_static_cons_class;
  eul_car(cons_2276) = key_2246;
  eul_cdr(cons_2276) = eul_nil;
  object_class(cons_2275) = eul_static_cons_class;
  eul_car(cons_2275) = key_2252;
  object_class(cons_2274) = eul_static_cons_class;
  eul_car(cons_2274) = key_2254;
  object_class(cons_2273) = eul_static_cons_class;
  eul_car(cons_2273) = key_2256;
  object_class(cons_2272) = eul_static_cons_class;
  eul_car(cons_2272) = key_2258;
  object_class(cons_2271) = eul_static_cons_class;
  eul_car(cons_2271) = key_2260;
  object_class(cons_2270) = eul_static_cons_class;
  eul_car(cons_2270) = key_2262;
  object_class(cons_2269) = eul_static_cons_class;
  eul_car(cons_2269) = key_2264;
  eul_intern_symbol(sym_2277,"inlined");
  eul_intern_keyword(key_2278,"inlined");
  eul_intern_symbol(sym_2279,"delegated-vars");
  eul_intern_keyword(key_2280,"delegated-vars");
  eul_intern_symbol(sym_2281,"binding-refs");
  eul_intern_keyword(key_2282,"binding-refs");
  eul_intern_symbol(sym_2283,"lambda");
  object_class(cons_2286) = eul_static_cons_class;
  eul_car(cons_2286) = key_2278;
  eul_cdr(cons_2286) = eul_nil;
  object_class(cons_2285) = eul_static_cons_class;
  eul_car(cons_2285) = key_2280;
  object_class(cons_2284) = eul_static_cons_class;
  eul_car(cons_2284) = key_2282;
  eul_intern_symbol(sym_2287,"opencoding");
  eul_intern_symbol(sym_2288,"let*");
  eul_intern_keyword(key_2289,"fun");
  eul_intern_symbol(sym_2290,"appl");
  object_class(cons_2292) = eul_static_cons_class;
  eul_car(cons_2292) = key_2289;
  eul_cdr(cons_2292) = eul_nil;
  object_class(cons_2291) = eul_static_cons_class;
  eul_car(cons_2291) = key_2254;
  eul_intern_symbol(sym_2293,"call-next-method");
  eul_intern_symbol(sym_2294,"pred");
  eul_intern_keyword(key_2295,"pred");
  eul_intern_symbol(sym_2296,"then");
  eul_intern_keyword(key_2297,"then");
  eul_intern_symbol(sym_2298,"else");
  eul_intern_keyword(key_2299,"else");
  eul_intern_symbol(sym_2300,"if");
  object_class(cons_2303) = eul_static_cons_class;
  eul_car(cons_2303) = key_2295;
  eul_cdr(cons_2303) = eul_nil;
  object_class(cons_2302) = eul_static_cons_class;
  eul_car(cons_2302) = key_2297;
  object_class(cons_2301) = eul_static_cons_class;
  eul_car(cons_2301) = key_2299;
  eul_intern_symbol(sym_2304,"fun?");
  eul_intern_symbol(sym_2305,"lambda?");
  eul_intern_symbol(sym_2306,"opencoding?");
  eul_intern_symbol(sym_2307,"let*?");
  eul_intern_symbol(sym_2308,"appl?");
  eul_intern_symbol(sym_2309,"call-next-method?");
  eul_intern_symbol(sym_2310,"if?");
  eul_intern_symbol(sym_2311,"(method fun?)");
  eul_intern_symbol(sym_2312,"(method lambda?)");
  eul_intern_symbol(sym_2313,"(method opencoding?)");
  eul_intern_symbol(sym_2314,"(method let*?)");
  eul_intern_symbol(sym_2315,"(method appl?)");
  eul_intern_symbol(sym_2316,"(method call-next-method?)");
  eul_intern_symbol(sym_2317,"(method if?)");
  eul_allocate_bytevector( G002245,G002244);
  eul_allocate_bytevector( G002319,G002318);
  eul_allocate_bytevector( G002321,G002320);
  eul_allocate_bytevector( G002323,G002322);
  eul_allocate_bytevector( G002325,G002324);
  eul_allocate_bytevector( G002327,G002326);
  eul_allocate_bytevector( G002329,G002328);
  eul_allocate_bytevector( G002331,G002330);
  eul_allocate_bytevector( G002333,G002332);
  eul_intern_symbol(sym_2336,"*actual-module*");
  eul_allocate_bytevector( G002335,G002334);
  eul_allocate_bytevector( G002338,G002337);
  eul_allocate_bytevector( G002340,G002339);
  eul_allocate_bytevector( G002342,G002341);
  eul_allocate_bytevector( G002344,G002343);
  eul_allocate_bytevector( G002346,G002345);
  eul_allocate_bytevector( G002348,G002347);
  eul_allocate_bytevector( G002350,G002349);
  eul_allocate_bytevector( G002352,G002351);
  eul_allocate_bytevector( G002354,G002353);
  eul_allocate_bytevector( G002356,G002355);
  eul_allocate_bytevector( G002358,G002357);
  eul_allocate_bytevector( G002360,G002359);
  eul_allocate_bytevector( G002362,G002361);
  eul_allocate_bytevector( G002364,G002363);
  eul_allocate_bytevector( G002366,G002365);
  eul_allocate_bytevector( G002368,G002367);
  eul_allocate_bytevector( G002370,G002369);
  eul_allocate_bytevector( G002372,G002371);
  eul_allocate_bytevector( G002374,G002373);
  eul_allocate_bytevector( G002376,G002375);
  eul_allocate_bytevector( G002378,G002377);
  eul_allocate_bytevector( G002380,G002379);
  eul_allocate_bytevector( G002382,G002381);
  eul_allocate_bytevector( G002384,G002383);
  eul_allocate_bytevector( G002386,G002385);
  eul_allocate_bytevector( G002388,G002387);
  eul_allocate_bytevector( G002390,G002389);
  eul_allocate_bytevector( G002392,G002391);
  eul_allocate_bytevector( G002394,G002393);
  eul_intern_symbol(sym_2397,"appl-args?");
  eul_intern_symbol(sym_2398,"fun-has-unknown-appls!");
  eul_intern_symbol(sym_2399,"fun-args!");
  eul_intern_symbol(sym_2400,"lambda-binding-refs?");
  eul_intern_symbol(sym_2401,"appl-args!");
  eul_intern_symbol(sym_2402,"fun-name!");
  eul_intern_symbol(sym_2403,"fun-binding!");
  eul_intern_symbol(sym_2404,"fun-has-unknown-appls?");
  eul_intern_symbol(sym_2405,"fun-appls?");
  eul_intern_symbol(sym_2406,"lambda-binding-refs!");
  eul_intern_symbol(sym_2407,"fun-arity!");
  eul_intern_symbol(sym_2408,"origin-name?");
  eul_intern_symbol(sym_2409,"lambda-inlined!");
  eul_intern_symbol(sym_2410,"if-pred!");
  eul_intern_symbol(sym_2411,"binding!");
  eul_intern_symbol(sym_2412,"fun-appls!");
  eul_intern_symbol(sym_2413,"fun-body!");
  eul_intern_symbol(sym_2414,"fun-args?");
  eul_intern_symbol(sym_2415,"if-then!");
  eul_intern_symbol(sym_2416,"appl-fun!");
  eul_intern_symbol(sym_2417,"fun-name?");
  eul_intern_symbol(sym_2418,"save-binding-local-name?");
  eul_intern_symbol(sym_2419,"lambda-delegated-vars!");
  eul_intern_symbol(sym_2420,"if-else?");
  eul_intern_symbol(sym_2421,"if-else!");
  eul_intern_symbol(sym_2422,"lambda-inlined?");
  eul_intern_symbol(sym_2423,"if-pred?");
  eul_intern_symbol(sym_2424,"appl-fun?");
  eul_intern_symbol(sym_2425,"save-binding-module-name?");
  eul_intern_symbol(sym_2426,"fun-arity?");
  eul_intern_symbol(sym_2427,"if-then?");
  eul_intern_symbol(sym_2428,"local-name?");
  eul_intern_symbol(sym_2429,"fun-range-and-domain?");
  eul_intern_symbol(sym_2430,"fun-range-and-domain!");
  eul_intern_symbol(sym_2431,"lambda-delegated-vars?");
  eul_intern_symbol(sym_2432,"fun-body?");
  eul_intern_symbol(sym_2433,"fun-binding?");
  eul_intern_symbol(sym_2434,"top-level");
  eul_allocate_bytevector( G002396,G002395);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 53; i++)
      sx_obj_bindings[i] = eul_nil;
  }

  sx_obj_bindings[ 53] = G002185;
  sx_obj_bindings[ 54] = G002187;
  sx_obj_bindings[ 55] = G002189;
  sx_obj_bindings[ 56] = G002191;
  sx_obj_bindings[ 57] = G002193;
  sx_obj_bindings[ 58] = G002195;
  sx_obj_bindings[ 59] = G002197;
  sx_obj_bindings[ 60] = G002199;
  sx_obj_bindings[ 61] = G002201;
  sx_obj_bindings[ 62] = G002203;
  sx_obj_bindings[ 63] = G002205;
  sx_obj_bindings[ 64] = G002207;
  sx_obj_bindings[ 65] = G002209;
  sx_obj_bindings[ 66] = G002211;
  sx_obj_bindings[ 67] = G002213;
  sx_obj_bindings[ 68] = G002215;
  sx_obj_bindings[ 69] = G002217;
  sx_obj_bindings[ 70] = G002219;
  sx_obj_bindings[ 71] = G002221;
  sx_obj_bindings[ 72] = G002223;
  sx_obj_bindings[ 73] = G002225;
  sx_obj_bindings[ 74] = G002227;
  sx_obj_bindings[ 75] = G002229;
  sx_obj_bindings[ 76] = G002231;
  sx_obj_bindings[ 77] = G002233;
  sx_obj_bindings[ 78] = G002235;
  sx_obj_bindings[ 79] = G002237;
  sx_obj_bindings[ 80] = G002239;
  sx_obj_bindings[ 81] = G002241;
  sx_obj_bindings[ 82] = G002243;
  sx_obj_bindings[ 83] = key_2246;
  sx_obj_bindings[ 84] = sym_2247;
  sx_obj_bindings[ 85] = key_2248;
  sx_obj_bindings[ 86] = sym_2249;
  sx_obj_bindings[ 87] = key_2250;
  sx_obj_bindings[ 88] = sym_2251;
  sx_obj_bindings[ 89] = key_2252;
  sx_obj_bindings[ 90] = sym_2253;
  sx_obj_bindings[ 91] = key_2254;
  sx_obj_bindings[ 92] = sym_2255;
  sx_obj_bindings[ 93] = key_2256;
  sx_obj_bindings[ 94] = sym_2257;
  sx_obj_bindings[ 95] = key_2258;
  sx_obj_bindings[ 96] = sym_2259;
  sx_obj_bindings[ 97] = key_2260;
  sx_obj_bindings[ 98] = sym_2261;
  sx_obj_bindings[ 99] = key_2262;
  sx_obj_bindings[ 100] = sym_2263;
  sx_obj_bindings[ 101] = key_2264;
  sx_obj_bindings[ 102] = sym_2265;
  sx_obj_bindings[ 103] = key_2266;
  sx_obj_bindings[ 104] = key_2267;
  sx_obj_bindings[ 105] = key_2268;
  sx_obj_bindings[ 106] = cons_2269;
  sx_obj_bindings[ 107] = sym_2277;
  sx_obj_bindings[ 108] = key_2278;
  sx_obj_bindings[ 109] = sym_2279;
  sx_obj_bindings[ 110] = key_2280;
  sx_obj_bindings[ 111] = sym_2281;
  sx_obj_bindings[ 112] = key_2282;
  sx_obj_bindings[ 113] = sym_2283;
  sx_obj_bindings[ 114] = cons_2284;
  sx_obj_bindings[ 115] = sym_2287;
  sx_obj_bindings[ 116] = sym_2288;
  sx_obj_bindings[ 117] = key_2289;
  sx_obj_bindings[ 118] = sym_2290;
  sx_obj_bindings[ 119] = cons_2291;
  sx_obj_bindings[ 120] = sym_2293;
  sx_obj_bindings[ 121] = sym_2294;
  sx_obj_bindings[ 122] = key_2295;
  sx_obj_bindings[ 123] = sym_2296;
  sx_obj_bindings[ 124] = key_2297;
  sx_obj_bindings[ 125] = sym_2298;
  sx_obj_bindings[ 126] = key_2299;
  sx_obj_bindings[ 127] = sym_2300;
  sx_obj_bindings[ 128] = cons_2301;
  sx_obj_bindings[ 129] = sym_2304;
  sx_obj_bindings[ 130] = sym_2305;
  sx_obj_bindings[ 131] = sym_2306;
  sx_obj_bindings[ 132] = sym_2307;
  sx_obj_bindings[ 133] = sym_2308;
  sx_obj_bindings[ 134] = sym_2309;
  sx_obj_bindings[ 135] = sym_2310;
  sx_obj_bindings[ 136] = sym_2311;
  sx_obj_bindings[ 137] = sym_2312;
  sx_obj_bindings[ 138] = sym_2313;
  sx_obj_bindings[ 139] = sym_2314;
  sx_obj_bindings[ 140] = sym_2315;
  sx_obj_bindings[ 141] = sym_2316;
  sx_obj_bindings[ 142] = sym_2317;
  sx_obj_bindings[ 143] = G002245;
  sx_obj_bindings[ 144] = G002319;
  sx_obj_bindings[ 145] = G002321;
  sx_obj_bindings[ 146] = G002323;
  sx_obj_bindings[ 147] = G002325;
  sx_obj_bindings[ 148] = G002327;
  sx_obj_bindings[ 149] = G002329;
  sx_obj_bindings[ 150] = G002331;
  sx_obj_bindings[ 151] = G002333;
  sx_obj_bindings[ 152] = sym_2336;
  sx_obj_bindings[ 153] = G002335;
  sx_obj_bindings[ 154] = G002338;
  sx_obj_bindings[ 155] = G002340;
  sx_obj_bindings[ 156] = G002342;
  sx_obj_bindings[ 157] = G002344;
  sx_obj_bindings[ 158] = G002346;
  sx_obj_bindings[ 159] = G002348;
  sx_obj_bindings[ 160] = G002350;
  sx_obj_bindings[ 161] = G002352;
  sx_obj_bindings[ 162] = G002354;
  sx_obj_bindings[ 163] = G002356;
  sx_obj_bindings[ 164] = G002358;
  sx_obj_bindings[ 165] = G002360;
  sx_obj_bindings[ 166] = G002362;
  sx_obj_bindings[ 167] = G002364;
  sx_obj_bindings[ 168] = G002366;
  sx_obj_bindings[ 169] = G002368;
  sx_obj_bindings[ 170] = G002370;
  sx_obj_bindings[ 171] = G002372;
  sx_obj_bindings[ 172] = G002374;
  sx_obj_bindings[ 173] = G002376;
  sx_obj_bindings[ 174] = G002378;
  sx_obj_bindings[ 175] = G002380;
  sx_obj_bindings[ 176] = G002382;
  sx_obj_bindings[ 177] = G002384;
  sx_obj_bindings[ 178] = G002386;
  sx_obj_bindings[ 179] = G002388;
  sx_obj_bindings[ 180] = G002390;
  sx_obj_bindings[ 181] = G002392;
  sx_obj_bindings[ 182] = G002394;
  sx_obj_bindings[ 1] = eul_nil;
  sx_obj_bindings[ 183] = sym_2397;
  sx_obj_bindings[ 184] = sym_2398;
  sx_obj_bindings[ 185] = sym_2399;
  sx_obj_bindings[ 186] = sym_2400;
  sx_obj_bindings[ 187] = sym_2401;
  sx_obj_bindings[ 188] = sym_2402;
  sx_obj_bindings[ 189] = sym_2403;
  sx_obj_bindings[ 190] = sym_2404;
  sx_obj_bindings[ 191] = sym_2405;
  sx_obj_bindings[ 192] = sym_2406;
  sx_obj_bindings[ 193] = sym_2407;
  sx_obj_bindings[ 194] = sym_2408;
  sx_obj_bindings[ 195] = sym_2409;
  sx_obj_bindings[ 196] = sym_2410;
  sx_obj_bindings[ 197] = sym_2411;
  sx_obj_bindings[ 198] = sym_2412;
  sx_obj_bindings[ 199] = sym_2413;
  sx_obj_bindings[ 200] = sym_2414;
  sx_obj_bindings[ 201] = sym_2415;
  sx_obj_bindings[ 202] = sym_2416;
  sx_obj_bindings[ 203] = sym_2417;
  sx_obj_bindings[ 204] = sym_2418;
  sx_obj_bindings[ 205] = sym_2419;
  sx_obj_bindings[ 206] = sym_2420;
  sx_obj_bindings[ 207] = sym_2421;
  sx_obj_bindings[ 208] = sym_2422;
  sx_obj_bindings[ 209] = sym_2423;
  sx_obj_bindings[ 210] = sym_2424;
  sx_obj_bindings[ 211] = sym_2425;
  sx_obj_bindings[ 212] = sym_2426;
  sx_obj_bindings[ 213] = sym_2427;
  sx_obj_bindings[ 214] = sym_2428;
  sx_obj_bindings[ 215] = sym_2429;
  sx_obj_bindings[ 216] = sym_2430;
  sx_obj_bindings[ 217] = sym_2431;
  sx_obj_bindings[ 218] = sym_2432;
  sx_obj_bindings[ 219] = sym_2433;
  sx_obj_bindings[ 220] = sym_2434;
  eul_allocate_lambda( sx_obj_bindings[0], "initialize-sx-obj", 0, G002396);

  }
}
Example #18
0
INLINE BOOL pair_p (D instance) {
  return(object_class(instance) == LpairGVKd);
}
Example #19
0
/* Initialize module mop-defcl */
void initialize_module_mop_defcl()
{
  if (is_initialized) return;
  initialize_module_boot();
  initialize_module_mop_prim();
  initialize_module_mop_inspect();
  initialize_module_mop_key();
  initialize_module_mop_class();
  initialize_module_mop_init();
  initialize_module_mop_gf();
  initialize_module_mop_meth();
  eul_fast_table_set(eul_modules,"mop_defcl",(LispRef) mop_defcl_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_2670, sym_2669, sym_2668, sym_2667, sym_2666, sym_2665, sym_2664, G002663, key_2661, G002660, G002658, G002656, G002654, G002651, G002649, G002647, G002645, G002643, G002641, sym_2639, sym_2638, sym_2637, sym_2636, sym_2634, sym_2632, sym_2631, sym_2630, sym_2629, sym_2628, sym_2627, G002626, G002624, G002622, G002620, G002618, G002616, G002614, G002612, G002610, G002608, G002606, G002604, G002602, G002600, G002598, G002596, G002594, G002592, G002590, G002588, G002586, G002584, G002582, G002580, G002578, G002576, G002574, G002572, G002570, G002568;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 2 is_init: 0 index: 14 binding: anonymous */
  static const void *G002567[] = {I(ab,1c,8a,0b),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 15 binding: anonymous */
  static const void *G002569[] = {I(ab,1c,8a,0a),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 16 binding: anonymous */
  static const void *G002571[] = {I(ab,1c,8a,09),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 17 binding: anonymous */
  static const void *G002573[] = {I(ab,1c,8a,08),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 18 binding: anonymous */
  static const void *G002575[] = {I(ab,1c,8a,07),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 19 binding: anonymous */
  static const void *G002577[] = {I(ab,1c,8a,06),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 20 binding: anonymous */
  static const void *G002579[] = {I(ab,1c,8a,05),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 21 binding: anonymous */
  static const void *G002581[] = {I(ab,1c,8a,04),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 22 binding: anonymous */
  static const void *G002583[] = {I(ab,1c,8a,03),I(1d,03,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 23 binding: anonymous */
  static const void *G002585[] = {I(ab,1c,84,1d),I(03,45,02,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 24 binding: anonymous */
  static const void *G002587[] = {I(ab,1c,83,1d),I(03,45,02,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 25 binding: anonymous */
  static const void *G002589[] = {I(ab,1c,82,1d),I(03,45,02,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 26 binding: anonymous */
  static const void *G002591[] = {I(aa,8a,0b,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 27 binding: anonymous */
  static const void *G002593[] = {I(aa,8a,0a,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 28 binding: anonymous */
  static const void *G002595[] = {I(aa,8a,09,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 29 binding: anonymous */
  static const void *G002597[] = {I(aa,8a,08,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 30 binding: anonymous */
  static const void *G002599[] = {I(aa,8a,07,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 31 binding: anonymous */
  static const void *G002601[] = {I(aa,8a,06,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 32 binding: anonymous */
  static const void *G002603[] = {I(aa,8a,05,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 33 binding: anonymous */
  static const void *G002605[] = {I(aa,8a,04,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 34 binding: anonymous */
  static const void *G002607[] = {I(aa,8a,03,02),I(45,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 35 binding: anonymous */
  static const void *G002609[] = {I(aa,84,02,45),I(00,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 36 binding: anonymous */
  static const void *G002611[] = {I(aa,83,02,45),I(00,00,00,00)};

  /* Byte-vector with size: 2 is_init: 0 index: 37 binding: anonymous */
  static const void *G002613[] = {I(aa,82,02,45),I(00,00,00,00)};

  /* Byte-vector with size: 24 is_init: 0 index: 38 binding: (setter-slot-value) */
  static const void *G002615[] = {I(43,03,1d,04),I(1b,04,24,00),B(mop_inspect ,6),I(3c,01,1b,44),I(21,24,00,00),B(mop_inspect ,10),I(24,00,00,00),B(boot1 ,42),I(3c,01,1f,05),I(1f,05,1f,05),I(1f,03,3d,03),I(06,22,01,36),I(2e,24,00,00),B(mop_defcl ,11),I(24,00,00,00),B(boot1 ,42),I(3c,01,1f,05),I(04,1b,1f,06),I(24,00,00,00),B(mop_defcl ,9),I(3c,02,1b,1f),I(08,1f,07,1f),I(05,3d,03,08),I(22,03,45,05)};

  /* Byte-vector with size: 6 is_init: 0 index: 39 binding: (method-(setter slot-value-using-slot)) */
  static const void *G002617[] = {I(43,03,1d,82),I(02,1b,24,00),B(boot1 ,42),I(3c,01,1f,03),I(1f,03,1d,3d),I(02,05,45,05)};

  /* Byte-vector with size: 3 is_init: 0 index: 40 binding: (method-slot-value-using-slot) */
  static const void *G002619[] = {I(ab,1c,82,02),I(1c,1c,3d,01),I(03,45,03,00)};

  /* Byte-vector with size: 11 is_init: 0 index: 41 binding: (method-remove-class) */
  static const void *G002621[] = {I(aa,1b,84,02),I(10,1b,8a,03),I(02,1d,1c,24),B(boot ,18),I(3c,02,1d,1c),I(1c,8a,03,1d),I(03,22,02,2a),I(24,00,00,00),B(mop_init ,2),I(3c,00,2a,1f),I(03,45,04,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 42 binding: (method-add-subclass) */
  static const void *G002623[] = {I(ab,1c,8a,03),I(02,1c,1c,0f),I(1f,03,1c,1c),I(8a,03,1d,03),I(45,06,00,00)};

  eul_allocate_static_cons(cons_2635, NULL, NULL);
  eul_allocate_static_cons(cons_2633, NULL, eul_as_static(cons_2635));
  /* Byte-vector with size: 532 is_init: 0 index: 55 binding: top-level */
  static const void *G002625[] = {I(a9,8a,0c,89),B(mop_defcl ,7),I(2a,84,24,00),B(mop_class ,86),I(24,00,00,00),B(mop_class ,86),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(mop_defcl ,43),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(mop_defcl ,10),I(2a,83,24,00),B(mop_class ,86),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(mop_defcl ,44),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(mop_defcl ,4),I(2a,84,24,00),B(mop_class ,57),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(mop_defcl ,45),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(mop_defcl ,11),I(2a,86,8a,0c),I(01,1b,89,00),B(mop_defcl ,2),I(2a,86,8a,0c),I(01,1b,89,00),B(mop_defcl ,5),I(2a,24,00,00),B(mop_defcl ,10),I(2a,24,00,00),B(mop_defcl ,10),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,86),I(24,00,00,00),B(mop_class ,86),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_defcl ,10),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(mop_defcl ,46),I(23,00,00,00),B(mop_defcl ,42),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_defcl ,10),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(mop_defcl ,4),I(2a,24,00,00),B(mop_defcl ,4),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,86),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_defcl ,4),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(mop_defcl ,47),I(23,00,00,00),B(mop_defcl ,41),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_defcl ,4),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(mop_defcl ,11),I(2a,24,00,00),B(mop_defcl ,11),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,57),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_defcl ,11),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(mop_defcl ,48),I(23,00,00,00),B(mop_defcl ,40),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(mop_defcl ,11),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,8a,03),I(24,00,00,00),B(mop_class ,57),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,04,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(mop_defcl ,50),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,24,00),B(mop_defcl ,11),I(1c,1f,06,3c),I(02,2a,24,00),B(mop_defcl ,11),I(24,00,00,00),B(boot1 ,42),I(3c,01,2a,24),B(mop_defcl ,11),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(mop_defcl ,11),I(24,00,00,00),B(boot1 ,42),I(3c,01,1b,8a),I(03,02,8a,03),I(24,00,00,00),B(mop_class ,57),I(86,86,24,00),B(boot1 ,40),I(3c,04,24,00),B(boot1 ,26),I(3c,00,24,00),B(mop_defcl ,11),I(24,00,00,00),B(boot1 ,42),I(3c,01,1b,8a),I(04,02,1d,1c),I(24,00,00,00),B(boot ,8),I(3c,02,1f,05),I(1f,05,23,00),B(mop_defcl ,51),I(23,00,00,00),B(mop_defcl ,39),I(3b,03,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,1f,08),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(mop_defcl ,8),I(23,00,00,00),B(mop_defcl ,52),I(23,00,00,00),B(mop_defcl ,38),I(3b,03,1d,3c),I(02,2a,24,00),B(mop_defcl ,2),I(82,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,37),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(83,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,36),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(84,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,35),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,03,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,34),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,04,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,33),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,05,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,32),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,06,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,31),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,07,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,30),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,08,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,29),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,09,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,28),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,0a,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,27),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,2),I(8a,0b,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,26),I(3b,01,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(82,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,25),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(83,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,24),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(84,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,23),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,03,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,22),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,04,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,21),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,05,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,20),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,06,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,19),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,07,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,18),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,08,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,17),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,09,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,16),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,0a,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,15),I(3b,02,03,2a),I(24,00,00,00),B(mop_defcl ,5),I(8a,0b,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,14),I(3b,02,03,2a),I(24,00,00,00),B(mop_class ,75),I(24,00,00,00),B(mop_class ,78),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,24,00),B(mop_class ,81),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,86),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,27),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,90),I(24,00,00,00),B(mop_class ,42),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,1b,10),I(1c,11,1b,10),I(1f,03,11,1b),I(11,1b,10,1f),I(05,1f,04,1d),I(24,00,00,00),B(boot1 ,26),I(3c,03,24,00),B(mop_class ,44),I(24,00,00,00),B(mop_class ,50),I(8a,03,24,00),B(mop_defcl ,12),I(3c,03,24,00),B(mop_class ,32),I(1d,1c,8a,04),I(1d,03,22,02),I(2a,1c,1c,24),B(boot ,8),I(3c,02,24,00),B(mop_class ,2),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,51),I(1f,0a,1c,8a),I(04,1d,03,22),I(02,2a,24,00),B(mop_class ,16),I(1f,0a,1c,8a),I(04,1d,03,22),I(02,2a,24,00),B(mop_class ,2),I(23,00,00,00),B(mop_defcl ,54),I(24,00,00,00),B(mop_defcl ,9),I(3c,02,1b,24),B(mop_class ,76),I(1c,82,1d,03),I(22,02,2a,24),B(mop_class ,76),I(24,00,00,00),B(boot1 ,42),I(3c,01,1c,1c),I(1c,83,1d,03),I(22,02,2a,24),B(mop_class ,31),I(24,00,00,00),B(mop_class ,40),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,24,00),B(mop_class ,25),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,63),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,33),I(24,00,00,00),B(mop_class ,4),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,1b,10),I(1c,11,1b,10),I(1d,1c,24,00),B(boot1 ,26),I(3c,02,24,00),B(mop_class ,57),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,59),I(1f,05,1c,8a),I(04,1d,03,22),I(02,2a,24,00),B(mop_class ,3),I(24,00,00,00),B(mop_class ,89),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,24,00),B(mop_class ,39),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,5),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,92),I(1c,1c,8a,04),I(1d,03,22,02),I(2a,24,00,00),B(mop_class ,53),I(24,00,00,00),B(mop_class ,46),I(24,00,00,00),B(mop_defcl ,12),I(3c,02,24,00),B(mop_class ,82),I(1c,1c,8a,04),I(1d,03,45,46)};

  /* Byte-vector with size: 3 is_init: 0 index: 56 binding: anonymous */
  static const void *G002640[] = {I(ab,1c,47,00),I(00,1d,03,45),I(02,00,00,00)};

  /* Byte-vector with size: 12 is_init: 0 index: 57 binding: predefined-writer */
  static const void *G002642[] = {I(aa,46,01,1b),I(48,00,00,47),I(00,00,8a,0c),I(1a,1b,44,0f),I(24,00,00,00),B(mop_defcl ,5),I(47,00,00,02),I(36,11,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,56),I(3b,02,45,02)};

  /* Byte-vector with size: 2 is_init: 0 index: 58 binding: anonymous */
  static const void *G002644[] = {I(aa,1b,47,00),I(00,02,45,01)};

  /* Byte-vector with size: 12 is_init: 0 index: 59 binding: predefined-reader */
  static const void *G002646[] = {I(aa,46,01,1b),I(48,00,00,47),I(00,00,8a,0c),I(1a,1b,44,0f),I(24,00,00,00),B(mop_defcl ,2),I(47,00,00,02),I(36,11,23,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,58),I(3b,01,45,02)};

  /* Byte-vector with size: 16 is_init: 0 index: 60 binding: slot-value */
  static const void *G002648[] = {I(ab,1c,04,1b),I(04,24,00,00),B(mop_inspect ,6),I(3c,01,1b,44),I(11,1f,03,1f),I(03,24,00,00),B(mop_inspect ,10),I(3d,02,04,36),I(1d,1f,03,04),I(1b,1f,04,24),B(mop_defcl ,9),I(3c,02,1b,1f),I(06,24,00,00),B(mop_defcl ,11),I(3d,02,06,22),I(02,45,04,00)};

  eul_allocate_static_string(str_2652, "slot ~a not found in class ~a", 29);
  /* Byte-vector with size: 15 is_init: 0 index: 62 binding: anonymous */
  static const void *G002650[] = {I(aa,1b,12,1b),I(44,18,86,23),B(mop_defcl ,61),I(47,00,01,47),I(00,00,24,00),B(boot ,13),I(3d,04,02,36),I(1c,1c,10,1b),I(84,02,1b,47),I(00,01,50,1b),I(44,04,1d,36),I(0a,1f,04,11),I(47,00,02,3d),I(01,05,22,03),I(45,02,00,00)};

  /* Byte-vector with size: 13 is_init: 0 index: 63 binding: find-slot */
  static const void *G002653[] = {I(ab,46,03,1c),I(48,00,00,1b),I(48,00,01,86),I(1b,48,00,02),I(23,00,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,62),I(3b,01,48,00),I(02,47,00,00),I(8a,04,02,47),I(00,02,3d,01),I(03,45,03,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 64 binding: anonymous */
  static const void *G002655[] = {I(43,04,1f,03),I(12,1b,44,0e),I(1c,24,00,00),B(boot ,28),I(3d,01,05,36),I(29,1f,04,10),I(1f,04,10,1c),I(1f,05,1d,24),B(mop_defcl ,13),I(3c,03,1f,07),I(11,1f,07,11),I(1f,07,83,14),I(1f,03,1f,08),I(0f,47,00,00),I(3d,04,08,22),I(03,45,05,00)};

  /* Byte-vector with size: 13 is_init: 0 index: 65 binding: make-slotds */
  static const void *G002657[] = {I(43,fd,46,01),I(86,1b,48,00),I(00,23,00,00),B(mop_defcl ,53),I(23,00,00,00),B(mop_defcl ,64),I(3b,04,48,00),I(00,1c,44,05),I(1c,10,36,02),I(82,1f,04,1f),I(04,1d,86,47),I(00,00,3d,04),I(05,45,05,00)};

  /* Byte-vector with size: 30 is_init: 0 index: 67 binding: primitive-make-slot */
  static const void *G002659[] = {I(43,03,24,00),B(mop_class ,59),I(8a,06,01,1b),I(1f,04,1c,84),I(1d,03,22,02),I(2a,1f,03,82),I(02,1b,41,00),B(boot1 ,57),I(22,01,1d,1c),I(1c,8a,03,1d),I(03,22,02,2a),I(1f,03,23,00),B(mop_defcl ,66),I(50,1f,03,1c),I(1c,8a,05,1d),I(03,22,02,2a),I(1f,03,1f,05),I(1c,8a,04,1d),I(03,22,02,2a),I(1f,05,24,00),B(mop_defcl ,6),I(3c,01,1f,04),I(1c,1c,82,1d),I(03,22,02,2a),I(1f,06,24,00),B(mop_defcl ,3),I(3c,01,1f,05),I(1c,1c,83,1d),I(03,22,02,2a),I(1f,05,45,09)};

  /* Byte-vector with size: 94 is_init: 1 index: 0 binding: initialize-mop-defcl */
  static const void *G002662[] = {I(87,25,00,00),B(mop_defcl ,1),I(24,00,00,00),B(mop_meth ,1),I(3e,0b,24,00),B(mop_meth ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_gf ,1),I(3e,0b,24,00),B(mop_gf ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_init ,1),I(3e,0b,24,00),B(mop_init ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_class ,1),I(3e,0b,24,00),B(mop_class ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_key ,1),I(3e,0b,24,00),B(mop_key ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_inspect ,1),I(3e,0b,24,00),B(mop_inspect ,0),I(3c,00,21,01),I(24,00,00,00),B(mop_prim ,1),I(3e,0b,24,00),B(mop_prim ,0),I(3c,00,21,01),I(24,00,00,00),B(boot ,1),I(3e,0b,24,00),B(boot ,0),I(3c,00,21,01),I(23,00,00,00),B(mop_defcl ,68),I(23,00,00,00),B(mop_defcl ,67),I(3b,03,25,00),B(mop_defcl ,13),I(23,00,00,00),B(mop_defcl ,69),I(23,00,00,00),B(mop_defcl ,65),I(3b,fd,25,00),B(mop_defcl ,12),I(86,25,00,00),B(mop_defcl ,11),I(86,25,00,00),B(mop_defcl ,10),I(23,00,00,00),B(mop_defcl ,70),I(23,00,00,00),B(mop_defcl ,63),I(3b,02,25,00),B(mop_defcl ,9),I(23,00,00,00),B(mop_defcl ,71),I(23,00,00,00),B(mop_defcl ,60),I(3b,02,25,00),B(mop_defcl ,8),I(23,00,00,00),B(mop_defcl ,72),I(23,00,00,00),B(mop_defcl ,59),I(3b,01,25,00),B(mop_defcl ,6),I(86,25,00,00),B(mop_defcl ,5),I(86,25,00,00),B(mop_defcl ,4),I(23,00,00,00),B(mop_defcl ,73),I(23,00,00,00),B(mop_defcl ,57),I(3b,01,25,00),B(mop_defcl ,3),I(86,25,00,00),B(mop_defcl ,2),I(23,00,00,00),B(mop_defcl ,74),I(23,00,00,00),B(mop_defcl ,55),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G002568,G002567);
  eul_allocate_bytevector( G002570,G002569);
  eul_allocate_bytevector( G002572,G002571);
  eul_allocate_bytevector( G002574,G002573);
  eul_allocate_bytevector( G002576,G002575);
  eul_allocate_bytevector( G002578,G002577);
  eul_allocate_bytevector( G002580,G002579);
  eul_allocate_bytevector( G002582,G002581);
  eul_allocate_bytevector( G002584,G002583);
  eul_allocate_bytevector( G002586,G002585);
  eul_allocate_bytevector( G002588,G002587);
  eul_allocate_bytevector( G002590,G002589);
  eul_allocate_bytevector( G002592,G002591);
  eul_allocate_bytevector( G002594,G002593);
  eul_allocate_bytevector( G002596,G002595);
  eul_allocate_bytevector( G002598,G002597);
  eul_allocate_bytevector( G002600,G002599);
  eul_allocate_bytevector( G002602,G002601);
  eul_allocate_bytevector( G002604,G002603);
  eul_allocate_bytevector( G002606,G002605);
  eul_allocate_bytevector( G002608,G002607);
  eul_allocate_bytevector( G002610,G002609);
  eul_allocate_bytevector( G002612,G002611);
  eul_allocate_bytevector( G002614,G002613);
  eul_allocate_bytevector( G002616,G002615);
  eul_allocate_bytevector( G002618,G002617);
  eul_allocate_bytevector( G002620,G002619);
  eul_allocate_bytevector( G002622,G002621);
  eul_allocate_bytevector( G002624,G002623);
  eul_intern_symbol(sym_2627,"add-subclass");
  eul_intern_symbol(sym_2628,"remove-class");
  eul_intern_symbol(sym_2629,"slot-value-using-slot");
  eul_intern_symbol(sym_2630,"(method add-subclass)");
  eul_intern_symbol(sym_2631,"(method remove-class)");
  eul_intern_symbol(sym_2632,"(method slot-value-using-slot)");
  eul_intern_symbol(sym_2634,"setter");
  object_class(cons_2635) = eul_static_cons_class;
  eul_car(cons_2635) = sym_2629;
  eul_cdr(cons_2635) = eul_nil;
  object_class(cons_2633) = eul_static_cons_class;
  eul_car(cons_2633) = sym_2634;
  eul_intern_symbol(sym_2636,"(method (setter slot-value-using-slot))");
  eul_intern_symbol(sym_2637,"(setter slot-value)");
  eul_intern_symbol(sym_2638,"anonymous");
  eul_intern_symbol(sym_2639,"code");
  eul_allocate_bytevector( G002626,G002625);
  eul_allocate_bytevector( G002641,G002640);
  eul_allocate_bytevector( G002643,G002642);
  eul_allocate_bytevector( G002645,G002644);
  eul_allocate_bytevector( G002647,G002646);
  eul_allocate_bytevector( G002649,G002648);
  object_class(str_2652) = eul_static_string_class;
  eul_allocate_bytevector( G002651,G002650);
  eul_allocate_bytevector( G002654,G002653);
  eul_allocate_bytevector( G002656,G002655);
  eul_allocate_bytevector( G002658,G002657);
  eul_intern_keyword(key_2661,"required");
  eul_allocate_bytevector( G002660,G002659);
  eul_intern_symbol(sym_2664,"primitive-make-slot");
  eul_intern_symbol(sym_2665,"make-slotds");
  eul_intern_symbol(sym_2666,"find-slot");
  eul_intern_symbol(sym_2667,"slot-value");
  eul_intern_symbol(sym_2668,"predefined-reader");
  eul_intern_symbol(sym_2669,"predefined-writer");
  eul_intern_symbol(sym_2670,"top-level");
  eul_allocate_bytevector( G002663,G002662);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 14; i++)
      mop_defcl_bindings[i] = eul_nil;
  }

  mop_defcl_bindings[ 14] = G002568;
  mop_defcl_bindings[ 15] = G002570;
  mop_defcl_bindings[ 16] = G002572;
  mop_defcl_bindings[ 17] = G002574;
  mop_defcl_bindings[ 18] = G002576;
  mop_defcl_bindings[ 19] = G002578;
  mop_defcl_bindings[ 20] = G002580;
  mop_defcl_bindings[ 21] = G002582;
  mop_defcl_bindings[ 22] = G002584;
  mop_defcl_bindings[ 23] = G002586;
  mop_defcl_bindings[ 24] = G002588;
  mop_defcl_bindings[ 25] = G002590;
  mop_defcl_bindings[ 26] = G002592;
  mop_defcl_bindings[ 27] = G002594;
  mop_defcl_bindings[ 28] = G002596;
  mop_defcl_bindings[ 29] = G002598;
  mop_defcl_bindings[ 30] = G002600;
  mop_defcl_bindings[ 31] = G002602;
  mop_defcl_bindings[ 32] = G002604;
  mop_defcl_bindings[ 33] = G002606;
  mop_defcl_bindings[ 34] = G002608;
  mop_defcl_bindings[ 35] = G002610;
  mop_defcl_bindings[ 36] = G002612;
  mop_defcl_bindings[ 37] = G002614;
  mop_defcl_bindings[ 38] = G002616;
  mop_defcl_bindings[ 39] = G002618;
  mop_defcl_bindings[ 40] = G002620;
  mop_defcl_bindings[ 41] = G002622;
  mop_defcl_bindings[ 42] = G002624;
  mop_defcl_bindings[ 43] = sym_2627;
  mop_defcl_bindings[ 44] = sym_2628;
  mop_defcl_bindings[ 45] = sym_2629;
  mop_defcl_bindings[ 46] = sym_2630;
  mop_defcl_bindings[ 47] = sym_2631;
  mop_defcl_bindings[ 48] = sym_2632;
  mop_defcl_bindings[ 49] = sym_2634;
  mop_defcl_bindings[ 50] = cons_2633;
  mop_defcl_bindings[ 51] = sym_2636;
  mop_defcl_bindings[ 52] = sym_2637;
  mop_defcl_bindings[ 53] = sym_2638;
  mop_defcl_bindings[ 54] = sym_2639;
  mop_defcl_bindings[ 55] = G002626;
  mop_defcl_bindings[ 56] = G002641;
  mop_defcl_bindings[ 57] = G002643;
  mop_defcl_bindings[ 58] = G002645;
  mop_defcl_bindings[ 59] = G002647;
  mop_defcl_bindings[ 60] = G002649;
  mop_defcl_bindings[ 61] = str_2652;
  mop_defcl_bindings[ 62] = G002651;
  mop_defcl_bindings[ 63] = G002654;
  mop_defcl_bindings[ 64] = G002656;
  mop_defcl_bindings[ 65] = G002658;
  mop_defcl_bindings[ 66] = key_2661;
  mop_defcl_bindings[ 67] = G002660;
  mop_defcl_bindings[ 1] = eul_nil;
  mop_defcl_bindings[ 68] = sym_2664;
  mop_defcl_bindings[ 69] = sym_2665;
  mop_defcl_bindings[ 70] = sym_2666;
  mop_defcl_bindings[ 71] = sym_2667;
  mop_defcl_bindings[ 72] = sym_2668;
  mop_defcl_bindings[ 73] = sym_2669;
  mop_defcl_bindings[ 74] = sym_2670;
  eul_allocate_lambda( mop_defcl_bindings[0], "initialize-mop-defcl", 0, G002663);

  }
}
Example #20
0
/* Initialize module cg-bycode */
void initialize_module_cg_bycode()
{
  if (is_initialized) return;
  initialize_module_i_level_1();
  eul_fast_table_set(eul_modules,"cg_bycode",(LispRef) cg_bycode_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_4330, sym_4329, sym_4328, sym_4327, sym_4326, sym_4325, sym_4324, sym_4323, sym_4322, sym_4321, sym_4320, sym_4319, sym_4318, G004317, G004315, G004313, G004311, G004309, G004307, G004305, G004303, G004301, G004299, G004297, G004295, G004293, sym_4291, sym_4290, key_4283, key_4282, key_4281, sym_4280, key_4279, sym_4278, key_4277, sym_4276, key_4275, sym_4274, key_4273, sym_4272, key_4271, sym_4270, key_4269, sym_4268, key_4267, sym_4266, key_4265, G004264, G004262, G004260, G004258, G004256, G004254, G004252, G004250, G004248;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 1 is_init: 0 index: 19 binding: (method-bytecode?) */
  static const void *G004247[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 20 binding: (method-bytecode?) */
  static const void *G004249[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 21 binding: anonymous */
  static const void *G004251[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 22 binding: anonymous */
  static const void *G004253[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 23 binding: anonymous */
  static const void *G004255[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 24 binding: anonymous */
  static const void *G004257[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 25 binding: anonymous */
  static const void *G004259[] = {I(a9,86,45,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 26 binding: anonymous */
  static const void *G004261[] = {I(a9,86,45,00)};

  eul_allocate_static_cons(cons_4289, NULL, NULL);
  eul_allocate_static_cons(cons_4288, NULL, eul_as_static(cons_4289));
  eul_allocate_static_cons(cons_4287, NULL, eul_as_static(cons_4288));
  eul_allocate_static_cons(cons_4286, NULL, eul_as_static(cons_4287));
  eul_allocate_static_cons(cons_4285, NULL, eul_as_static(cons_4286));
  eul_allocate_static_cons(cons_4284, NULL, eul_as_static(cons_4285));
  /* Byte-vector with size: 211 is_init: 0 index: 49 binding: top-level */
  static const void *G004263[] = {I(a9,24,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,28),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,26),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,27),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,32),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,25),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,33),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,34),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,24),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,35),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,36),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,23),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,37),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,38),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,22),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,39),I(24,00,00,00),B(boot1 ,26),I(3c,06,23,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,40),I(23,00,00,00),B(cg_bycode ,29),I(23,00,00,00),B(cg_bycode ,30),I(23,00,00,00),B(cg_bycode ,21),I(3b,00,23,00),B(cg_bycode ,31),I(23,00,00,00),B(cg_bycode ,41),I(24,00,00,00),B(boot1 ,26),I(3c,06,1f,05),I(1f,05,1f,05),I(1f,05,1f,05),I(1f,05,24,00),B(boot1 ,26),I(3c,06,24,00),B(mop_class ,81),I(23,00,00,00),B(cg_bycode ,27),I(23,00,00,00),B(cg_bycode ,42),I(23,00,00,00),B(cg_bycode ,43),I(1f,0b,23,00),B(cg_bycode ,44),I(1f,06,23,00),B(cg_bycode ,45),I(23,00,00,00),B(cg_bycode ,46),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(cg_bycode ,5),I(2a,24,00,00),B(aux_table ,4),I(3c,00,1b,89),B(cg_bycode ,18),I(2a,24,00,00),B(aux_table ,4),I(3c,00,1b,89),B(cg_bycode ,6),I(2a,24,00,00),B(aux_table ,4),I(3c,00,1b,89),B(cg_bycode ,8),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(cg_bycode ,47),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(cg_bycode ,16),I(2a,24,00,00),B(cg_bycode ,16),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(cg_bycode ,16),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(cg_bycode ,48),I(23,00,00,00),B(cg_bycode ,20),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(cg_bycode ,16),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(cg_bycode ,16),I(8a,03,02,83),I(24,00,00,00),B(cg_bycode ,5),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(cg_bycode ,16),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(cg_bycode ,48),I(23,00,00,00),B(cg_bycode ,19),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(cg_bycode ,16),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(cg_bycode ,16),I(2a,24,00,00),B(cg_bycode ,5),I(45,1c,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 50 binding: bytecode-args! */
  static const void *G004292[] = {I(ab,1c,8a,04),I(1d,24,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 51 binding: bytecode-properties? */
  static const void *G004294[] = {I(aa,84,24,00),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 52 binding: bytecode-size! */
  static const void *G004296[] = {I(ab,1c,83,1d),I(24,00,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 53 binding: bytecode-args? */
  static const void *G004298[] = {I(aa,8a,04,24),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 54 binding: bytecode-modus! */
  static const void *G004300[] = {I(ab,1c,82,1d),I(24,00,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 55 binding: bytecode-properties! */
  static const void *G004302[] = {I(ab,1c,84,1d),I(24,00,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 56 binding: bytecode-name? */
  static const void *G004304[] = {I(aa,8a,05,24),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 57 binding: bytecode-size? */
  static const void *G004306[] = {I(aa,83,24,00),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 58 binding: bytecode-code? */
  static const void *G004308[] = {I(aa,8a,03,24),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 59 binding: bytecode-code! */
  static const void *G004310[] = {I(ab,1c,8a,03),I(1d,24,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 60 binding: bytecode-modus? */
  static const void *G004312[] = {I(aa,82,24,00),B(cg_bycode ,5),I(08,45,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 61 binding: bytecode-name! */
  static const void *G004314[] = {I(ab,1c,8a,05),I(1d,24,00,00),B(cg_bycode ,5),I(09,45,02,00)};

  /* Byte-vector with size: 95 is_init: 1 index: 0 binding: initialize-cg-bycode */
  static const void *G004316[] = {I(87,25,00,00),B(cg_bycode ,1),I(24,00,00,00),B(i_level_1 ,1),I(3e,0b,24,00),B(i_level_1 ,0),I(3c,00,21,01),I(86,25,00,00),B(cg_bycode ,18),I(23,00,00,00),B(cg_bycode ,62),I(23,00,00,00),B(cg_bycode ,61),I(3b,02,25,00),B(cg_bycode ,17),I(86,25,00,00),B(cg_bycode ,16),I(23,00,00,00),B(cg_bycode ,63),I(23,00,00,00),B(cg_bycode ,60),I(3b,01,25,00),B(cg_bycode ,15),I(23,00,00,00),B(cg_bycode ,64),I(23,00,00,00),B(cg_bycode ,59),I(3b,02,25,00),B(cg_bycode ,14),I(23,00,00,00),B(cg_bycode ,65),I(23,00,00,00),B(cg_bycode ,58),I(3b,01,25,00),B(cg_bycode ,13),I(23,00,00,00),B(cg_bycode ,66),I(23,00,00,00),B(cg_bycode ,57),I(3b,01,25,00),B(cg_bycode ,12),I(23,00,00,00),B(cg_bycode ,67),I(23,00,00,00),B(cg_bycode ,56),I(3b,01,25,00),B(cg_bycode ,11),I(23,00,00,00),B(cg_bycode ,68),I(23,00,00,00),B(cg_bycode ,55),I(3b,02,25,00),B(cg_bycode ,10),I(23,00,00,00),B(cg_bycode ,69),I(23,00,00,00),B(cg_bycode ,54),I(3b,02,25,00),B(cg_bycode ,9),I(86,25,00,00),B(cg_bycode ,8),I(23,00,00,00),B(cg_bycode ,70),I(23,00,00,00),B(cg_bycode ,53),I(3b,01,25,00),B(cg_bycode ,7),I(86,25,00,00),B(cg_bycode ,6),I(86,25,00,00),B(cg_bycode ,5),I(23,00,00,00),B(cg_bycode ,71),I(23,00,00,00),B(cg_bycode ,52),I(3b,02,25,00),B(cg_bycode ,4),I(23,00,00,00),B(cg_bycode ,72),I(23,00,00,00),B(cg_bycode ,51),I(3b,01,25,00),B(cg_bycode ,3),I(23,00,00,00),B(cg_bycode ,73),I(23,00,00,00),B(cg_bycode ,50),I(3b,02,25,00),B(cg_bycode ,2),I(23,00,00,00),B(cg_bycode ,74),I(23,00,00,00),B(cg_bycode ,49),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G004248,G004247);
  eul_allocate_bytevector( G004250,G004249);
  eul_allocate_bytevector( G004252,G004251);
  eul_allocate_bytevector( G004254,G004253);
  eul_allocate_bytevector( G004256,G004255);
  eul_allocate_bytevector( G004258,G004257);
  eul_allocate_bytevector( G004260,G004259);
  eul_allocate_bytevector( G004262,G004261);
  eul_intern_keyword(key_4265,"name");
  eul_intern_symbol(sym_4266,"name");
  eul_intern_keyword(key_4267,"default");
  eul_intern_symbol(sym_4268,"anonymous");
  eul_intern_keyword(key_4269,"keyword");
  eul_intern_symbol(sym_4270,"args");
  eul_intern_keyword(key_4271,"args");
  eul_intern_symbol(sym_4272,"code");
  eul_intern_keyword(key_4273,"code");
  eul_intern_symbol(sym_4274,"properties");
  eul_intern_keyword(key_4275,"properties");
  eul_intern_symbol(sym_4276,"size");
  eul_intern_keyword(key_4277,"size");
  eul_intern_symbol(sym_4278,"modus");
  eul_intern_keyword(key_4279,"modus");
  eul_intern_symbol(sym_4280,"bytecode");
  eul_intern_keyword(key_4281,"direct-superclasses");
  eul_intern_keyword(key_4282,"direct-slots");
  eul_intern_keyword(key_4283,"direct-keywords");
  object_class(cons_4289) = eul_static_cons_class;
  eul_car(cons_4289) = key_4265;
  eul_cdr(cons_4289) = eul_nil;
  object_class(cons_4288) = eul_static_cons_class;
  eul_car(cons_4288) = key_4271;
  object_class(cons_4287) = eul_static_cons_class;
  eul_car(cons_4287) = key_4273;
  object_class(cons_4286) = eul_static_cons_class;
  eul_car(cons_4286) = key_4275;
  object_class(cons_4285) = eul_static_cons_class;
  eul_car(cons_4285) = key_4277;
  object_class(cons_4284) = eul_static_cons_class;
  eul_car(cons_4284) = key_4279;
  eul_intern_symbol(sym_4290,"bytecode?");
  eul_intern_symbol(sym_4291,"(method bytecode?)");
  eul_allocate_bytevector( G004264,G004263);
  eul_allocate_bytevector( G004293,G004292);
  eul_allocate_bytevector( G004295,G004294);
  eul_allocate_bytevector( G004297,G004296);
  eul_allocate_bytevector( G004299,G004298);
  eul_allocate_bytevector( G004301,G004300);
  eul_allocate_bytevector( G004303,G004302);
  eul_allocate_bytevector( G004305,G004304);
  eul_allocate_bytevector( G004307,G004306);
  eul_allocate_bytevector( G004309,G004308);
  eul_allocate_bytevector( G004311,G004310);
  eul_allocate_bytevector( G004313,G004312);
  eul_allocate_bytevector( G004315,G004314);
  eul_intern_symbol(sym_4318,"bytecode-name!");
  eul_intern_symbol(sym_4319,"bytecode-modus?");
  eul_intern_symbol(sym_4320,"bytecode-code!");
  eul_intern_symbol(sym_4321,"bytecode-code?");
  eul_intern_symbol(sym_4322,"bytecode-size?");
  eul_intern_symbol(sym_4323,"bytecode-name?");
  eul_intern_symbol(sym_4324,"bytecode-properties!");
  eul_intern_symbol(sym_4325,"bytecode-modus!");
  eul_intern_symbol(sym_4326,"bytecode-args?");
  eul_intern_symbol(sym_4327,"bytecode-size!");
  eul_intern_symbol(sym_4328,"bytecode-properties?");
  eul_intern_symbol(sym_4329,"bytecode-args!");
  eul_intern_symbol(sym_4330,"top-level");
  eul_allocate_bytevector( G004317,G004316);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 19; i++)
      cg_bycode_bindings[i] = eul_nil;
  }

  cg_bycode_bindings[ 19] = G004248;
  cg_bycode_bindings[ 20] = G004250;
  cg_bycode_bindings[ 21] = G004252;
  cg_bycode_bindings[ 22] = G004254;
  cg_bycode_bindings[ 23] = G004256;
  cg_bycode_bindings[ 24] = G004258;
  cg_bycode_bindings[ 25] = G004260;
  cg_bycode_bindings[ 26] = G004262;
  cg_bycode_bindings[ 27] = key_4265;
  cg_bycode_bindings[ 28] = sym_4266;
  cg_bycode_bindings[ 29] = key_4267;
  cg_bycode_bindings[ 30] = sym_4268;
  cg_bycode_bindings[ 31] = key_4269;
  cg_bycode_bindings[ 32] = sym_4270;
  cg_bycode_bindings[ 33] = key_4271;
  cg_bycode_bindings[ 34] = sym_4272;
  cg_bycode_bindings[ 35] = key_4273;
  cg_bycode_bindings[ 36] = sym_4274;
  cg_bycode_bindings[ 37] = key_4275;
  cg_bycode_bindings[ 38] = sym_4276;
  cg_bycode_bindings[ 39] = key_4277;
  cg_bycode_bindings[ 40] = sym_4278;
  cg_bycode_bindings[ 41] = key_4279;
  cg_bycode_bindings[ 42] = sym_4280;
  cg_bycode_bindings[ 43] = key_4281;
  cg_bycode_bindings[ 44] = key_4282;
  cg_bycode_bindings[ 45] = key_4283;
  cg_bycode_bindings[ 46] = cons_4284;
  cg_bycode_bindings[ 47] = sym_4290;
  cg_bycode_bindings[ 48] = sym_4291;
  cg_bycode_bindings[ 49] = G004264;
  cg_bycode_bindings[ 50] = G004293;
  cg_bycode_bindings[ 51] = G004295;
  cg_bycode_bindings[ 52] = G004297;
  cg_bycode_bindings[ 53] = G004299;
  cg_bycode_bindings[ 54] = G004301;
  cg_bycode_bindings[ 55] = G004303;
  cg_bycode_bindings[ 56] = G004305;
  cg_bycode_bindings[ 57] = G004307;
  cg_bycode_bindings[ 58] = G004309;
  cg_bycode_bindings[ 59] = G004311;
  cg_bycode_bindings[ 60] = G004313;
  cg_bycode_bindings[ 61] = G004315;
  cg_bycode_bindings[ 1] = eul_nil;
  cg_bycode_bindings[ 62] = sym_4318;
  cg_bycode_bindings[ 63] = sym_4319;
  cg_bycode_bindings[ 64] = sym_4320;
  cg_bycode_bindings[ 65] = sym_4321;
  cg_bycode_bindings[ 66] = sym_4322;
  cg_bycode_bindings[ 67] = sym_4323;
  cg_bycode_bindings[ 68] = sym_4324;
  cg_bycode_bindings[ 69] = sym_4325;
  cg_bycode_bindings[ 70] = sym_4326;
  cg_bycode_bindings[ 71] = sym_4327;
  cg_bycode_bindings[ 72] = sym_4328;
  cg_bycode_bindings[ 73] = sym_4329;
  cg_bycode_bindings[ 74] = sym_4330;
  eul_allocate_lambda( cg_bycode_bindings[0], "initialize-cg-bycode", 0, G004317);

  }
}
Example #21
0
/* Initialize module stream3 */
void initialize_module_stream3()
{
  if (is_initialized) return;
  initialize_module_telos();
  initialize_module_integer();
  initialize_module_collect();
  initialize_module_list();
  initialize_module_character();
  initialize_module_string();
  initialize_module_vector();
  initialize_module_float();
  initialize_module_stream1();
  initialize_module_stream();
  initialize_module_format();
  eul_fast_table_set(eul_modules,"stream3",(LispRef) stream3_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_10673, G0010672, sym_10670, sym_10669, G0010668, G0010666, G0010664, G0010660, G0010657, G0010655, G0010653, G0010650, G0010647, G0010644, G0010639, G0010637, G0010634, G0010631, G0010629, sym_10624, G0010623, G0010620, G0010617, G0010612, G0010610, G0010607, G0010605, G0010603, G0010601, sym_10599, G0010598;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 16 is_init: 0 index: 3 binding: (method-generic-print) */
  static const void *G0010597[] = {I(ab,1c,82,02),I(1b,44,04,1b),I(36,07,23,00),B(stream3 ,2),I(82,02,1d,27),I(3c,24,00,00),B(stream ,23),I(3c,02,2a,1b),I(06,1c,1c,1f),I(05,24,00,00),B(stream ,11),I(3c,03,2a,1f),I(03,27,3e,24),B(stream ,23),I(3c,02,2a,1f),I(04,45,05,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 4 binding: (method-generic-print) */
  static const void *G0010600[] = {I(ab,1c,06,1d),I(1c,1f,03,24),B(stream ,11),I(3c,03,2a,1d),I(45,03,00,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 5 binding: (method-generic-print) */
  static const void *G0010602[] = {I(ab,1c,82,02),I(1b,1d,24,00),B(stream2 ,31),I(3c,02,2a,1d),I(45,03,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 6 binding: (method-generic-print) */
  static const void *G0010604[] = {I(ab,1b,1d,24),B(stream ,23),I(3c,02,2a,1c),I(45,02,00,00)};

  eul_allocate_static_string(str_10608, " . ", 3);
  /* Byte-vector with size: 23 is_init: 0 index: 8 binding: (method-generic-print) */
  static const void *G0010606[] = {I(ab,1b,27,28),I(24,00,00,00),B(stream ,23),I(3c,02,2a,1c),I(24,00,00,00),B(stream2 ,31),I(1d,24,00,00),B(stream ,18),I(3c,03,1b,12),I(1b,44,04,86),I(36,21,23,00),B(stream3 ,7),I(8a,03,1f,04),I(24,00,00,00),B(stream ,11),I(3c,03,2a,1d),I(1d,24,00,00),B(stream ,8),I(3c,02,2a,1d),I(27,29,24,00),B(stream ,23),I(3c,02,2a,1f),I(03,45,04,00)};

  /* Byte-vector with size: 17 is_init: 0 index: 9 binding: anonymous */
  static const void *G0010609[] = {I(a9,47,00,03),I(47,00,02,1a),I(1b,44,37,47),I(00,00,47,00),I(03,02,47,00),I(01,1c,24,00),B(stream ,8),I(3c,02,2a,47),I(00,01,27,20),I(24,00,00,00),B(stream ,23),I(3c,02,2a,47),I(00,03,2b,1b),I(48,00,03,47),I(00,04,3d,00),I(03,22,02,36),I(02,86,45,01)};

  eul_allocate_static_string(str_10613, "#()", 3);
  eul_allocate_static_string(str_10614, "#(", 2);
  eul_allocate_static_string(str_10615, "#(", 2);
  /* Byte-vector with size: 55 is_init: 0 index: 13 binding: (method-generic-print) */
  static const void *G0010611[] = {I(ab,46,06,1c),I(48,00,00,1b),I(48,00,01,47),I(00,00,06,1b),I(2d,1b,44,19),I(23,00,00,00),B(stream3 ,10),I(8a,03,47,00),I(01,24,00,00),B(stream ,11),I(3c,03,36,ab),I(1c,83,19,1b),I(44,3d,23,00),B(stream3 ,11),I(84,47,00,01),I(24,00,00,00),B(stream ,11),I(3c,03,2a,47),I(00,00,82,02),I(47,00,01,1c),I(24,00,00,00),B(stream ,8),I(3c,02,2a,47),I(00,01,27,29),I(24,00,00,00),B(stream ,23),I(3c,02,22,01),I(36,67,1d,2c),I(82,1c,48,00),I(02,1b,48,00),I(03,23,00,00),B(stream3 ,12),I(84,47,00,01),I(24,00,00,00),B(stream ,11),I(3c,03,2a,86),I(1b,48,00,04),I(23,00,00,00),B(stream3 ,2),I(23,00,00,00),B(stream3 ,9),I(3b,00,48,00),I(04,47,00,04),I(3c,00,2a,47),I(00,00,47,00),I(02,02,47,00),I(01,1c,24,00),B(stream ,8),I(3c,02,2a,47),I(00,01,27,29),I(24,00,00,00),B(stream ,23),I(3c,02,22,04),I(22,01,2a,47),I(00,00,45,04)};

  eul_allocate_static_string(str_10618, "#<~a: ~a:~a>", 12);
  /* Byte-vector with size: 14 is_init: 0 index: 15 binding: (method-generic-write) */
  static const void *G0010616[] = {I(ab,1c,04,1b),I(82,02,1f,03),I(84,24,00,00),B(socket ,8),I(08,1f,04,8a),I(03,24,00,00),B(socket ,8),I(08,1f,04,23),B(stream3 ,14),I(1f,04,1f,04),I(1f,04,24,00),B(format ,4),I(3c,05,2a,1f),I(05,45,06,00)};

  eul_allocate_static_string(str_10621, "#<~a: ~a:~a>", 12);
  /* Byte-vector with size: 14 is_init: 0 index: 17 binding: (method-generic-write) */
  static const void *G0010619[] = {I(ab,1c,04,1b),I(82,02,1f,03),I(83,24,00,00),B(socket ,2),I(08,1f,04,82),I(24,00,00,00),B(socket ,2),I(08,1f,04,23),B(stream3 ,16),I(1f,04,1f,04),I(1f,04,24,00),B(format ,4),I(3c,05,2a,1f),I(05,45,06,00)};

  eul_allocate_static_string(str_10625, "*unconnected*", 13);
  eul_allocate_static_string(str_10626, "*unconnected*", 13);
  eul_allocate_static_string(str_10627, "#<~a: ~a>", 9);
  /* Byte-vector with size: 39 is_init: 0 index: 22 binding: (method-generic-write) */
  static const void *G0010622[] = {I(ab,1c,8a,05),I(24,00,00,00),B(stream2 ,20),I(08,1d,8a,04),I(24,00,00,00),B(stream2 ,20),I(08,1f,03,82),I(24,00,00,00),B(stream2 ,20),I(08,1f,04,04),I(1b,82,02,1d),I(23,00,00,00),B(stream3 ,18),I(50,1b,44,25),I(1f,04,24,00),B(stream2 ,25),I(3c,01,1b,44),I(0f,1f,05,84),I(24,00,00,00),B(stream2 ,3),I(08,36,06,23),B(stream3 ,19),I(22,01,36,23),I(1f,05,24,00),B(stream2 ,25),I(3c,01,1b,44),I(0f,1f,06,84),I(24,00,00,00),B(stream2 ,3),I(08,36,06,23),B(stream3 ,20),I(22,01,1f,07),I(23,00,00,00),B(stream3 ,21),I(1f,04,1f,03),I(24,00,00,00),B(format ,4),I(3c,04,2a,1f),I(08,45,09,00)};

  /* Byte-vector with size: 12 is_init: 0 index: 23 binding: (method-generic-write) */
  static const void *G0010628[] = {I(ab,1b,27,22),I(24,00,00,00),B(stream ,23),I(3c,02,2a,1c),I(06,1d,1c,1f),I(03,24,00,00),B(stream ,11),I(3c,03,2a,1c),I(27,22,24,00),B(stream ,23),I(3c,02,2a,1d),I(45,03,00,00)};

  eul_allocate_static_string(str_10632, "#\\\\n", 4);
  /* Byte-vector with size: 18 is_init: 0 index: 25 binding: (method-generic-write) */
  static const void *G0010630[] = {I(ab,1c,27,0a),I(50,1b,44,19),I(23,00,00,00),B(stream3 ,24),I(8a,04,1f,03),I(24,00,00,00),B(stream ,11),I(3c,03,36,23),I(1c,27,23,24),B(stream ,23),I(3c,02,2a,1c),I(27,5c,24,00),B(stream ,23),I(3c,02,2a,1c),I(1f,03,24,00),B(stream ,23),I(3c,02,2a,1d),I(45,03,00,00)};

  eul_allocate_static_string(str_10635, " . ", 3);
  /* Byte-vector with size: 23 is_init: 0 index: 27 binding: (method-generic-write) */
  static const void *G0010633[] = {I(ab,1b,27,28),I(24,00,00,00),B(stream ,23),I(3c,02,2a,1c),I(24,00,00,00),B(stream2 ,28),I(1d,24,00,00),B(stream ,18),I(3c,03,1b,12),I(1b,44,04,86),I(36,21,23,00),B(stream3 ,26),I(8a,03,1f,04),I(24,00,00,00),B(stream ,11),I(3c,03,2a,1d),I(1d,24,00,00),B(stream ,4),I(3c,02,2a,1d),I(27,29,24,00),B(stream ,23),I(3c,02,2a,1f),I(03,45,04,00)};

  /* Byte-vector with size: 17 is_init: 0 index: 28 binding: anonymous */
  static const void *G0010636[] = {I(a9,47,00,03),I(47,00,02,1a),I(1b,44,37,47),I(00,00,47,00),I(03,02,47,00),I(01,1c,24,00),B(stream ,4),I(3c,02,2a,47),I(00,01,27,20),I(24,00,00,00),B(stream ,23),I(3c,02,2a,47),I(00,03,2b,1b),I(48,00,03,47),I(00,04,3d,00),I(03,22,02,36),I(02,86,45,01)};

  eul_allocate_static_string(str_10640, "#()", 3);
  eul_allocate_static_string(str_10641, "#(", 2);
  eul_allocate_static_string(str_10642, "#(", 2);
  /* Byte-vector with size: 55 is_init: 0 index: 32 binding: (method-generic-write) */
  static const void *G0010638[] = {I(ab,46,06,1c),I(48,00,00,1b),I(48,00,01,47),I(00,00,06,1b),I(2d,1b,44,19),I(23,00,00,00),B(stream3 ,29),I(8a,03,47,00),I(01,24,00,00),B(stream ,11),I(3c,03,36,ab),I(1c,83,19,1b),I(44,3d,23,00),B(stream3 ,30),I(84,47,00,01),I(24,00,00,00),B(stream ,11),I(3c,03,2a,47),I(00,00,82,02),I(47,00,01,1c),I(24,00,00,00),B(stream ,4),I(3c,02,2a,47),I(00,01,27,29),I(24,00,00,00),B(stream ,23),I(3c,02,22,01),I(36,67,1d,2c),I(82,1c,48,00),I(02,1b,48,00),I(03,23,00,00),B(stream3 ,31),I(84,47,00,01),I(24,00,00,00),B(stream ,11),I(3c,03,2a,86),I(1b,48,00,04),I(23,00,00,00),B(stream3 ,2),I(23,00,00,00),B(stream3 ,28),I(3b,00,48,00),I(04,47,00,04),I(3c,00,2a,47),I(00,00,47,00),I(02,02,47,00),I(01,1c,24,00),B(stream ,4),I(3c,02,2a,47),I(00,01,27,29),I(24,00,00,00),B(stream ,23),I(3c,02,22,04),I(22,01,2a,47),I(00,00,45,04)};

  eul_allocate_static_string(str_10645, "#<~a: ~a>", 9);
  /* Byte-vector with size: 10 is_init: 0 index: 34 binding: (method-generic-write) */
  static const void *G0010643[] = {I(ab,1c,04,1b),I(82,02,1f,03),I(82,02,1f,03),I(23,00,00,00),B(stream3 ,33),I(1f,03,1f,03),I(24,00,00,00),B(format ,4),I(3d,04,05,45),I(05,00,00,00)};

  eul_allocate_static_string(str_10648, "%f", 2);
  /* Byte-vector with size: 6 is_init: 0 index: 36 binding: (method-generic-write) */
  static const void *G0010646[] = {I(ab,1b,23,00),B(stream3 ,35),I(1f,03,24,00),B(stream ,21),I(3c,03,2a,1b),I(45,02,00,00)};

  eul_allocate_static_string(str_10651, "%i", 2);
  /* Byte-vector with size: 6 is_init: 0 index: 38 binding: (method-generic-write) */
  static const void *G0010649[] = {I(ab,1b,23,00),B(stream3 ,37),I(1f,03,24,00),B(stream ,21),I(3c,03,2a,1b),I(45,02,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 39 binding: (method-generic-write) */
  static const void *G0010652[] = {I(ab,1c,82,02),I(1b,06,1c,1c),I(1f,04,24,00),B(stream ,11),I(3c,03,2a,1d),I(27,3a,24,00),B(stream ,23),I(3c,02,2a,1f),I(03,45,04,00)};

  /* Byte-vector with size: 20 is_init: 0 index: 40 binding: (method-generic-write) */
  static const void *G0010654[] = {I(ab,1c,82,02),I(24,00,00,00),B(character ,10),I(1c,24,00,00),B(collect ,16),I(3c,02,1b,44),I(10,1c,1f,03),I(24,00,00,00),B(stream2 ,31),I(3c,02,36,23),I(1d,27,7c,24),B(stream ,23),I(3c,02,2a,1c),I(1f,03,24,00),B(stream2 ,31),I(3c,02,2a,1d),I(27,7c,24,00),B(stream ,23),I(3c,02,2a,1f),I(03,45,04,00)};

  eul_allocate_static_string(str_10658, "()", 2);
  /* Byte-vector with size: 6 is_init: 0 index: 42 binding: (method-generic-write) */
  static const void *G0010656[] = {I(ab,23,00,00),B(stream3 ,41),I(84,1d,24,00),B(stream ,11),I(3c,03,2a,86),I(45,02,00,00)};

  eul_allocate_static_string(str_10661, "#<", 2);
  eul_allocate_static_string(str_10662, ": ", 2);
  /* Byte-vector with size: 22 is_init: 0 index: 45 binding: (method-generic-write) */
  static const void *G0010659[] = {I(ab,23,00,00),B(stream3 ,43),I(84,1d,24,00),B(stream ,11),I(3c,03,2a,1c),I(04,1b,82,02),I(82,02,1b,06),I(1c,1c,1f,05),I(24,00,00,00),B(stream ,11),I(3c,03,2a,23),B(stream3 ,44),I(84,1f,05,24),B(stream ,11),I(3c,03,2a,1f),I(04,1f,04,24),B(stream ,5),I(3c,02,2a,1f),I(03,27,3e,24),B(stream ,23),I(3c,02,2a,1f),I(04,45,05,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 46 binding: (method-generic-print) */
  static const void *G0010663[] = {I(ab,24,00,00),B(stream2 ,28),I(3d,02,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 47 binding: (method-generic-write) */
  static const void *G0010665[] = {I(ab,1b,84,24),B(stream2 ,20),I(08,1b,44,16),I(1c,84,24,00),B(stream2 ,20),I(08,1f,03,1f),I(03,1d,3d,02),I(04,22,01,36),I(02,86,45,03)};

  /* Byte-vector with size: 612 is_init: 0 index: 50 binding: top-level */
  static const void *G0010667[] = {I(a9,24,00,00),B(stream2 ,28),I(8a,03,02,84),I(86,24,00,00),B(stream2 ,20),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,47),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(86,24,00,00),B(stream2 ,20),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,46),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(86,24,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,45),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,28),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,42),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,5),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,40),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,92),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,39),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(integer ,2),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,38),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(float ,8),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,36),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,32),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,34),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(vector ,9),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,32),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,82),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,27),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(character ,5),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,25),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(string ,13),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,23),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(stream2 ,4),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,22),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(socket ,2),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,17),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,28),I(8a,03,02,84),I(24,00,00,00),B(socket ,8),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,28),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,48),I(23,00,00,00),B(stream3 ,15),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,28),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(vector ,9),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,13),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,82),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,8),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(character ,5),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,6),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,5),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,5),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(string ,13),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,4),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(stream2 ,31),I(8a,03,02,84),I(24,00,00,00),B(mop_class ,86),I(24,00,00,00),B(stream2 ,19),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(stream2 ,31),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(stream3 ,49),I(23,00,00,00),B(stream3 ,3),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(stream2 ,31),I(1c,24,00,00),B(mop_meth ,5),I(3d,02,84,45),I(84,00,00,00)};

  /* Byte-vector with size: 63 is_init: 1 index: 0 binding: initialize-stream3 */
  static const void *G0010671[] = {I(87,25,00,00),B(stream3 ,1),I(24,00,00,00),B(format ,1),I(3e,0b,24,00),B(format ,0),I(3c,00,21,01),I(24,00,00,00),B(stream ,1),I(3e,0b,24,00),B(stream ,0),I(3c,00,21,01),I(24,00,00,00),B(stream1 ,1),I(3e,0b,24,00),B(stream1 ,0),I(3c,00,21,01),I(24,00,00,00),B(float ,1),I(3e,0b,24,00),B(float ,0),I(3c,00,21,01),I(24,00,00,00),B(vector ,1),I(3e,0b,24,00),B(vector ,0),I(3c,00,21,01),I(24,00,00,00),B(string ,1),I(3e,0b,24,00),B(string ,0),I(3c,00,21,01),I(24,00,00,00),B(character ,1),I(3e,0b,24,00),B(character ,0),I(3c,00,21,01),I(24,00,00,00),B(list ,1),I(3e,0b,24,00),B(list ,0),I(3c,00,21,01),I(24,00,00,00),B(collect ,1),I(3e,0b,24,00),B(collect ,0),I(3c,00,21,01),I(24,00,00,00),B(integer ,1),I(3e,0b,24,00),B(integer ,0),I(3c,00,21,01),I(24,00,00,00),B(telos ,1),I(3e,0b,24,00),B(telos ,0),I(3c,00,21,01),I(23,00,00,00),B(stream3 ,51),I(23,00,00,00),B(stream3 ,50),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_intern_symbol(sym_10599,"anonymous");
  eul_allocate_bytevector( G0010598,G0010597);
  eul_allocate_bytevector( G0010601,G0010600);
  eul_allocate_bytevector( G0010603,G0010602);
  eul_allocate_bytevector( G0010605,G0010604);
  object_class(str_10608) = eul_static_string_class;
  eul_allocate_bytevector( G0010607,G0010606);
  eul_allocate_bytevector( G0010610,G0010609);
  object_class(str_10613) = eul_static_string_class;
  object_class(str_10614) = eul_static_string_class;
  object_class(str_10615) = eul_static_string_class;
  eul_allocate_bytevector( G0010612,G0010611);
  object_class(str_10618) = eul_static_string_class;
  eul_allocate_bytevector( G0010617,G0010616);
  object_class(str_10621) = eul_static_string_class;
  eul_allocate_bytevector( G0010620,G0010619);
  eul_intern_symbol(sym_10624,"r");
  object_class(str_10625) = eul_static_string_class;
  object_class(str_10626) = eul_static_string_class;
  object_class(str_10627) = eul_static_string_class;
  eul_allocate_bytevector( G0010623,G0010622);
  eul_allocate_bytevector( G0010629,G0010628);
  object_class(str_10632) = eul_static_string_class;
  eul_allocate_bytevector( G0010631,G0010630);
  object_class(str_10635) = eul_static_string_class;
  eul_allocate_bytevector( G0010634,G0010633);
  eul_allocate_bytevector( G0010637,G0010636);
  object_class(str_10640) = eul_static_string_class;
  object_class(str_10641) = eul_static_string_class;
  object_class(str_10642) = eul_static_string_class;
  eul_allocate_bytevector( G0010639,G0010638);
  object_class(str_10645) = eul_static_string_class;
  eul_allocate_bytevector( G0010644,G0010643);
  object_class(str_10648) = eul_static_string_class;
  eul_allocate_bytevector( G0010647,G0010646);
  object_class(str_10651) = eul_static_string_class;
  eul_allocate_bytevector( G0010650,G0010649);
  eul_allocate_bytevector( G0010653,G0010652);
  eul_allocate_bytevector( G0010655,G0010654);
  object_class(str_10658) = eul_static_string_class;
  eul_allocate_bytevector( G0010657,G0010656);
  object_class(str_10661) = eul_static_string_class;
  object_class(str_10662) = eul_static_string_class;
  eul_allocate_bytevector( G0010660,G0010659);
  eul_allocate_bytevector( G0010664,G0010663);
  eul_allocate_bytevector( G0010666,G0010665);
  eul_intern_symbol(sym_10669,"(method generic-write)");
  eul_intern_symbol(sym_10670,"(method generic-print)");
  eul_allocate_bytevector( G0010668,G0010667);
  eul_intern_symbol(sym_10673,"top-level");
  eul_allocate_bytevector( G0010672,G0010671);

  /* Set local bindings */
  stream3_bindings[ 2] = sym_10599;
  stream3_bindings[ 3] = G0010598;
  stream3_bindings[ 4] = G0010601;
  stream3_bindings[ 5] = G0010603;
  stream3_bindings[ 6] = G0010605;
  stream3_bindings[ 7] = str_10608;
  stream3_bindings[ 8] = G0010607;
  stream3_bindings[ 9] = G0010610;
  stream3_bindings[ 10] = str_10613;
  stream3_bindings[ 11] = str_10614;
  stream3_bindings[ 12] = str_10615;
  stream3_bindings[ 13] = G0010612;
  stream3_bindings[ 14] = str_10618;
  stream3_bindings[ 15] = G0010617;
  stream3_bindings[ 16] = str_10621;
  stream3_bindings[ 17] = G0010620;
  stream3_bindings[ 18] = sym_10624;
  stream3_bindings[ 19] = str_10625;
  stream3_bindings[ 20] = str_10626;
  stream3_bindings[ 21] = str_10627;
  stream3_bindings[ 22] = G0010623;
  stream3_bindings[ 23] = G0010629;
  stream3_bindings[ 24] = str_10632;
  stream3_bindings[ 25] = G0010631;
  stream3_bindings[ 26] = str_10635;
  stream3_bindings[ 27] = G0010634;
  stream3_bindings[ 28] = G0010637;
  stream3_bindings[ 29] = str_10640;
  stream3_bindings[ 30] = str_10641;
  stream3_bindings[ 31] = str_10642;
  stream3_bindings[ 32] = G0010639;
  stream3_bindings[ 33] = str_10645;
  stream3_bindings[ 34] = G0010644;
  stream3_bindings[ 35] = str_10648;
  stream3_bindings[ 36] = G0010647;
  stream3_bindings[ 37] = str_10651;
  stream3_bindings[ 38] = G0010650;
  stream3_bindings[ 39] = G0010653;
  stream3_bindings[ 40] = G0010655;
  stream3_bindings[ 41] = str_10658;
  stream3_bindings[ 42] = G0010657;
  stream3_bindings[ 43] = str_10661;
  stream3_bindings[ 44] = str_10662;
  stream3_bindings[ 45] = G0010660;
  stream3_bindings[ 46] = G0010664;
  stream3_bindings[ 47] = G0010666;
  stream3_bindings[ 48] = sym_10669;
  stream3_bindings[ 49] = sym_10670;
  stream3_bindings[ 50] = G0010668;
  stream3_bindings[ 1] = eul_nil;
  stream3_bindings[ 51] = sym_10673;
  eul_allocate_lambda( stream3_bindings[0], "initialize-stream3", 0, G0010672);

  }
}
Example #22
0
INLINE BOOL vector_p (D instance) {
  return(object_class(instance) == Lsimple_object_vectorGVKd);
}
Example #23
0
/* Initialize module ex-direct */
void initialize_module_ex_direct()
{
  if (is_initialized) return;
  initialize_module_i_all();
  initialize_module_p_env();
  initialize_module_sx_obj();
  initialize_module_sx_node();
  initialize_module_ex_import();
  initialize_module_ex_syntax();
  initialize_module_ex_expose();
  eul_fast_table_set(eul_modules,"ex_direct",(LispRef) ex_direct_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_2930, sym_2929, sym_2928, sym_2927, sym_2926, G002925, sym_2923, G002922, key_2920, G002917, G002915, G002911, G002909, G002907, G002904, G002901, sym_2899, sym_2898, sym_2897, sym_2896, G002895, G002893, sym_2891, G002890, sym_2888, G002887, G002885, G002883;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 9 is_init: 0 index: 7 binding: anonymous */
  static const void *G002882[] = {I(ab,1c,73,24),B(ex_syntax ,4),I(1c,24,00,00),B(boot ,11),I(3c,02,2a,1d),I(11,1b,11,1b),I(1f,04,1f,05),I(3d,02,05,45),I(05,00,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 8 binding: anonymous */
  static const void *G002884[] = {I(ab,1c,73,24),B(ex_expose ,8),I(1c,24,00,00),B(boot ,11),I(3c,02,2a,1d),I(11,1b,11,1b),I(1f,04,1f,05),I(3d,02,05,45),I(05,00,00,00)};

  /* Byte-vector with size: 12 is_init: 0 index: 10 binding: anonymous */
  static const void *G002886[] = {I(aa,23,00,00),B(ex_direct ,9),I(24,00,00,00),B(dynamic ,3),I(3c,01,1b,8a),I(0f,24,00,00),B(sx_obj1 ,59),I(08,1b,24,00),B(boot1 ,42),I(3c,01,1f,03),I(1f,04,1d,3d),I(02,04,45,04)};

  /* Byte-vector with size: 11 is_init: 0 index: 12 binding: anonymous */
  static const void *G002889[] = {I(ab,1c,73,23),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,10),I(3b,01,1c,24),B(boot ,11),I(3c,02,2a,1d),I(11,1b,11,1b),I(1f,04,1f,05),I(3d,02,05,45),I(05,00,00,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 13 binding: anonymous */
  static const void *G002892[] = {I(ab,1c,73,24),B(ex_import ,6),I(1c,24,00,00),B(boot ,11),I(3c,02,2a,1d),I(11,1b,11,1b),I(1f,04,1f,05),I(3d,02,05,45),I(05,00,00,00)};

  /* Byte-vector with size: 38 is_init: 0 index: 18 binding: top-level */
  static const void *G002894[] = {I(a9,24,00,00),B(aux_table ,4),I(3c,00,1b,89),B(ex_direct ,2),I(2a,23,00,00),B(ex_direct ,14),I(23,00,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,13),I(3b,02,24,00),B(ex_direct ,3),I(3c,02,2a,23),B(ex_direct ,15),I(23,00,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,12),I(3b,02,24,00),B(ex_direct ,3),I(3c,02,2a,23),B(ex_direct ,16),I(23,00,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,8),I(3b,02,24,00),B(ex_direct ,3),I(3c,02,2a,23),B(ex_direct ,17),I(23,00,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,7),I(3b,02,24,00),B(ex_direct ,3),I(3d,02,01,45),I(01,00,00,00)};

  eul_allocate_static_string(str_2902, "redefinition of expander ~a", 27);
  /* Byte-vector with size: 17 is_init: 0 index: 20 binding: install-directive-expander */
  static const void *G002900[] = {I(ab,1c,24,00),B(ex_direct ,2),I(3c,01,1b,34),I(00,00,00,1d),I(86,23,00,00),B(ex_direct ,19),I(1f,04,24,00),B(i_notify ,5),I(3c,03,32,00),I(00,00,00,07),I(86,2a,24,00),B(ex_direct ,2),I(24,00,00,00),B(boot1 ,42),I(3c,01,1f,03),I(1f,03,1d,3d),I(02,04,00,00)};

  eul_allocate_static_string(str_2905, "exported lexical binding ~a not available", 41);
  /* Byte-vector with size: 32 is_init: 0 index: 22 binding: anonymous */
  static const void *G002903[] = {I(ab,1b,24,00),B(sx_obj1 ,14),I(3c,01,1b,34),I(00,00,00,0d),I(86,32,00,00),I(00,00,00,6c),I(1c,24,00,00),B(p_env ,7),I(3c,01,1b,34),I(00,00,00,45),I(1b,84,24,00),B(sx_obj1 ,42),I(08,1c,24,00),B(p_env ,11),I(3c,01,2a,1b),I(24,00,00,00),B(sx_obj ,49),I(3c,01,1b,34),I(00,00,00,19),I(1c,87,1c,82),I(1d,24,00,00),B(sx_obj ,17),I(09,22,02,32),I(00,00,00,06),I(86,22,02,32),I(00,00,00,18),I(86,23,00,00),B(ex_direct ,21),I(1f,04,24,00),B(i_notify ,6),I(3d,03,04,22),I(01,45,03,00)};

  /* Byte-vector with size: 9 is_init: 0 index: 23 binding: expand-export */
  static const void *G002906[] = {I(aa,8a,0f,24),B(sx_obj1 ,59),I(08,23,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,22),I(3b,02,1c,24),B(aux_table ,7),I(3d,02,01,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 24 binding: anonymous */
  static const void *G002908[] = {I(ab,1c,45,02)};

  eul_allocate_static_string(str_2912, "no directive expander ~a available", 34);
  eul_allocate_static_string(str_2913, "no directive expander ~a available", 34);
  /* Byte-vector with size: 41 is_init: 0 index: 27 binding: directive-expander */
  static const void *G002910[] = {I(ab,1c,7a,12),I(1b,34,00,00),I(00,00,00,1f),I(23,00,00,00),B(ex_direct ,11),I(23,00,00,00),B(ex_direct ,24),I(3b,02,32,00),I(00,00,00,7c),I(1d,10,7c,1b),I(34,00,00,00),I(00,00,00,4c),I(1f,03,10,24),B(ex_direct ,2),I(3c,01,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,2b),I(23,00,00,00),B(ex_direct ,25),I(1f,05,24,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,24,00,00),B(boot ,13),I(3c,02,22,01),I(22,01,32,00),I(00,00,00,2a),I(23,00,00,00),B(ex_direct ,26),I(1f,04,24,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,24,00,00),B(boot ,13),I(3c,02,22,01),I(22,01,1f,03),I(1f,03,1d,3d),I(02,04,00,00)};

  /* Byte-vector with size: 1 is_init: 0 index: 28 binding: (method-G002782) */
  static const void *G002914[] = {I(ab,86,45,02)};

  eul_allocate_static_string(str_2918, "compile time error condition: ", 30);
  eul_allocate_static_string(str_2919, "bad directive syntax", 20);
  /* Byte-vector with size: 26 is_init: 0 index: 32 binding: (method-G002782) */
  static const void *G002916[] = {I(ab,24,00,00),B(stream2 ,9),I(23,00,00,00),B(ex_direct ,29),I(24,00,00,00),B(format ,4),I(3c,02,2a,24),B(stream2 ,9),I(1d,24,00,00),B(mop_access ,8),I(3c,02,2a,24),B(i_param ,56),I(34,00,00,00),I(00,00,00,10),I(86,32,00,00),I(00,00,00,2a),I(24,00,00,00),B(i_error ,5),I(23,00,00,00),B(ex_direct ,30),I(23,00,00,00),B(ex_direct ,31),I(47,00,00,24),B(boot ,13),I(3d,04,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 77 is_init: 0 index: 34 binding: expand-directive */
  static const void *G002921[] = {I(aa,46,01,1b),I(48,00,00,84),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(ex_direct ,11),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,8a),I(03,02,84,86),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,1f,03),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(ex_direct ,33),I(23,00,00,00),B(ex_direct ,32),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,1f,06),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,1f,07),I(8a,03,02,84),I(24,00,00,00),B(i_error ,5),I(86,24,00,00),B(boot1 ,40),I(3c,03,24,00),B(boot1 ,26),I(3c,00,1f,0a),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(ex_direct ,33),I(23,00,00,00),B(ex_direct ,28),I(3b,02,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,1f,0d),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,1f,0e),I(24,00,00,00),B(dynamic ,5),I(3c,01,2a,47),I(00,00,24,00),B(ex_direct ,5),I(24,00,00,00),B(ex_direct ,5),I(3c,02,83,24),B(dynamic ,6),I(3c,01,2a,1b),I(45,14,00,00)};

  /* Byte-vector with size: 69 is_init: 1 index: 0 binding: initialize-ex-direct */
  static const void *G002924[] = {I(87,25,00,00),B(ex_direct ,1),I(24,00,00,00),B(ex_expose ,1),I(3e,0b,24,00),B(ex_expose ,0),I(3c,00,21,01),I(24,00,00,00),B(ex_syntax ,1),I(3e,0b,24,00),B(ex_syntax ,0),I(3c,00,21,01),I(24,00,00,00),B(ex_import ,1),I(3e,0b,24,00),B(ex_import ,0),I(3c,00,21,01),I(24,00,00,00),B(sx_node ,1),I(3e,0b,24,00),B(sx_node ,0),I(3c,00,21,01),I(24,00,00,00),B(sx_obj ,1),I(3e,0b,24,00),B(sx_obj ,0),I(3c,00,21,01),I(24,00,00,00),B(p_env ,1),I(3e,0b,24,00),B(p_env ,0),I(3c,00,21,01),I(24,00,00,00),B(i_all ,1),I(3e,0b,24,00),B(i_all ,0),I(3c,00,21,01),I(23,00,00,00),B(ex_direct ,35),I(23,00,00,00),B(ex_direct ,34),I(3b,01,25,00),B(ex_direct ,6),I(23,00,00,00),B(ex_direct ,36),I(23,00,00,00),B(ex_direct ,27),I(3b,02,25,00),B(ex_direct ,5),I(23,00,00,00),B(ex_direct ,37),I(23,00,00,00),B(ex_direct ,23),I(3b,01,25,00),B(ex_direct ,4),I(23,00,00,00),B(ex_direct ,38),I(23,00,00,00),B(ex_direct ,20),I(3b,02,25,00),B(ex_direct ,3),I(86,25,00,00),B(ex_direct ,2),I(23,00,00,00),B(ex_direct ,39),I(23,00,00,00),B(ex_direct ,18),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G002883,G002882);
  eul_allocate_bytevector( G002885,G002884);
  eul_intern_symbol(sym_2888,"*actual-module*");
  eul_allocate_bytevector( G002887,G002886);
  eul_intern_symbol(sym_2891,"anonymous");
  eul_allocate_bytevector( G002890,G002889);
  eul_allocate_bytevector( G002893,G002892);
  eul_intern_symbol(sym_2896,"import");
  eul_intern_symbol(sym_2897,"export");
  eul_intern_symbol(sym_2898,"expose");
  eul_intern_symbol(sym_2899,"syntax");
  eul_allocate_bytevector( G002895,G002894);
  object_class(str_2902) = eul_static_string_class;
  eul_allocate_bytevector( G002901,G002900);
  object_class(str_2905) = eul_static_string_class;
  eul_allocate_bytevector( G002904,G002903);
  eul_allocate_bytevector( G002907,G002906);
  eul_allocate_bytevector( G002909,G002908);
  object_class(str_2912) = eul_static_string_class;
  object_class(str_2913) = eul_static_string_class;
  eul_allocate_bytevector( G002911,G002910);
  eul_allocate_bytevector( G002915,G002914);
  object_class(str_2918) = eul_static_string_class;
  object_class(str_2919) = eul_static_string_class;
  eul_intern_keyword(key_2920,"ct-error-value");
  eul_allocate_bytevector( G002917,G002916);
  eul_intern_symbol(sym_2923,"(method G002782)");
  eul_allocate_bytevector( G002922,G002921);
  eul_intern_symbol(sym_2926,"expand-directive");
  eul_intern_symbol(sym_2927,"directive-expander");
  eul_intern_symbol(sym_2928,"expand-export");
  eul_intern_symbol(sym_2929,"install-directive-expander");
  eul_intern_symbol(sym_2930,"top-level");
  eul_allocate_bytevector( G002925,G002924);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 7; i++)
      ex_direct_bindings[i] = eul_nil;
  }

  ex_direct_bindings[ 7] = G002883;
  ex_direct_bindings[ 8] = G002885;
  ex_direct_bindings[ 9] = sym_2888;
  ex_direct_bindings[ 10] = G002887;
  ex_direct_bindings[ 11] = sym_2891;
  ex_direct_bindings[ 12] = G002890;
  ex_direct_bindings[ 13] = G002893;
  ex_direct_bindings[ 14] = sym_2896;
  ex_direct_bindings[ 15] = sym_2897;
  ex_direct_bindings[ 16] = sym_2898;
  ex_direct_bindings[ 17] = sym_2899;
  ex_direct_bindings[ 18] = G002895;
  ex_direct_bindings[ 19] = str_2902;
  ex_direct_bindings[ 20] = G002901;
  ex_direct_bindings[ 21] = str_2905;
  ex_direct_bindings[ 22] = G002904;
  ex_direct_bindings[ 23] = G002907;
  ex_direct_bindings[ 24] = G002909;
  ex_direct_bindings[ 25] = str_2912;
  ex_direct_bindings[ 26] = str_2913;
  ex_direct_bindings[ 27] = G002911;
  ex_direct_bindings[ 28] = G002915;
  ex_direct_bindings[ 29] = str_2918;
  ex_direct_bindings[ 30] = str_2919;
  ex_direct_bindings[ 31] = key_2920;
  ex_direct_bindings[ 32] = G002917;
  ex_direct_bindings[ 33] = sym_2923;
  ex_direct_bindings[ 34] = G002922;
  ex_direct_bindings[ 1] = eul_nil;
  ex_direct_bindings[ 35] = sym_2926;
  ex_direct_bindings[ 36] = sym_2927;
  ex_direct_bindings[ 37] = sym_2928;
  ex_direct_bindings[ 38] = sym_2929;
  ex_direct_bindings[ 39] = sym_2930;
  eul_allocate_lambda( ex_direct_bindings[0], "initialize-ex-direct", 0, G002925);

  }
}
Example #24
0
INLINE BOOL string_p (D instance) {
  return(object_class(instance) == Lbyte_stringGVKd);
}
Example #25
0
/* Initialize module cg-dld */
void initialize_module_cg_dld()
{
  if (is_initialized) return;
  initialize_module_i_all();
  initialize_module_sx_obj();
  initialize_module_sx_node();
  initialize_module_ex_import();
  initialize_module_ex_syntax();
  initialize_module_i_modify();
  initialize_module_cg_interf();
  initialize_module_p_env();
  eul_fast_table_set(eul_modules,"cg_dld",(LispRef) cg_dld_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_3202, sym_3201, sym_3200, sym_3199, sym_3198, sym_3197, sym_3196, sym_3195, sym_3194, G003193, G003189, G003187, G003185, G003182, G003180, sym_3178, sym_3177, sym_3176, key_3175, G003173, sym_3170, sym_3169, G003168, G003161, sym_3159, G003158, G003156, G003154, G003152, G003150, sym_3148, G003147, sym_3144, sym_3143, sym_3141, G003140, G003138;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 6 is_init: 0 index: 15 binding: anonymous */
  static const void *G003137[] = {I(a9,83,24,00),B(dynamic ,8),I(3c,01,2a,83),I(24,00,00,00),B(dynamic ,8),I(3d,01,00,00)};

  eul_allocate_static_string(str_3142, "  ~a", 4);
  eul_allocate_static_string(str_3145, "Loading syntax module ~a ...", 28);
  /* Byte-vector with size: 44 is_init: 0 index: 21 binding: (method-load-syntax-module) */
  static const void *G003139[] = {I(aa,23,00,00),B(cg_dld ,16),I(24,00,00,00),B(dynamic ,3),I(3c,01,23,00),B(cg_dld ,17),I(1c,24,00,00),B(format ,2),I(3c,02,23,00),B(cg_dld ,16),I(1c,24,00,00),B(dynamic ,2),I(3c,02,2a,23),B(cg_dld ,18),I(24,00,00,00),B(dynamic ,3),I(3c,01,23,00),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,15),I(3b,00,1c,0f),I(23,00,00,00),B(cg_dld ,18),I(1c,24,00,00),B(dynamic ,2),I(3c,02,2a,23),B(cg_dld ,20),I(1f,05,24,00),B(i_notify ,3),I(3c,02,2a,1f),I(04,89,00,00),B(i_param ,63),I(2a,1f,04,24),B(cg_dld ,3),I(3c,01,1f,05),I(1c,24,00,00),B(p_env ,9),I(3c,02,83,24),B(dynamic ,8),I(3c,01,2a,83),I(24,00,00,00),B(dynamic ,8),I(3c,01,2a,1b),I(45,07,00,00)};

  /* Byte-vector with size: 28 is_init: 0 index: 23 binding: top-level */
  static const void *G003146[] = {I(a9,24,00,00),B(i_param ,5),I(8a,03,02,83),I(86,24,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(i_param ,5),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(cg_dld ,22),I(23,00,00,00),B(cg_dld ,21),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(i_param ,5),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(cg_dld ,5),I(3d,00,06,45),I(06,00,00,00)};

  /* Byte-vector with size: 14 is_init: 0 index: 24 binding: anonymous */
  static const void *G003149[] = {I(ab,1c,34,00),I(00,00,00,2e),I(24,00,00,00),B(table ,7),I(24,00,00,00),B(boot1 ,42),I(3c,01,47,00),I(00,1f,03,1f),I(03,1f,03,3c),I(03,2a,1c,22),I(01,32,00,00),I(00,00,00,0a),I(47,00,00,45),I(02,00,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 25 binding: anonymous */
  static const void *G003151[] = {I(aa,47,00,00),I(1c,24,00,00),B(table ,7),I(3d,02,01,00)};

  /* Byte-vector with size: 16 is_init: 0 index: 26 binding: make-module-env */
  static const void *G003153[] = {I(aa,46,01,1b),I(48,00,00,23),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,25),I(3b,01,24,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,1c,23),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,24),I(3b,02,1d,3c),I(02,2a,1c,45),I(03,00,00,00)};

  /* Byte-vector with size: 10 is_init: 0 index: 27 binding: anonymous */
  static const void *G003155[] = {I(aa,1b,24,00),B(cg_dld ,6),I(3c,01,1b,34),I(00,00,00,0d),I(86,32,00,00),I(00,00,00,12),I(1c,24,00,00),B(cg_dld ,3),I(3d,01,02,45),I(02,00,00,00)};

  /* Byte-vector with size: 19 is_init: 0 index: 29 binding: anonymous */
  static const void *G003157[] = {I(a9,47,00,00),I(23,00,00,00),B(cg_dld ,28),I(50,1b,34,00),I(00,00,00,0e),I(86,32,00,00),I(00,00,00,22),I(24,00,00,00),B(i_param ,19),I(24,00,00,00),B(boot1 ,42),I(3c,01,47,00),I(00,86,1d,3c),I(02,22,01,2a),I(47,00,01,89),B(i_param ,20),I(2a,83,24,00),B(dynamic ,8),I(3d,01,01,00)};

  eul_allocate_static_string(str_3162, ".c", 2);
  eul_allocate_static_string(str_3163, "Dynamically linking module ~a ...", 33);
  eul_allocate_static_string(str_3164, "initialize literals module ~a ...", 33);
  eul_allocate_static_string(str_3165, "run module ~a", 13);
  eul_allocate_static_string(str_3166, "module ~a can't be loaded correctly", 35);
  /* Byte-vector with size: 171 is_init: 0 index: 35 binding: dynamic-load-module */
  static const void *G003160[] = {I(43,fe,46,02),I(1c,48,00,00),I(24,00,00,00),B(i_param ,20),I(1b,48,00,01),I(23,00,00,00),B(cg_dld ,18),I(24,00,00,00),B(dynamic ,3),I(3c,01,23,00),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,29),I(3b,00,1c,0f),I(23,00,00,00),B(cg_dld ,18),I(1c,24,00,00),B(dynamic ,2),I(3c,02,2a,1f),I(03,12,1b,34),I(00,00,00,15),I(47,00,00,24),B(cg_dld ,6),I(3c,01,32,00),I(00,00,00,07),I(86,1b,34,00),I(00,00,00,32),I(47,00,00,24),B(p_env ,14),I(3c,01,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,11),I(47,00,00,24),B(cg_interf ,12),I(3c,01,1b,22),I(02,32,00,00),I(00,00,01,cd),I(86,89,00,00),B(i_param ,20),I(2a,1f,05,12),I(1b,34,00,00),I(00,00,00,53),I(47,00,00,24),B(p_env ,14),I(3c,01,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,33),I(47,00,00,24),B(i_modify ,4),I(3c,01,1b,34),I(00,00,00,15),I(47,00,00,24),B(i_param ,18),I(3c,01,32,00),I(00,00,00,10),I(47,00,00,24),B(cg_interf ,12),I(3c,01,22,01),I(22,01,32,00),I(00,00,00,10),I(47,00,00,24),B(i_param ,18),I(3c,01,47,00),I(01,89,00,00),B(i_param ,20),I(2a,1b,8a,03),I(24,00,00,00),B(sx_obj1 ,59),I(08,1c,84,24),B(sx_obj1 ,59),I(08,2a,47,00),I(00,7d,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,0c),I(47,00,00,82),I(02,24,00,00),B(i_param ,35),I(24,00,00,00),B(i_param ,22),I(1d,23,00,00),B(cg_dld ,30),I(24,00,00,00),B(collect ,17),I(3c,04,47,00),I(00,41,00,00),B(cg_dld ,14),I(22,01,24,00),B(stream ,19),I(1d,24,00,00),B(i_param ,16),I(24,00,00,00),B(boot ,5),I(3c,03,10,23),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,27),I(3b,01,1f,06),I(24,00,00,00),B(boot ,17),I(3c,02,2a,23),B(cg_dld ,31),I(47,00,00,24),B(i_notify ,3),I(3c,02,2a,1c),I(1c,41,00,00),B(cg_dld ,13),I(22,02,82,1c),I(1a,1b,34,00),I(00,00,00,7e),I(1f,08,1d,1c),I(8a,12,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1c,26,00,00),I(00,00,01,00),I(14,1f,09,1c),I(1c,8a,11,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(23,00,00,00),B(cg_dld ,32),I(47,00,00,24),B(i_notify ,4),I(3c,02,2a,1f),I(09,47,00,00),I(24,00,00,00),B(cg_dld ,8),I(3c,02,2a,23),B(cg_dld ,33),I(47,00,00,24),B(i_notify ,4),I(3c,02,2a,1f),I(04,82,41,00),B(cg_dld ,11),I(22,02,1b,3c),I(00,2a,1f,0a),I(22,02,32,00),I(00,00,00,2a),I(23,00,00,00),B(cg_dld ,34),I(47,00,00,24),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,24,00,00),B(boot ,13),I(3c,02,22,01),I(22,0a,47,00),I(00,23,00,00),B(cg_dld ,28),I(50,1b,34,00),I(00,00,00,0e),I(86,32,00,00),I(00,00,00,22),I(24,00,00,00),B(i_param ,19),I(24,00,00,00),B(boot1 ,42),I(3c,01,47,00),I(00,86,1d,3c),I(02,22,01,2a),I(47,00,01,89),B(i_param ,20),I(2a,83,24,00),B(dynamic ,8),I(3c,01,2a,1c),I(45,09,00,00)};

  eul_allocate_static_string(str_3171, "binding ~a not accessable in module ~a", 38);
  /* Byte-vector with size: 46 is_init: 0 index: 39 binding: as-dynamic-binding */
  static const void *G003167[] = {I(aa,1b,83,24),B(sx_obj1 ,42),I(08,1c,8a,05),I(24,00,00,00),B(sx_obj1 ,42),I(08,1b,7c,1b),I(34,00,00,00),I(00,00,00,10),I(1c,32,00,00),I(00,00,00,10),I(1c,8a,15,24),B(sx_obj1 ,59),I(08,1f,04,23),B(cg_dld ,36),I(24,00,00,00),B(sx_node ,20),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,19),I(1f,05,23,00),B(cg_dld ,37),I(24,00,00,00),B(sx_node ,20),I(3c,02,1b,34),I(00,00,00,3d),I(1f,06,8a,06),I(24,00,00,00),B(sx_obj1 ,42),I(08,23,00,00),B(cg_dld ,38),I(1c,24,00,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,1f,06,24),B(boot ,13),I(3d,03,09,22),I(02,32,00,00),I(00,00,00,1d),I(1d,41,00,00),B(cg_dld ,14),I(22,01,1b,1f),I(07,41,00,00),B(cg_dld ,11),I(22,03,45,07)};

  eul_allocate_static_string(str_3174, "Create default modules ...", 26);
  /* Byte-vector with size: 122 is_init: 0 index: 45 binding: create-default-modules */
  static const void *G003172[] = {I(a9,23,00,00),B(cg_dld ,40),I(24,00,00,00),B(i_notify ,4),I(3c,01,2a,41),B(cg_dld ,10),I(1b,82,02,1c),I(83,02,1d,84),I(02,24,00,00),B(boot ,29),I(3c,01,1f,03),I(26,00,00,00),I(00,00,00,03),I(02,24,00,00),B(mop_class ,5),I(23,00,00,00),B(cg_dld ,41),I(1d,24,00,00),B(mop_gf ,2),I(3c,03,1f,05),I(26,00,00,00),I(00,00,00,04),I(02,24,00,00),B(mop_class ,5),I(23,00,00,00),B(cg_dld ,41),I(1d,24,00,00),B(mop_gf ,2),I(3c,03,1d,24),B(sx_node ,3),I(3c,01,1c,24),B(sx_node ,3),I(3c,01,23,00),B(cg_dld ,28),I(24,00,00,00),B(sx_node ,3),I(3c,01,23,00),B(cg_dld ,42),I(24,00,00,00),B(sx_node ,3),I(3c,01,2a,23),B(cg_dld ,43),I(24,00,00,00),B(sx_node ,3),I(3c,01,1f,0a),I(24,00,00,00),B(cg_dld ,2),I(3c,01,1f,0a),I(24,00,00,00),B(cg_dld ,2),I(3c,01,23,00),B(cg_dld ,44),I(24,00,00,00),B(sx_node ,3),I(3c,01,1f,06),I(86,1c,8a,12),I(1d,24,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,06,1f,03),I(1c,8a,0f,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,05,86,1c),I(8a,12,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,05,1d,1c),I(8a,0f,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,03,1f,03),I(1c,8a,10,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,03,1f,03),I(1c,8a,0f,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,03,1d,1c),I(8a,0e,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1b,86,1c,8a),I(12,1d,24,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1b,1d,1c,8a),I(0f,1d,24,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,04,84,1c),I(8a,12,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,04,26,00),I(00,00,04,00),I(1c,8a,11,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,04,1f,03),I(1c,8a,10,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,04,1f,03),I(1c,8a,0f,1d),I(24,00,00,00),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,04,1d,1c),I(8a,0e,1d,24),B(sx_obj1 ,59),I(09,22,02,2a),I(1f,06,1f,0c),I(1c,83,1d,24),B(sx_obj1 ,59),I(09,45,11,00)};

  /* Byte-vector with size: 5 is_init: 0 index: 46 binding: module-loaded? */
  static const void *G003179[] = {I(aa,41,00,00),B(cg_dld ,14),I(22,01,82,41),B(cg_dld ,11),I(45,02,00,00)};

  eul_allocate_static_string(str_3183, "binding ~a not available in module ~a", 37);
  /* Byte-vector with size: 41 is_init: 0 index: 48 binding: dynamic-binding-ref */
  static const void *G003181[] = {I(ab,1b,24,00),B(p_env ,14),I(3c,01,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,11),I(1c,24,00,00),B(cg_interf ,12),I(3c,01,1f,03),I(1c,24,00,00),B(p_env ,10),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,63),I(1f,04,1d,24),B(p_env ,7),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,49),I(1f,05,1f,03),I(24,00,00,00),B(p_env ,19),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,2b),I(23,00,00,00),B(cg_dld ,47),I(1f,07,24,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,1f,08,24),B(boot ,13),I(3c,03,22,01),I(22,01,22,01),I(24,00,00,00),B(cg_dld ,4),I(3d,01,05,00)};

  /* Byte-vector with size: 13 is_init: 0 index: 49 binding: anonymous */
  static const void *G003184[] = {I(aa,1b,12,1b),I(34,00,00,00),I(00,00,00,10),I(86,32,00,00),I(00,00,00,25),I(1c,10,1b,11),I(1c,10,47,00),I(00,1d,1d,41),B(cg_dld ,12),I(22,03,2a,1f),I(04,11,47,00),I(01,3d,01,05),I(22,03,45,02)};

  /* Byte-vector with size: 15 is_init: 0 index: 50 binding: dynamic-initialize-local-literals */
  static const void *G003186[] = {I(ab,46,02,41),B(cg_dld ,14),I(22,01,1c,8a),I(04,24,00,00),B(sx_obj1 ,59),I(08,1c,48,00),I(00,86,1b,48),I(00,01,23,00),B(cg_dld ,19),I(23,00,00,00),B(cg_dld ,49),I(3b,01,48,00),I(01,1c,47,00),I(01,3d,01,04),I(45,04,00,00)};

  eul_allocate_static_string(str_3190, "binding ~a not available in module ~a", 37);
  eul_allocate_static_string(str_3191, "binding ~a not accessable in module ~a", 38);
  /* Byte-vector with size: 74 is_init: 0 index: 53 binding: dynamic-binding-set */
  static const void *G003188[] = {I(43,03,1c,24),B(p_env ,14),I(3c,01,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,11),I(1d,24,00,00),B(cg_interf ,12),I(3c,01,1f,04),I(1c,24,00,00),B(p_env ,10),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,63),I(1f,05,1d,24),B(p_env ,7),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,49),I(1f,06,1f,03),I(24,00,00,00),B(p_env ,19),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,2b),I(23,00,00,00),B(cg_dld ,51),I(1f,08,24,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,1f,09,24),B(boot ,13),I(3c,03,22,01),I(22,01,22,01),I(1b,83,24,00),B(sx_obj1 ,42),I(08,1c,8a,05),I(24,00,00,00),B(sx_obj1 ,42),I(08,1d,23,00),B(cg_dld ,36),I(24,00,00,00),B(sx_node ,20),I(3c,02,1b,34),I(00,00,00,0d),I(1b,32,00,00),I(00,00,00,19),I(1f,03,23,00),B(cg_dld ,37),I(24,00,00,00),B(sx_node ,20),I(3c,02,1b,34),I(00,00,00,31),I(23,00,00,00),B(cg_dld ,52),I(1f,0b,24,00),B(format ,2),I(3c,02,24,00),B(condition ,8),I(1c,1f,0c,24),B(boot ,13),I(3d,03,0c,22),I(01,32,00,00),I(00,00,00,1d),I(1d,41,00,00),B(cg_dld ,14),I(22,01,1b,1f),I(05,1f,0b,41),B(cg_dld ,12),I(22,04,45,0b)};

  /* Byte-vector with size: 96 is_init: 1 index: 0 binding: initialize-cg-dld */
  static const void *G003192[] = {I(87,25,00,00),B(cg_dld ,1),I(24,00,00,00),B(p_env ,1),I(3e,0b,24,00),B(p_env ,0),I(3c,00,21,01),I(24,00,00,00),B(cg_interf ,1),I(3e,0b,24,00),B(cg_interf ,0),I(3c,00,21,01),I(24,00,00,00),B(i_modify ,1),I(3e,0b,24,00),B(i_modify ,0),I(3c,00,21,01),I(24,00,00,00),B(ex_syntax ,1),I(3e,0b,24,00),B(ex_syntax ,0),I(3c,00,21,01),I(24,00,00,00),B(ex_import ,1),I(3e,0b,24,00),B(ex_import ,0),I(3c,00,21,01),I(24,00,00,00),B(sx_node ,1),I(3e,0b,24,00),B(sx_node ,0),I(3c,00,21,01),I(24,00,00,00),B(sx_obj ,1),I(3e,0b,24,00),B(sx_obj ,0),I(3c,00,21,01),I(24,00,00,00),B(i_all ,1),I(3e,0b,24,00),B(i_all ,0),I(3c,00,21,01),I(23,00,00,00),B(cg_dld ,54),I(23,00,00,00),B(cg_dld ,53),I(3b,03,25,00),B(cg_dld ,9),I(23,00,00,00),B(cg_dld ,55),I(23,00,00,00),B(cg_dld ,50),I(3b,02,25,00),B(cg_dld ,8),I(23,00,00,00),B(cg_dld ,56),I(23,00,00,00),B(cg_dld ,48),I(3b,02,25,00),B(cg_dld ,7),I(23,00,00,00),B(cg_dld ,57),I(23,00,00,00),B(cg_dld ,46),I(3b,01,25,00),B(cg_dld ,6),I(23,00,00,00),B(cg_dld ,58),I(23,00,00,00),B(cg_dld ,45),I(3b,00,25,00),B(cg_dld ,5),I(23,00,00,00),B(cg_dld ,59),I(23,00,00,00),B(cg_dld ,39),I(3b,01,25,00),B(cg_dld ,4),I(23,00,00,00),B(cg_dld ,60),I(23,00,00,00),B(cg_dld ,35),I(3b,fe,25,00),B(cg_dld ,3),I(23,00,00,00),B(cg_dld ,61),I(23,00,00,00),B(cg_dld ,26),I(3b,01,25,00),B(cg_dld ,2),I(23,00,00,00),B(cg_dld ,62),I(23,00,00,00),B(cg_dld ,23),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G003138,G003137);
  eul_intern_symbol(sym_3141,"*indent*");
  object_class(str_3142) = eul_static_string_class;
  eul_intern_symbol(sym_3143,"*clean-ups*");
  eul_intern_symbol(sym_3144,"anonymous");
  object_class(str_3145) = eul_static_string_class;
  eul_allocate_bytevector( G003140,G003139);
  eul_intern_symbol(sym_3148,"(method load-syntax-module)");
  eul_allocate_bytevector( G003147,G003146);
  eul_allocate_bytevector( G003150,G003149);
  eul_allocate_bytevector( G003152,G003151);
  eul_allocate_bytevector( G003154,G003153);
  eul_allocate_bytevector( G003156,G003155);
  eul_intern_symbol(sym_3159,"user");
  eul_allocate_bytevector( G003158,G003157);
  object_class(str_3162) = eul_static_string_class;
  object_class(str_3163) = eul_static_string_class;
  object_class(str_3164) = eul_static_string_class;
  object_class(str_3165) = eul_static_string_class;
  object_class(str_3166) = eul_static_string_class;
  eul_allocate_bytevector( G003161,G003160);
  eul_intern_symbol(sym_3169,"opencoding");
  eul_intern_symbol(sym_3170,"ff");
  object_class(str_3171) = eul_static_string_class;
  eul_allocate_bytevector( G003168,G003167);
  object_class(str_3174) = eul_static_string_class;
  eul_intern_keyword(key_3175,"name");
  eul_intern_symbol(sym_3176,"math");
  eul_intern_symbol(sym_3177,"level-0");
  eul_intern_symbol(sym_3178,"syntax-0");
  eul_allocate_bytevector( G003173,G003172);
  eul_allocate_bytevector( G003180,G003179);
  object_class(str_3183) = eul_static_string_class;
  eul_allocate_bytevector( G003182,G003181);
  eul_allocate_bytevector( G003185,G003184);
  eul_allocate_bytevector( G003187,G003186);
  object_class(str_3190) = eul_static_string_class;
  object_class(str_3191) = eul_static_string_class;
  eul_allocate_bytevector( G003189,G003188);
  eul_intern_symbol(sym_3194,"dynamic-binding-set");
  eul_intern_symbol(sym_3195,"dynamic-initialize-local-literals");
  eul_intern_symbol(sym_3196,"dynamic-binding-ref");
  eul_intern_symbol(sym_3197,"module-loaded?");
  eul_intern_symbol(sym_3198,"create-default-modules");
  eul_intern_symbol(sym_3199,"as-dynamic-binding");
  eul_intern_symbol(sym_3200,"dynamic-load-module");
  eul_intern_symbol(sym_3201,"make-module-env");
  eul_intern_symbol(sym_3202,"top-level");
  eul_allocate_bytevector( G003193,G003192);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 10; i++)
      cg_dld_bindings[i] = eul_nil;
  }

  cg_dld_bindings[ 10] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_initialize_level_1_tables3132;
  cg_dld_bindings[ 11] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_dyn_binding_ref3133;
  cg_dld_bindings[ 12] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_dyn_binding_set3134;
  cg_dld_bindings[ 13] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_dyn_load_module3135;
  cg_dld_bindings[ 14] = (LispRef) (LispRef (*) (Stack *, LispRef *, LispRef *)) ff_stub_eul_module_name_as_C_module_name_string3136;
  cg_dld_bindings[ 15] = G003138;
  cg_dld_bindings[ 16] = sym_3141;
  cg_dld_bindings[ 17] = str_3142;
  cg_dld_bindings[ 18] = sym_3143;
  cg_dld_bindings[ 19] = sym_3144;
  cg_dld_bindings[ 20] = str_3145;
  cg_dld_bindings[ 21] = G003140;
  cg_dld_bindings[ 22] = sym_3148;
  cg_dld_bindings[ 23] = G003147;
  cg_dld_bindings[ 24] = G003150;
  cg_dld_bindings[ 25] = G003152;
  cg_dld_bindings[ 26] = G003154;
  cg_dld_bindings[ 27] = G003156;
  cg_dld_bindings[ 28] = sym_3159;
  cg_dld_bindings[ 29] = G003158;
  cg_dld_bindings[ 30] = str_3162;
  cg_dld_bindings[ 31] = str_3163;
  cg_dld_bindings[ 32] = str_3164;
  cg_dld_bindings[ 33] = str_3165;
  cg_dld_bindings[ 34] = str_3166;
  cg_dld_bindings[ 35] = G003161;
  cg_dld_bindings[ 36] = sym_3169;
  cg_dld_bindings[ 37] = sym_3170;
  cg_dld_bindings[ 38] = str_3171;
  cg_dld_bindings[ 39] = G003168;
  cg_dld_bindings[ 40] = str_3174;
  cg_dld_bindings[ 41] = key_3175;
  cg_dld_bindings[ 42] = sym_3176;
  cg_dld_bindings[ 43] = sym_3177;
  cg_dld_bindings[ 44] = sym_3178;
  cg_dld_bindings[ 45] = G003173;
  cg_dld_bindings[ 46] = G003180;
  cg_dld_bindings[ 47] = str_3183;
  cg_dld_bindings[ 48] = G003182;
  cg_dld_bindings[ 49] = G003185;
  cg_dld_bindings[ 50] = G003187;
  cg_dld_bindings[ 51] = str_3190;
  cg_dld_bindings[ 52] = str_3191;
  cg_dld_bindings[ 53] = G003189;
  cg_dld_bindings[ 1] = eul_nil;
  cg_dld_bindings[ 54] = sym_3194;
  cg_dld_bindings[ 55] = sym_3195;
  cg_dld_bindings[ 56] = sym_3196;
  cg_dld_bindings[ 57] = sym_3197;
  cg_dld_bindings[ 58] = sym_3198;
  cg_dld_bindings[ 59] = sym_3199;
  cg_dld_bindings[ 60] = sym_3200;
  cg_dld_bindings[ 61] = sym_3201;
  cg_dld_bindings[ 62] = sym_3202;
  eul_allocate_lambda( cg_dld_bindings[0], "initialize-cg-dld", 0, G003193);

  }
}
Example #26
0
INLINE BOOL boolean_p (D instance) {
  return(object_class(instance) == LbooleanGVKd);
  /* TAGGED BOOLEANS
   return(TAG_BITS(instance) == BTAG);
  */
}
Example #27
0
    obj_t exclude;
};

#define NONEOF(x) obj_ptr(struct none_of_type *, x)


/* instancep */

static __inline__ bool singleton_instancep(obj_t thing, obj_t type)
{
    return idp(thing, SING(type)->object);
}

static __inline__ bool class_instancep(obj_t thing, obj_t class)
{
    obj_t thing_class = object_class(thing);

    static obj_t c1_cache[32], c2_cache[32];
    static bool result_cache[32];
    register int cacheloc = (((long)thing_class ^ (long)class) >> 4) & 31;

    if (c1_cache[cacheloc] == thing_class && c2_cache[cacheloc] == class)
        return result_cache[cacheloc];

    c1_cache[cacheloc] = thing_class;
    c2_cache[cacheloc] = class;
    return result_cache[cacheloc] = subtypep(thing_class, class);
}

static __inline__ bool subclass_instancep(obj_t thing, obj_t subclass)
{
Example #28
0
INLINE BOOL single_float_p (D instance) {
  return(object_class(instance) == Lsingle_floatGVKd);
}
Example #29
0
/* Initialize module condition */
void initialize_module_condition()
{
  if (is_initialized) return;
  initialize_module_telos();
  initialize_module_thread();
  initialize_module_dynamic();
  initialize_module_let_cc();
  eul_fast_table_set(eul_modules,"condition",(LispRef) condition_bindings);
  is_initialized = 1;
  {
  /* Declarations */
  LispRef sym_964, sym_963, sym_962, sym_961, G00960, G00958, G00955, G00952, G00950, sym_948, G00947, sym_945, G00944, G00942, sym_940, sym_939, sym_938, sym_937, sym_935, key_934, sym_933, key_931, key_930, key_929, sym_928, key_927, key_926, sym_925, key_924, G00923, G00919, G00917, G00915, G00913;

  /* Code vector and literal definitions */
  /* Byte-vector with size: 1 is_init: 0 index: 9 binding: (method-condition?) */
  static const void *G00912[] = {I(aa,1b,45,01)};

  /* Byte-vector with size: 1 is_init: 0 index: 10 binding: (method-condition?) */
  static const void *G00914[] = {I(aa,86,45,01)};

  /* Byte-vector with size: 4 is_init: 0 index: 11 binding: (setter-condition-message) */
  static const void *G00916[] = {I(ab,1c,82,1d),I(24,00,00,00),B(condition ,8),I(09,45,02,00)};

  eul_allocate_static_string(str_920, "***    Do you want to continue? (y/n) ", 38);
  eul_allocate_static_string(str_921, "***    See Backtrace? (y/n) ", 28);
  /* Byte-vector with size: 29 is_init: 0 index: 14 binding: default-error-handler */
  static const void *G00918[] = {I(ab,1c,24,00),B(condition ,4),I(3c,01,2a,1b),I(12,1b,44,04),I(86,36,2b,84),I(23,00,00,00),B(condition ,12),I(24,00,00,00),B(boot1 ,48),I(3c,02,2a,41),B(boot ,35),I(27,79,50,1b),I(44,09,1f,03),I(1f,03,3c,01),I(36,02,86,22),I(01,2a,84,23),B(condition ,13),I(24,00,00,00),B(boot1 ,48),I(3c,02,2a,41),B(boot ,35),I(27,79,50,1b),I(44,0b,24,00),B(boot ,9),I(3c,00,36,02),I(86,2a,85,24),B(boot1 ,20),I(3d,01,04,45),I(04,00,00,00)};

  eul_allocate_static_cons(cons_932, NULL, NULL);
  eul_allocate_static_cons(cons_936, NULL, NULL);
  /* Byte-vector with size: 163 is_init: 0 index: 32 binding: top-level */
  static const void *G00922[] = {I(a9,24,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(condition ,15),I(23,00,00,00),B(condition ,16),I(23,00,00,00),B(condition ,17),I(23,00,00,00),B(condition ,18),I(24,00,00,00),B(boot1 ,26),I(3c,04,1b,24),B(boot1 ,26),I(3c,01,24,00),B(mop_class ,81),I(23,00,00,00),B(condition ,15),I(23,00,00,00),B(condition ,19),I(23,00,00,00),B(condition ,20),I(1f,06,23,00),B(condition ,21),I(1f,06,23,00),B(condition ,22),I(23,00,00,00),B(condition ,23),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(condition ,8),I(2a,24,00,00),B(condition ,8),I(24,00,00,00),B(boot1 ,26),I(3c,01,23,00),B(condition ,15),I(23,00,00,00),B(condition ,24),I(23,00,00,00),B(condition ,17),I(23,00,00,00),B(condition ,25),I(24,00,00,00),B(boot1 ,26),I(3c,04,1b,24),B(boot1 ,26),I(3c,01,24,00),B(mop_class ,81),I(23,00,00,00),B(condition ,15),I(23,00,00,00),B(condition ,26),I(23,00,00,00),B(condition ,20),I(1f,06,23,00),B(condition ,21),I(1f,06,23,00),B(condition ,22),I(23,00,00,00),B(condition ,27),I(24,00,00,00),B(mop_gf ,2),I(3c,09,1b,89),B(condition ,5),I(2a,83,24,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(boot1 ,26),I(3c,00,23,00),B(condition ,28),I(1f,03,24,00),B(mop_class ,16),I(24,00,00,00),B(mop_class ,63),I(1f,05,1f,05),I(24,00,00,00),B(mop_gf ,16),I(3c,06,1b,89),B(condition ,7),I(2a,23,00,00),B(condition ,29),I(23,00,00,00),B(condition ,14),I(3b,02,89,00),B(condition ,3),I(2a,24,00,00),B(boot1 ,42),I(24,00,00,00),B(boot1 ,42),I(3c,01,24,00),B(condition ,6),I(23,00,00,00),B(condition ,30),I(23,00,00,00),B(condition ,11),I(3b,02,1d,3c),I(02,2a,24,00),B(condition ,7),I(8a,03,02,83),I(24,00,00,00),B(mop_class ,22),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(condition ,7),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(condition ,31),I(23,00,00,00),B(condition ,10),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(condition ,7),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(condition ,7),I(8a,03,02,83),I(24,00,00,00),B(condition ,8),I(24,00,00,00),B(boot1 ,40),I(3c,02,24,00),B(boot1 ,26),I(3c,00,24,00),B(condition ,7),I(8a,04,02,1c),I(1c,24,00,00),B(boot ,8),I(3c,02,1f,04),I(1f,04,23,00),B(condition ,31),I(23,00,00,00),B(condition ,9),I(3b,01,1f,03),I(24,00,00,00),B(mop_meth ,3),I(3c,04,24,00),B(condition ,7),I(1c,24,00,00),B(mop_meth ,5),I(3c,02,2a,24),B(condition ,7),I(2a,24,00,00),B(condition ,8),I(2a,24,00,00),B(condition ,5),I(45,19,00,00)};

  /* Byte-vector with size: 4 is_init: 0 index: 33 binding: anonymous */
  static const void *G00941[] = {I(ab,1c,48,02),I(00,1b,48,02),I(01,86,47,00),I(00,3d,01,02)};

  /* Byte-vector with size: 15 is_init: 0 index: 35 binding: call/ep-lambda */
  static const void *G00943[] = {I(aa,46,01,1b),I(48,00,00,23),B(condition ,34),I(23,00,00,00),B(condition ,33),I(3b,02,24,00),B(dynamic ,5),I(3c,01,2a,47),I(01,00,10,47),I(02,00,47,02),I(01,1d,3c,02),I(83,24,00,00),B(dynamic ,6),I(3c,01,2a,1b),I(45,03,00,00)};

  /* Byte-vector with size: 18 is_init: 0 index: 37 binding: anonymous */
  static const void *G00946[] = {I(aa,46,01,1b),I(48,00,00,47),I(00,00,12,1b),I(44,14,47,01),I(00,47,01,01),I(24,00,00,00),B(condition ,3),I(3d,02,02,36),I(26,23,00,00),B(condition ,36),I(23,00,00,00),B(condition ,35),I(3b,01,24,00),B(let_cc ,2),I(3c,01,47,00),I(00,11,47,01),I(02,3d,01,03),I(22,01,45,02)};

  /* Byte-vector with size: 20 is_init: 0 index: 38 binding: signal */
  static const void *G00949[] = {I(43,fd,46,04),I(1d,48,00,00),I(1c,48,00,01),I(1b,44,05,1b),I(10,36,02,86),I(1b,44,04,1b),I(36,09,24,00),B(thread ,22),I(3c,00,8a,03),I(24,00,00,00),B(thread ,8),I(08,86,1b,48),I(00,02,23,00),B(condition ,34),I(23,00,00,00),B(condition ,37),I(3b,01,48,00),I(02,1c,47,00),I(02,3d,01,06),I(45,06,00,00)};

  eul_allocate_static_string(str_953, "    ~a: ~a\n", 11);
  /* Byte-vector with size: 15 is_init: 0 index: 40 binding: anonymous */
  static const void *G00951[] = {I(aa,1b,44,35),I(1b,10,1b,84),I(02,1c,47,00),I(00,24,00,00),B(mop_defcl ,11),I(3c,02,84,23),B(condition ,39),I(1f,03,1f,03),I(24,00,00,00),B(boot1 ,48),I(3c,04,2a,1f),I(03,11,47,00),I(01,3d,01,04),I(22,03,36,02),I(86,45,01,00)};

  eul_allocate_static_string(str_956, "\n*** ERROR [~a]: ~a\n", 20);
  /* Byte-vector with size: 22 is_init: 0 index: 42 binding: output-condition-contents */
  static const void *G00954[] = {I(aa,46,03,1b),I(48,00,00,47),I(00,00,04,1b),I(82,02,47,00),I(00,82,24,00),B(condition ,8),I(08,86,1b,48),I(00,01,23,00),B(condition ,34),I(23,00,00,00),B(condition ,40),I(3b,01,48,00),I(01,84,23,00),B(condition ,41),I(1f,04,1f,04),I(24,00,00,00),B(boot1 ,48),I(3c,04,2a,1f),I(03,8a,04,02),I(1b,11,47,00),I(01,3d,01,06),I(45,06,00,00)};

  /* Byte-vector with size: 3 is_init: 0 index: 43 binding: condition-message */
  static const void *G00957[] = {I(aa,82,24,00),B(condition ,8),I(08,45,00,00)};

  /* Byte-vector with size: 54 is_init: 1 index: 0 binding: initialize-condition */
  static const void *G00959[] = {I(87,25,00,00),B(condition ,1),I(24,00,00,00),B(let_cc ,1),I(3e,0b,24,00),B(let_cc ,0),I(3c,00,21,01),I(24,00,00,00),B(dynamic ,1),I(3e,0b,24,00),B(dynamic ,0),I(3c,00,21,01),I(24,00,00,00),B(thread ,1),I(3e,0b,24,00),B(thread ,0),I(3c,00,21,01),I(24,00,00,00),B(telos ,1),I(3e,0b,24,00),B(telos ,0),I(3c,00,21,01),I(86,25,00,00),B(condition ,8),I(86,25,00,00),B(condition ,7),I(23,00,00,00),B(condition ,44),I(23,00,00,00),B(condition ,43),I(3b,01,25,00),B(condition ,6),I(86,25,00,00),B(condition ,5),I(23,00,00,00),B(condition ,45),I(23,00,00,00),B(condition ,42),I(3b,01,25,00),B(condition ,4),I(86,25,00,00),B(condition ,3),I(23,00,00,00),B(condition ,46),I(23,00,00,00),B(condition ,38),I(3b,fd,25,00),B(condition ,2),I(23,00,00,00),B(condition ,47),I(23,00,00,00),B(condition ,32),I(3b,00,3d,00),I(00,ac,00,00)};


  /* Initializations */
  eul_allocate_bytevector( G00913,G00912);
  eul_allocate_bytevector( G00915,G00914);
  eul_allocate_bytevector( G00917,G00916);
  object_class(str_920) = eul_static_string_class;
  object_class(str_921) = eul_static_string_class;
  eul_allocate_bytevector( G00919,G00918);
  eul_intern_keyword(key_924,"name");
  eul_intern_symbol(sym_925,"message");
  eul_intern_keyword(key_926,"keyword");
  eul_intern_keyword(key_927,"message");
  eul_intern_symbol(sym_928,"condition");
  eul_intern_keyword(key_929,"direct-superclasses");
  eul_intern_keyword(key_930,"direct-slots");
  eul_intern_keyword(key_931,"direct-keywords");
  object_class(cons_932) = eul_static_cons_class;
  eul_car(cons_932) = key_927;
  eul_cdr(cons_932) = eul_nil;
  eul_intern_symbol(sym_933,"arguments");
  eul_intern_keyword(key_934,"arguments");
  eul_intern_symbol(sym_935,"general-condition");
  object_class(cons_936) = eul_static_cons_class;
  eul_car(cons_936) = key_934;
  eul_cdr(cons_936) = eul_nil;
  eul_intern_symbol(sym_937,"condition?");
  eul_intern_symbol(sym_938,"default-error-handler");
  eul_intern_symbol(sym_939,"(setter condition-message)");
  eul_intern_symbol(sym_940,"(method condition?)");
  eul_allocate_bytevector( G00923,G00922);
  eul_allocate_bytevector( G00942,G00941);
  eul_intern_symbol(sym_945,"anonymous");
  eul_allocate_bytevector( G00944,G00943);
  eul_intern_symbol(sym_948,"call/ep-lambda");
  eul_allocate_bytevector( G00947,G00946);
  eul_allocate_bytevector( G00950,G00949);
  object_class(str_953) = eul_static_string_class;
  eul_allocate_bytevector( G00952,G00951);
  object_class(str_956) = eul_static_string_class;
  eul_allocate_bytevector( G00955,G00954);
  eul_allocate_bytevector( G00958,G00957);
  eul_intern_symbol(sym_961,"condition-message");
  eul_intern_symbol(sym_962,"output-condition-contents");
  eul_intern_symbol(sym_963,"signal");
  eul_intern_symbol(sym_964,"top-level");
  eul_allocate_bytevector( G00960,G00959);

  /* Set local bindings */
  {
    int i;
    for (i = 2; i < 9; i++)
      condition_bindings[i] = eul_nil;
  }

  condition_bindings[ 9] = G00913;
  condition_bindings[ 10] = G00915;
  condition_bindings[ 11] = G00917;
  condition_bindings[ 12] = str_920;
  condition_bindings[ 13] = str_921;
  condition_bindings[ 14] = G00919;
  condition_bindings[ 15] = key_924;
  condition_bindings[ 16] = sym_925;
  condition_bindings[ 17] = key_926;
  condition_bindings[ 18] = key_927;
  condition_bindings[ 19] = sym_928;
  condition_bindings[ 20] = key_929;
  condition_bindings[ 21] = key_930;
  condition_bindings[ 22] = key_931;
  condition_bindings[ 23] = cons_932;
  condition_bindings[ 24] = sym_933;
  condition_bindings[ 25] = key_934;
  condition_bindings[ 26] = sym_935;
  condition_bindings[ 27] = cons_936;
  condition_bindings[ 28] = sym_937;
  condition_bindings[ 29] = sym_938;
  condition_bindings[ 30] = sym_939;
  condition_bindings[ 31] = sym_940;
  condition_bindings[ 32] = G00923;
  condition_bindings[ 33] = G00942;
  condition_bindings[ 34] = sym_945;
  condition_bindings[ 35] = G00944;
  condition_bindings[ 36] = sym_948;
  condition_bindings[ 37] = G00947;
  condition_bindings[ 38] = G00950;
  condition_bindings[ 39] = str_953;
  condition_bindings[ 40] = G00952;
  condition_bindings[ 41] = str_956;
  condition_bindings[ 42] = G00955;
  condition_bindings[ 43] = G00958;
  condition_bindings[ 1] = eul_nil;
  condition_bindings[ 44] = sym_961;
  condition_bindings[ 45] = sym_962;
  condition_bindings[ 46] = sym_963;
  condition_bindings[ 47] = sym_964;
  eul_allocate_lambda( condition_bindings[0], "initialize-condition", 0, G00960);

  }
}
Example #30
0
INLINE BOOL symbol_p (D instance) {
  return(object_class(instance) == LsymbolGVKd);
}