comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/InvocationSocket.java @ 1437:9e5e83ca2259

Enabled -C1X:OPTIONS when running HotSpot/C1X. Enabled checkstyle for the HotSpotVM Java project.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Mon, 25 Oct 2010 16:47:52 +0200
parents 760213a60e8b
children 569d3fe7d65c
comparison
equal deleted inserted replaced
1436:9dae1aae168a 1437:9e5e83ca2259
1 /* 1 /*
2 * Copyright (c) 2010 Sun Microsystems, Inc. All rights reserved. 2 * Copyright (c) 2010 Sun Microsystems, Inc. All rights reserved.
3 * 3 *
4 * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is 4 * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product
5 * described in this document. In particular, and without limitation, these intellectual property rights may include one 5 * that is described in this document. In particular, and without limitation, these intellectual property
6 * or more of the U.S. patents listed at http://www.sun.com/patents and one or more additional patents or pending patent 6 * rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or
7 * applications in the U.S. and in other countries. 7 * more additional patents or pending patent applications in the U.S. and in other countries.
8 * 8 *
9 * U.S. Government Rights - Commercial software. Government users are subject to the Sun Microsystems, Inc. standard 9 * U.S. Government Rights - Commercial software. Government users are subject to the Sun
10 * license agreement and applicable provisions of the FAR and its supplements. 10 * Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its
11 * supplements.
11 * 12 *
12 * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or registered 13 * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or
13 * trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and 14 * registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks
14 * are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. 15 * are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the
16 * U.S. and other countries.
15 * 17 *
16 * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. 18 * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open
19 * Company, Ltd.
17 */ 20 */
18 package com.sun.hotspot.c1x; 21 package com.sun.hotspot.c1x;
19 22
20 import java.io.*; 23 import java.io.*;
21 import java.lang.reflect.*; 24 import java.lang.reflect.*;
82 } 85 }
83 86
84 public Object waitForResult() throws IOException, ClassNotFoundException { 87 public Object waitForResult() throws IOException, ClassNotFoundException {
85 while (true) { 88 while (true) {
86 Object in = input.readObject(); 89 Object in = input.readObject();
87 if (in instanceof Result) 90 if (in instanceof Result) {
88 return ((Result) in).result; 91 return ((Result) in).result;
89 if (in instanceof RuntimeException) 92 } else if (in instanceof RuntimeException) {
90 throw (RuntimeException) in; 93 throw (RuntimeException) in;
91 if (in instanceof Throwable) 94 } else if (in instanceof Throwable) {
92 throw new RuntimeException((Throwable) in); 95 throw new RuntimeException((Throwable) in);
96 }
93 97
94 Invocation invoke = (Invocation) in; 98 Invocation invoke = (Invocation) in;
95 Method method = null; 99 Method method = null;
96 for (Method m : delegate.getClass().getDeclaredMethods()) { 100 for (Method m : delegate.getClass().getDeclaredMethods()) {
97 if (invoke.methodName.equals(m.getName())) { 101 if (invoke.methodName.equals(m.getName())) {