comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodResolved.java @ 1448:9196a2b32950

Modified C++ to reflect changes in calling convention CRI code.
author Doug Simon <doug.simon@oracle.com>
date Tue, 09 Nov 2010 17:40:15 +0100
parents d0c8d3a2a7e8
children 565f45cebac2
comparison
equal deleted inserted replaced
1447:1afbc44ee576 1448:9196a2b32950
20 */ 20 */
21 package com.sun.hotspot.c1x; 21 package com.sun.hotspot.c1x;
22 22
23 import java.lang.reflect.*; 23 import java.lang.reflect.*;
24 24
25 import com.sun.cri.ci.*;
25 import com.sun.cri.ri.*; 26 import com.sun.cri.ri.*;
26 27
27 /** 28 /**
28 * Implementation of RiMethod for resolved HotSpot methods. 29 * Implementation of RiMethod for resolved HotSpot methods.
29 * 30 *
154 public String name() { 155 public String name() {
155 return name; 156 return name;
156 } 157 }
157 158
158 @Override 159 @Override
160 public StackTraceElement toStackTraceElement(int bci) {
161 return CiUtil.toStackTraceElement(this, bci);
162 }
163
164 @Override
159 public RiSignature signature() { 165 public RiSignature signature() {
160 if (signature == null) { 166 if (signature == null) {
161 signature = new HotSpotSignature(Compiler.getVMEntries().RiMethod_signature(vmId)); 167 signature = new HotSpotSignature(Compiler.getVMEntries().RiMethod_signature(vmId));
162 } 168 }
163 return signature; 169 return signature;