comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotSignature.java @ 1420:44efca8a02d6

reformatting similar to other maxine projects (tabs, etc.)
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 13 Jul 2010 11:47:55 -0700
parents 1b41af477605
children 6223633ce7dd
comparison
equal deleted inserted replaced
1419:7bf6a77b9c5a 1420:44efca8a02d6
92 return argSlots + (withReceiver ? 1 : 0); 92 return argSlots + (withReceiver ? 1 : 0);
93 } 93 }
94 94
95 @Override 95 @Override
96 public RiType argumentTypeAt(int index, RiType accessingClass) { 96 public RiType argumentTypeAt(int index, RiType accessingClass) {
97 System.out.println("argument type at " + index); 97 System.out.println("argument type at " + index);
98 Object accessor = null; 98 Object accessor = null;
99 if (accessingClass instanceof HotSpotType) { 99 if (accessingClass instanceof HotSpotType) {
100 accessor = ((HotSpotType)accessingClass).klassOop; 100 accessor = ((HotSpotType) accessingClass).klassOop;
101 } 101 }
102 return VMEntries.RiSignature_lookupType(arguments.get(index), accessor); 102 return VMEntries.RiSignature_lookupType(arguments.get(index), accessor);
103 } 103 }
104 104
105 @Override 105 @Override
106 public String asString() { 106 public String asString() {