comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodResolved.java @ 1450:565f45cebac2

Merge
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 11 Nov 2010 14:16:50 +0100
parents 8cfe3537a0d3 9196a2b32950
children c0155c60b089
comparison
equal deleted inserted replaced
1449:8cfe3537a0d3 1450:565f45cebac2
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;