OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc/] [execute/] [bycopy-3.m] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/*
/*
 * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
 * Contributed by Nicola Pero <nicola@brainstorm.co.uk>
 * Wed Feb 28 12:27:03 CET 2001
 * Wed Feb 28 12:27:03 CET 2001
 */
 */
 
 
/*
/*
 * This test contains some no-op code which is needed to keep it
 * This test contains some no-op code which is needed to keep it
 * compile on broken gcc 3.x.  Anyway, the no-op code does not
 * compile on broken gcc 3.x.  Anyway, the no-op code does not
 * interfere with what we are testing, which is that the `bycopy'
 * interfere with what we are testing, which is that the `bycopy'
 * keyword generates the _F_BYCOPY qualifier for the return type.  */
 * keyword generates the _F_BYCOPY qualifier for the return type.  */
 
 
#include <objc/objc.h>
#include <objc/objc.h>
#include <objc/Object.h>
#include <objc/Object.h>
#include <objc/Protocol.h>
#include <objc/Protocol.h>
 
 
#ifndef __NEXT_RUNTIME__
#ifndef __NEXT_RUNTIME__
#include <objc/encoding.h>
#include <objc/encoding.h>
#endif
#endif
#include "next_mapping.h"
#include "next_mapping.h"
 
 
@protocol MyProtocol
@protocol MyProtocol
+ (bycopy id<MyProtocol>) bycopyMethod;
+ (bycopy id<MyProtocol>) bycopyMethod;
@end
@end
 
 
/* This no-op class to keep it compile under broken gcc 3.x */
/* This no-op class to keep it compile under broken gcc 3.x */
@interface MyObject : Object <MyProtocol>
@interface MyObject : Object <MyProtocol>
@end
@end
 
 
@implementation MyObject
@implementation MyObject
+ (bycopy id<MyProtocol>) bycopyMethod
+ (bycopy id<MyProtocol>) bycopyMethod
{
{
  return [MyObject alloc];
  return [MyObject alloc];
}
}
@end
@end
 
 
int main (void)
int main (void)
{
{
  struct objc_method_description *method;
  struct objc_method_description *method;
  const char *method_types;
  const char *method_types;
  unsigned qualifiers;
  unsigned qualifiers;
  Protocol *protocol;
  Protocol *protocol;
  /* This no-op command is needed to keep the test compile on broken
  /* This no-op command is needed to keep the test compile on broken
     gcc 3.x */
     gcc 3.x */
  MyObject *object = [MyObject bycopyMethod];
  MyObject *object = [MyObject bycopyMethod];
 
 
  /* Get the protocol object */
  /* Get the protocol object */
  protocol = @protocol (MyProtocol);
  protocol = @protocol (MyProtocol);
 
 
  /* Ask to the protocol for the description of the method bycopyMethod */
  /* Ask to the protocol for the description of the method bycopyMethod */
  method = [protocol descriptionForClassMethod: @selector (bycopyMethod)];
  method = [protocol descriptionForClassMethod: @selector (bycopyMethod)];
  if (method == NULL)
  if (method == NULL)
    {
    {
      printf ("Could not find method bycopyMethod in protocol!\n");
      printf ("Could not find method bycopyMethod in protocol!\n");
      exit (1);
      exit (1);
    }
    }
 
 
  /* Get the method types for the method - which encode return type,
  /* Get the method types for the method - which encode return type,
     arguments etc. */
     arguments etc. */
  method_types = method->types;
  method_types = method->types;
 
 
  /* Get the qualifiers for the return type */
  /* Get the qualifiers for the return type */
  qualifiers = objc_get_type_qualifiers (method_types);
  qualifiers = objc_get_type_qualifiers (method_types);
 
 
  /* If _F_BYCOPY is not there, the compiler is broken */
  /* If _F_BYCOPY is not there, the compiler is broken */
  if (! (qualifiers & _F_BYCOPY))
  if (! (qualifiers & _F_BYCOPY))
    {
    {
      printf ("Failed - selector does not contain _F_BYCOPY qualifier!\n");
      printf ("Failed - selector does not contain _F_BYCOPY qualifier!\n");
      exit (1);
      exit (1);
    }
    }
 
 
  /* Else, happy end */
  /* Else, happy end */
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.