diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotRuntime.java @ 1420:44efca8a02d6

reformatting similar to other maxine projects (tabs, etc.)
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 13 Jul 2010 11:47:55 -0700
parents 7bf6a77b9c5a
children 6223633ce7dd
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotRuntime.java	Mon Jul 12 15:05:17 2010 -0700
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotRuntime.java	Tue Jul 13 11:47:55 2010 -0700
@@ -1,22 +1,19 @@
 /*
- * Copyright (c) 2009 Sun Microsystems, Inc.  All rights reserved.
+ * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
  *
- * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product
- * that is described in this document. In particular, and without limitation, these intellectual property
- * rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or
- * more additional patents or pending patent applications in the U.S. and in other countries.
+ * Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is
+ * described in this document. In particular, and without limitation, these intellectual property rights may include one
+ * or more of the U.S. patents listed at http://www.sun.com/patents and one or more additional patents or pending patent
+ * applications in the U.S. and in other countries.
  *
- * U.S. Government Rights - Commercial software. Government users are subject to the Sun
- * Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its
- * supplements.
+ * U.S. Government Rights - Commercial software. Government users are subject to the Sun Microsystems, Inc. standard
+ * license agreement and applicable provisions of the FAR and its supplements.
  *
- * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or
- * registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks
- * are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the
- * U.S. and other countries.
+ * Use is subject to license terms. Sun, Sun Microsystems, the Sun logo, Java and Solaris are trademarks or registered
+ * trademarks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and
+ * are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries.
  *
- * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open
- * Company, Ltd.
+ * UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd.
  */
 package com.sun.hotspot.c1x;
 
@@ -45,37 +42,37 @@
 import com.sun.max.asm.dis.DisassemblyPrinter;
 
 /**
- * 
+ *
  * @author Thomas Wuerthinger
- * 
- * CRI runtime implementation for the HotSpot VM.
+ *
+ *         CRI runtime implementation for the HotSpot VM.
  *
  */
 public class HotSpotRuntime implements RiRuntime {
 
-	private final HotSpotVMConfig config;
+    private final HotSpotVMConfig config;
 
-	public HotSpotRuntime(HotSpotVMConfig config) {
-		this.config = config;
-	}
+    public HotSpotRuntime(HotSpotVMConfig config) {
+        this.config = config;
+    }
 
-	@Override
-	public int basicObjectLockOffsetInBytes() {
-		// TODO Auto-generated method stub
-		return 0;
-	}
+    @Override
+    public int basicObjectLockOffsetInBytes() {
+        // TODO Auto-generated method stub
+        return 0;
+    }
 
-	@Override
-	public int codeOffset() {
-		// TODO Auto-generated method stub
-		return 0;
-	}
+    @Override
+    public int codeOffset() {
+        // TODO Auto-generated method stub
+        return 0;
+    }
 
-	@Override
-	public void codePrologue(RiMethod method, OutputStream out) {
-		// TODO Auto-generated method stub
-		
-	}
+    @Override
+    public void codePrologue(RiMethod method, OutputStream out) {
+        // TODO Auto-generated method stub
+
+    }
 
     @Override
     public String disassemble(byte[] code) {
@@ -149,87 +146,87 @@
         return "No disassembler available";
     }
 
-	@Override
-	public RiConstantPool getConstantPool(RiMethod method) {
-		return VMEntries.RiRuntime_getConstantPool(((HotSpotType)method.holder()).klassOop);
-	}
+    @Override
+    public RiConstantPool getConstantPool(RiMethod method) {
+        return VMEntries.RiRuntime_getConstantPool(((HotSpotType) method.holder()).klassOop);
+    }
 
-	@Override
-	public RiOsrFrame getOsrFrame(RiMethod method, int bci) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiOsrFrame getOsrFrame(RiMethod method, int bci) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public RiType getRiType(Class<?> javaClass) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiType getRiType(Class< ? > javaClass) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public RiSnippets getSnippets() {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiSnippets getSnippets() {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public boolean mustInline(RiMethod method) {
-		// TODO Auto-generated method stub
-		return false;
-	}
+    @Override
+    public boolean mustInline(RiMethod method) {
+        // TODO Auto-generated method stub
+        return false;
+    }
 
-	@Override
-	public boolean mustNotCompile(RiMethod method) {
-		// TODO Auto-generated method stub
-		return false;
-	}
+    @Override
+    public boolean mustNotCompile(RiMethod method) {
+        // TODO Auto-generated method stub
+        return false;
+    }
 
-	@Override
-	public boolean mustNotInline(RiMethod method) {
-		// TODO Auto-generated method stub
-		return false;
-	}
+    @Override
+    public boolean mustNotInline(RiMethod method) {
+        // TODO Auto-generated method stub
+        return false;
+    }
 
-	@Override
-	public Object registerTargetMethod(CiTargetMethod targetMethod, String name) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public Object registerTargetMethod(CiTargetMethod targetMethod, String name) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public int sizeofBasicObjectLock() {
-		// TODO Auto-generated method stub
-		return 0;
-	}
+    @Override
+    public int sizeofBasicObjectLock() {
+        // TODO Auto-generated method stub
+        return 0;
+    }
 
-	@Override
-	public RiField getRiField(Field javaField) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiField getRiField(Field javaField) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public RiMethod getRiMethod(Method javaMethod) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiMethod getRiMethod(Method javaMethod) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public RiMethod getRiMethod(Constructor<?> javaConstructor) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public RiMethod getRiMethod(Constructor< ? > javaConstructor) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public CiConstant invoke(RiMethod method, CiMethodInvokeArguments args) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public CiConstant invoke(RiMethod method, CiMethodInvokeArguments args) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
-	@Override
-	public CiConstant foldWordOperation(int opcode, CiMethodInvokeArguments args) {
-		// TODO Auto-generated method stub
-		return null;
-	}
+    @Override
+    public CiConstant foldWordOperation(int opcode, CiMethodInvokeArguments args) {
+        // TODO Auto-generated method stub
+        return null;
+    }
 
 }