hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java
author dcubed
Thu, 13 Oct 2011 09:35:42 -0700
changeset 10739 91935236600e
parent 10565 dc90c239f4ec
child 12115 2419c3f9a119
permissions -rw-r--r--
7098194: integrate macosx-port changes Summary: Integrate bsd-port/hotspot and macosx-port/hotspot changes as of 2011.09.29. Reviewed-by: kvn, dholmes, never, phh Contributed-by: Christos Zoulas <christos@zoulas.com>, Greg Lewis <glewis@eyesbeyond.com>, Kurt Miller <kurt@intricatesoftware.com>, Alexander Strange <astrange@apple.com>, Mike Swingler <swingler@apple.com>, Roger Hoover <rhoover@apple.com>, Victor Hernandez <vhernandez@apple.com>, Pratik Solanki <psolanki@apple.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
     2
 * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
package sun.jvm.hotspot.utilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
/** Provides canonicalized OS and CPU information for the rest of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
    system. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
public class PlatformInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  /* Returns "solaris" if on Solaris; "win32" if Windows; "linux" if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
     Linux. Used to determine location of dbx and import module, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
     possible debugger agent on win32. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  public static String getOS() throws UnsupportedPlatformException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    String os = System.getProperty("os.name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    if (os.equals("SunOS")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
      return "solaris";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    } else if (os.equals("Linux")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      return "linux";
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    40
    } else if (os.equals("FreeBSD")) {
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    41
      return "bsd";
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    42
    } else if (os.equals("NetBSD")) {
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    43
      return "bsd";
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    44
    } else if (os.equals("OpenBSD")) {
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    45
      return "bsd";
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    46
    } else if (os.equals("Darwin") || os.startsWith("Mac OS X")) {
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 5547
diff changeset
    47
      return "bsd";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    } else if (os.startsWith("Windows")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      return "win32";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      throw new UnsupportedPlatformException("Operating system " + os + " not yet supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  /* Returns "sparc" if on SPARC, "x86" if on x86. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  public static String getCPU() throws UnsupportedPlatformException {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    String cpu = System.getProperty("os.arch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    if (cpu.equals("i386")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      return "x86";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    } else if (cpu.equals("sparc") || cpu.equals("x86") || cpu.equals("ia64")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      return cpu;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    } else if (cpu.equals("sparcv9")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      return "sparc";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    } else if (cpu.equals("x86_64") || cpu.equals("amd64")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      return "amd64";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      throw new UnsupportedPlatformException("CPU type " + cpu + " not yet supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // this main is invoked from Makefile to make platform specific agent Makefile(s).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  public static void main(String[] args) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    System.out.println(getOS());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}