• Home
  • Raw
  • Download

Lines Matching full:bytecode

44 …On execution of a call bytecode a new function frame is created. All necessary arguments are copie…
47 …arguments. Accumulator value is considered as undefined and shall not be read in verified bytecode.
50 be read in verified bytecode.
62 If bytecode treats register value as signed integer, it uses two's complement representation.
63 To denote that bytecode treats register values as unsigned integer, u32/u64 notation is used.
132 description: Pass control to another bytecode in a current method.
156 description: Bytecode doesn't throw exceptions.
158 description: Bytecode throws NullPointerException in case of null reference as a source.
160 … description: Bytecode throws ArrayIndexOutOfBoundsException if index is out of bounds of an array.
162 description: Bytecode throws NegativeArraySizeException if index is less than zero.
164 …description: Bytecode throws ArrayStoreException if element isn't instance of array's element type.
166 description: Bytecode throws AbstractMethodError if resolved method has no implementation.
168 description: Bytecode throws ArithmeticException if the divisor is 0.
170 description: Bytecode throws ClassCastException if type cast failed.
172 description: Bytecode throws NoClassDefFoundError if type cast failed.
174 description: Bytecode throws OutOfMemoryError if failed to allocate object.
176 …description: Bytecode throws ExceptionInInitializerError if unexpected exception occurred in a sta…
178 description: Bytecode may throw an error if an exception occures in the called bytecode.
180 description: Bytecode's primary role is to throw provided exception object.
182 description: Bytecode may throw NoClassDefFoundError if failed to resolve id.
192 …tion: First operand contains a reference to an array of elements of type corresponding to bytecode.
196 description: First operand contains a value of type corresponding to bytecode.
204 description: Second operand contains a value of type corresponding to bytecode.
208 description: Accumulator contains a value of type corresponding to bytecode. # TODO: specify
245 description: Field_id must resolve to a field of size corresponding to bytecode.