comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTarget.java @ 1473:cb04e4217df0

Sync with CRI/C1X changes.
author Doug Simon <doug.simon@oracle.com>
date Tue, 30 Nov 2010 15:13:57 +0100
parents 43a93774d24f
children
comparison
equal deleted inserted replaced
1472:7641338cfc92 1473:cb04e4217df0
27 * 27 *
28 * @author Lukas Stadler 28 * @author Lukas Stadler
29 */ 29 */
30 public class HotSpotTarget extends CiTarget { 30 public class HotSpotTarget extends CiTarget {
31 31
32 public HotSpotTarget(CiArchitecture arch, boolean isMP, int spillSlotSize, int wordSize, int referenceSize, int stackAlignment, int pageSize, int cacheAlignment, 32 public HotSpotTarget(CiArchitecture arch, boolean isMP, int spillSlotSize, int stackAlignment, int pageSize, int cacheAlignment, boolean inlineObjects) {
33 int heapAlignment, int codeAlignment, boolean inlineObjects) { 33 super(arch, isMP, spillSlotSize, stackAlignment, pageSize, cacheAlignment, inlineObjects, true);
34 super(arch, isMP, spillSlotSize, wordSize, referenceSize, stackAlignment, pageSize, cacheAlignment, heapAlignment, codeAlignment, inlineObjects, true);
35 } 34 }
36 35
37 @Override 36 @Override
38 public int alignFrameSize(int frameSize) { 37 public int alignFrameSize(int frameSize) {
39 // account for the stored rbp value 38 // account for the stored rbp value