comparison graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotLIRGenerator.java @ 18976:3faa4f98d5c8

renamed LIRGenerator.emitForeignCall to emitForeignCallOp to avoid confusion
author Doug Simon <doug.simon@oracle.com>
date Tue, 27 Jan 2015 21:24:24 +0100
parents 07f2a49f0bfb
children cd49455040c1
comparison
equal deleted inserted replaced
18975:88083bb2e0f8 18976:3faa4f98d5c8
179 } 179 }
180 180
181 private LIRFrameState currentRuntimeCallInfo; 181 private LIRFrameState currentRuntimeCallInfo;
182 182
183 @Override 183 @Override
184 protected void emitForeignCall(ForeignCallLinkage linkage, Value result, Value[] arguments, Value[] temps, LIRFrameState info) { 184 protected void emitForeignCallOp(ForeignCallLinkage linkage, Value result, Value[] arguments, Value[] temps, LIRFrameState info) {
185 currentRuntimeCallInfo = info; 185 currentRuntimeCallInfo = info;
186 super.emitForeignCall(linkage, result, arguments, temps, info); 186 super.emitForeignCallOp(linkage, result, arguments, temps, info);
187 } 187 }
188 188
189 public void emitLeaveCurrentStackFrame(SaveRegistersOp saveRegisterOp) { 189 public void emitLeaveCurrentStackFrame(SaveRegistersOp saveRegisterOp) {
190 append(new AMD64HotSpotLeaveCurrentStackFrameOp(saveRegisterOp)); 190 append(new AMD64HotSpotLeaveCurrentStackFrameOp(saveRegisterOp));
191 } 191 }