xref: /illumos-gate/usr/src/tools/protocmp/arch.c (revision c4d175c6)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*ae115bc7Smrj  * Common Development and Distribution License (the "License").
6*ae115bc7Smrj  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate 
227c478bd9Sstevel@tonic-gate /*
23*ae115bc7Smrj  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #include <stdio.h>
287c478bd9Sstevel@tonic-gate #include <string.h>
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include "list.h"
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate int
assign_arch(const char * architecture)337c478bd9Sstevel@tonic-gate assign_arch(const char *architecture)
347c478bd9Sstevel@tonic-gate {
357c478bd9Sstevel@tonic-gate 	int	arch = 0;
367c478bd9Sstevel@tonic-gate 
37*ae115bc7Smrj #if defined(__sparc)
387c478bd9Sstevel@tonic-gate 	if (strcmp(architecture, "sparc") == 0)
397c478bd9Sstevel@tonic-gate 		arch = P_SPARC;
407c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "ISA") == 0)
417c478bd9Sstevel@tonic-gate 		arch = P_SPARC;
427c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "all") == 0)
437c478bd9Sstevel@tonic-gate 		arch = P_SPARC;
447c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4") == 0)
457c478bd9Sstevel@tonic-gate 		arch = P_SUN4;
467c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4c") == 0)
477c478bd9Sstevel@tonic-gate 		arch = P_SUN4c;
487c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4u") == 0)
497c478bd9Sstevel@tonic-gate 		arch = P_SUN4u;
507c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4d") == 0)
517c478bd9Sstevel@tonic-gate 		arch = P_SUN4d;
527c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4e") == 0)
537c478bd9Sstevel@tonic-gate 		arch = P_SUN4e;
547c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4m") == 0)
557c478bd9Sstevel@tonic-gate 		arch = P_SUN4m;
567c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "sparc.sun4v") == 0)
577c478bd9Sstevel@tonic-gate 		arch = P_SUN4v;
58*ae115bc7Smrj #elif defined(__i386)
597c478bd9Sstevel@tonic-gate 	if (strcmp(architecture, "i386") == 0)
607c478bd9Sstevel@tonic-gate 		arch = P_I386;
617c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "ISA") == 0)
627c478bd9Sstevel@tonic-gate 		arch = P_I386;
637c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "all") == 0)
647c478bd9Sstevel@tonic-gate 		arch = P_I386;
657c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "i386.i86pc") == 0)
667c478bd9Sstevel@tonic-gate 		arch = P_I86PC;
677c478bd9Sstevel@tonic-gate #elif defined(__ppc)
687c478bd9Sstevel@tonic-gate 	if (strcmp(architecture, "ppc") == 0)
697c478bd9Sstevel@tonic-gate 		arch = P_PPC;
707c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "ISA") == 0)
717c478bd9Sstevel@tonic-gate 		arch = P_PPC;
727c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "all") == 0)
737c478bd9Sstevel@tonic-gate 		arch = P_PPC;
747c478bd9Sstevel@tonic-gate 	else if (strcmp(architecture, "ppc.prep") == 0)
757c478bd9Sstevel@tonic-gate 		arch = P_PREP;
767c478bd9Sstevel@tonic-gate #else
777c478bd9Sstevel@tonic-gate #error "Unknown instruction set"
787c478bd9Sstevel@tonic-gate #endif
797c478bd9Sstevel@tonic-gate 
807c478bd9Sstevel@tonic-gate 	return (arch);
817c478bd9Sstevel@tonic-gate }
82