comparison graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotBackend.java @ 11775:b04b94b71649

Finished PTX assembler and Register -> Variable conversion
author Morris Meyer <morris.meyer@oracle.com>
date Tue, 24 Sep 2013 14:24:47 -0400
parents 7ce08e264abf
children 463f51256c86
comparison
equal deleted inserted replaced
11774:f6eb4866d558 11775:b04b94b71649
61 public AMD64HotSpotBackend(HotSpotRuntime runtime, TargetDescription target) { 61 public AMD64HotSpotBackend(HotSpotRuntime runtime, TargetDescription target) {
62 super(runtime, target); 62 super(runtime, target);
63 } 63 }
64 64
65 @Override 65 @Override
66 public boolean shouldAllocateRegisters() {
67 return true;
68 }
69
70 @Override
66 public FrameMap newFrameMap() { 71 public FrameMap newFrameMap() {
67 return new AMD64FrameMap(runtime(), target, runtime().lookupRegisterConfig()); 72 return new AMD64FrameMap(runtime(), target, runtime().lookupRegisterConfig());
68 } 73 }
69 74
70 @Override 75 @Override