comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/Frame.java @ 11427:51dcddfa25a6

Truffle: add Byte to Frame
author Christian Wirth <christian.wirth@oracle.com>
date Mon, 26 Aug 2013 18:25:40 +0200
parents 494b818b527c
children 269e6794e1ec
comparison
equal deleted inserted replaced
11420:7c4c1a7c875a 11427:51dcddfa25a6
65 * @param value the new value of the local variable 65 * @param value the new value of the local variable
66 */ 66 */
67 void setObject(FrameSlot slot, Object value) throws FrameSlotTypeException; 67 void setObject(FrameSlot slot, Object value) throws FrameSlotTypeException;
68 68
69 /** 69 /**
70 * Read access to a local variable of type byte.
71 *
72 * @param slot the slot of the local variable
73 * @return the current value of the local variable
74 */
75 byte getByte(FrameSlot slot) throws FrameSlotTypeException;
76
77 /**
78 * Write access to a local variable of type byte.
79 *
80 * @param slot the slot of the local variable
81 * @param value the new value of the local variable
82 */
83
84 void setByte(FrameSlot slot, byte value) throws FrameSlotTypeException;
85
86 /**
70 * Read access to a local variable of type boolean. 87 * Read access to a local variable of type boolean.
71 * 88 *
72 * @param slot the slot of the local variable 89 * @param slot the slot of the local variable
73 * @return the current value of the local variable 90 * @return the current value of the local variable
74 */ 91 */