1 /*
   2  * CDDL HEADER START
   3  *
   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  */
  26 
  27 #include <sys/dtrace.h>
  28 
  29 #define INTFUNC(x)                      \
  30         BEGIN                           \
  31         /*DSTYLED*/                     \
  32         {                               \
  33                 subr++;                 \
  34                 @[(long)x] = sum(1);    \
  35         /*DSTYLED*/                     \
  36         }
  37 
  38 #define STRFUNC(x)                      \
  39         BEGIN                           \
  40         /*DSTYLED*/                     \
  41         {                               \
  42                 subr++;                 \
  43                 @str[x] = sum(1);       \
  44         /*DSTYLED*/                     \
  45         }
  46 
  47 #define VOIDFUNC(x)                     \
  48         BEGIN                           \
  49         /*DSTYLED*/                     \
  50         {                               \
  51                 subr++;                 \
  52         /*DSTYLED*/                     \
  53         }
  54 
  55 INTFUNC(rand())
  56 INTFUNC(mutex_owned(&`cpu_lock))
  57 INTFUNC(mutex_owner(&`cpu_lock))
  58 INTFUNC(mutex_type_adaptive(&`cpu_lock))
  59 INTFUNC(mutex_type_spin(&`cpu_lock))
  60 INTFUNC(rw_read_held(&`vfssw_lock))
  61 INTFUNC(rw_write_held(&`vfssw_lock))
  62 INTFUNC(rw_iswriter(&`vfssw_lock))
  63 INTFUNC(copyin(NULL, 1))
  64 STRFUNC(copyinstr(NULL, 1))
  65 INTFUNC(speculation())
  66 INTFUNC(progenyof($pid))
  67 INTFUNC(strlen("fooey"))
  68 VOIDFUNC(copyout)
  69 VOIDFUNC(copyoutstr)
  70 INTFUNC(alloca(10))
  71 VOIDFUNC(bcopy)
  72 VOIDFUNC(copyinto)
  73 INTFUNC(msgdsize(NULL))
  74 INTFUNC(msgsize(NULL))
  75 INTFUNC(getmajor(0))
  76 INTFUNC(getminor(0))
  77 STRFUNC(ddi_pathname(NULL, 0))
  78 STRFUNC(strjoin("foo", "bar"))
  79 STRFUNC(lltostr(12373))
  80 STRFUNC(basename("/var/crash/systemtap"))
  81 STRFUNC(dirname("/var/crash/systemtap"))
  82 STRFUNC(cleanpath("/var/crash/systemtap"))
  83 STRFUNC(strchr("The SystemTap, The.", 't'))
  84 STRFUNC(strrchr("The SystemTap, The.", 't'))
  85 STRFUNC(strstr("The SystemTap, The.", "The"))
  86 STRFUNC(strtok("The SystemTap, The.", "T"))
  87 STRFUNC(substr("The SystemTap, The.", 0))
  88 INTFUNC(index("The SystemTap, The.", "The"))
  89 INTFUNC(rindex("The SystemTap, The.", "The"))
  90 INTFUNC(htons(0x1234))
  91 INTFUNC(htonl(0x12345678))
  92 INTFUNC(htonll(0x1234567890abcdefL))
  93 INTFUNC(ntohs(0x1234))
  94 INTFUNC(ntohl(0x12345678))
  95 INTFUNC(ntohll(0x1234567890abcdefL))
  96 STRFUNC(inet_ntoa((ipaddr_t *)alloca(sizeof (ipaddr_t))))
  97 STRFUNC(inet_ntoa6((in6_addr_t *)alloca(sizeof (in6_addr_t))))
  98 STRFUNC(inet_ntop(AF_INET, (void *)alloca(sizeof (ipaddr_t))))
  99 STRFUNC(toupper("foo"))
 100 STRFUNC(tolower("BAR"))
 101 INTFUNC(getf(0))
 102 
 103 BEGIN
 104 /subr == DIF_SUBR_MAX + 1/
 105 {
 106         exit(0);
 107 }
 108 
 109 BEGIN
 110 {
 111         printf("found %d subroutines, expected %d\n", subr, DIF_SUBR_MAX + 1);
 112         exit(1);
 113 }