Lines Matching refs:u2

107   u2 _index;              // local, stack, or constant pool index
112 Origin origin, u2 index, StackMapFrame* frame, VerificationType type)
119 static TypeOrigin local(u2 index, StackMapFrame* frame);
120 static TypeOrigin stack(u2 index, StackMapFrame* frame);
121 static TypeOrigin sm_local(u2 index, StackMapFrame* frame);
122 static TypeOrigin sm_stack(u2 index, StackMapFrame* frame);
123 static TypeOrigin cp(u2 index, VerificationType vt);
125 static TypeOrigin bad_index(u2 index);
134 u2 index() const { return _index; }
174 static ErrorContext bad_code(u2 bci) {
177 static ErrorContext bad_type(u2 bci, TypeOrigin type) {
180 static ErrorContext bad_type(u2 bci, TypeOrigin type, TypeOrigin exp) {
183 static ErrorContext bad_flags(u2 bci, StackMapFrame* frame) {
186 static ErrorContext bad_flags(u2 bci, StackMapFrame* cur, StackMapFrame* sm) {
190 static ErrorContext bad_cp_index(u2 bci, u2 index) {
193 static ErrorContext bad_local_index(u2 bci, u2 index) {
197 u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
202 u2 bci, StackMapFrame* frame0, StackMapFrame* frame1) {
206 static ErrorContext stack_overflow(u2 bci, StackMapFrame* frame) {
209 static ErrorContext stack_underflow(u2 bci, StackMapFrame* frame) {
212 static ErrorContext missing_stackmap(u2 bci) {
274 void verify_cp_index(u2 bci, constantPoolHandle cp, int index, TRAPS);
275 void verify_cp_type(u2 bci, int index, constantPoolHandle cp,
277 void verify_cp_class_type(u2 bci, int index, constantPoolHandle cp, TRAPS);
279 u2 verify_stackmap_table(
280 u2 stackmap_index, u2 bci, StackMapFrame* current_frame,
284 u2 bci, bool this_uninit, StackMapFrame* current_frame,
288 int opcode, u2 index, StackMapFrame *current_frame,
289 constantPoolHandle cp, u2 bci, TRAPS);
300 RawBytecodeStream* bcs, u2 ref_index, VerificationType ref_class_type,
309 VerificationType get_newarray_type(u2 index, u2 bci, TRAPS);
310 void verify_anewarray(u2 bci, u2 index, constantPoolHandle cp,
313 VerificationType return_type, VerificationType type, u2 offset,
316 void verify_iload (u2 index, StackMapFrame* current_frame, TRAPS);
317 void verify_lload (u2 index, StackMapFrame* current_frame, TRAPS);
318 void verify_fload (u2 index, StackMapFrame* current_frame, TRAPS);
319 void verify_dload (u2 index, StackMapFrame* current_frame, TRAPS);
320 void verify_aload (u2 index, StackMapFrame* current_frame, TRAPS);
321 void verify_istore(u2 index, StackMapFrame* current_frame, TRAPS);
322 void verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS);
323 void verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS);
324 void verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS);
325 void verify_astore(u2 index, StackMapFrame* current_frame, TRAPS);
326 void verify_iinc (u2 index, StackMapFrame* current_frame, TRAPS);