src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/LinuxThreadContextFactory.java
author jgeorge
Thu, 30 Nov 2017 21:24:52 +0530
changeset 48166 2659c4fe8ea7
parent 47216 71c04702a3d5
permissions -rw-r--r--
8191324: SA cleanup -- part 2 Summary: Avoid redefinition of hotspot constants and ia64 code vestiges removal Reviewed-by: sspitsyn, dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
48166
2659c4fe8ea7 8191324: SA cleanup -- part 2
jgeorge
parents: 47216
diff changeset
     2
 * Copyright (c) 2002, 2017, 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.debugger.linux;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
13529
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    27
import java.lang.reflect.*;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
import sun.jvm.hotspot.debugger.linux.amd64.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.debugger.linux.x86.*;
28369
a62a208f18de 8049716: PPC64: Implement SA on Linux/PPC64
simonis
parents: 13529
diff changeset
    31
import sun.jvm.hotspot.debugger.linux.ppc64.*;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
import sun.jvm.hotspot.debugger.linux.sparc.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class LinuxThreadContextFactory {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
   static ThreadContext createThreadContext(LinuxDebugger dbg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
      String cpu = dbg.getCPU();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
      if (cpu.equals("x86")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
         return new LinuxX86ThreadContext(dbg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      } else if (cpu.equals("amd64")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
         return new LinuxAMD64ThreadContext(dbg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
      } else if (cpu.equals("sparc")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
         return new LinuxSPARCThreadContext(dbg);
28369
a62a208f18de 8049716: PPC64: Implement SA on Linux/PPC64
simonis
parents: 13529
diff changeset
    43
      }  else if (cpu.equals("ppc64")) {
a62a208f18de 8049716: PPC64: Implement SA on Linux/PPC64
simonis
parents: 13529
diff changeset
    44
          return new LinuxPPC64ThreadContext(dbg);
13529
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    45
      } else  {
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    46
        try {
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    47
          Class tcc = Class.forName("sun.jvm.hotspot.debugger.linux." +
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    48
             cpu.toLowerCase() + ".Linux" + cpu.toUpperCase() +
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    49
             "ThreadContext");
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    50
          Constructor[] ctcc = tcc.getConstructors();
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    51
          return (ThreadContext)ctcc[0].newInstance(dbg);
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    52
        } catch (Exception e) {
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    53
          throw new RuntimeException("cpu " + cpu + " is not yet supported");
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 5547
diff changeset
    54
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}