Searched refs:object (Results 1 - 25 of 104) sorted by relevance

12345

/dalvik/vm/mterp/armv5te/
H A DOP_IGET_QUICK.S2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
6 GET_VREG(r3, r2) @ r3<- object we're operating on
8 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
H A DOP_IGET_WIDE_QUICK.S2 %verify "null object"
5 GET_VREG(r3, r2) @ r3<- object we're operating on
7 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
H A DOP_MONITOR_ENTER.S2 %verify "exception for null object"
4 * Synchronize on an object.
8 GET_VREG(r1, r2) @ r1<- vAA (object)
10 cmp r1, #0 @ null object?
12 beq common_errNullObject @ null object, throw an exception
H A DOP_IPUT_QUICK.S2 %verify "null object"
6 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
8 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
H A DOP_ARRAY_LENGTH.S7 GET_VREG(r0, r1) @ r0<- vB (object ref)
9 cmp r0, #0 @ is object null?
H A DOP_THROW.S2 %verify "exception for null object"
4 * Throw an exception object in the current thread.
8 GET_VREG(r1, r2) @ r1<- vAA (exception object)
10 cmp r1, #0 @ null object?
H A DOP_IPUT_OBJECT_QUICK.S2 %verify "null object"
3 /* For: iput-object-quick */
6 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
8 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
/dalvik/vm/mterp/mips/
H A DOP_IGET_QUICK.S2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
6 GET_VREG(a3, a2) # a3 <- object we're operating on
9 # check object for null
10 beqz a3, common_errNullObject # object was null
H A DOP_IGET_WIDE_QUICK.S2 %verify "null object"
5 GET_VREG(a3, a2) # a3 <- object we're operating on
8 # check object for null
9 beqz a3, common_errNullObject # object was null
H A DOP_MONITOR_ENTER.S2 %verify "exception for null object"
4 * Synchronize on an object.
8 GET_VREG(a1, a2) # a1 <- vAA (object)
11 # null object?
12 beqz a1, common_errNullObject # null object, throw an exception
H A DOP_ARRAY_LENGTH.S7 GET_VREG(a0, a1) # a0 <- vB (object ref)
8 # is object null?
H A DOP_THROW.S2 %verify "exception for null object"
4 * Throw an exception object in the current thread.
8 GET_VREG(a1, a2) # a1 <- vAA (exception object)
10 # null object?
/dalvik/vm/mterp/x86/
H A DOP_THROW.S2 %verify "exception for null object"
4 * Throw an exception object in the current thread.
8 GET_VREG_R %eax rINST # eax<- exception object
10 testl %eax,%eax # null object?
H A DOP_IGET_QUICK.S2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 cmpl $$0,%ecx # is object null?
H A DOP_IGET_WIDE_QUICK.S2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 cmpl $$0,%ecx # is object null?
H A DOP_IPUT_OBJECT_QUICK.S2 %verify "null object"
3 /* For: iput-object-quick */
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
11 testl %ecx,%ecx # is object null?
18 shrl $$GC_CARD_SHIFT,%ecx # object head to card number
19 movb %al,(%eax,%ecx) # mark card based on object head
H A DOP_IPUT_QUICK.S2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
11 testl %ecx,%ecx # is object null?
H A DOP_IPUT_WIDE_QUICK.S2 %verify "null object"
7 GET_VREG_R %ecx %ecx # vB (object we're operating on)
9 testl %ecx,%ecx # is object null?
H A DOP_MOVE_EXCEPTION.S5 SET_VREG %eax rINST # fp[AA]<- exception object
H A DOP_MONITOR_ENTER.S2 %verify "exception for null object"
4 * Synchronize on an object.
10 testl %eax,%eax # null object?
16 call dvmLockObject # dvmLockObject(self,object)
/dalvik/vm/mterp/armv6t2/
H A DOP_IGET_QUICK.S2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
7 GET_VREG(r3, r2) @ r3<- object we're operating on
9 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
H A DOP_IGET_WIDE_QUICK.S2 %verify "null object"
6 GET_VREG(r3, r2) @ r3<- object we're operating on
8 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
H A DOP_IPUT_QUICK.S2 %verify "null object"
3 /* For: iput-quick, iput-object-quick */
7 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
9 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
H A DOP_IPUT_WIDE_QUICK.S2 %verify "null object"
6 GET_VREG(r2, r1) @ r2<- fp[B], the object pointer
8 cmp r2, #0 @ check object for null
10 beq common_errNullObject @ object was null
H A DOP_ARRAY_LENGTH.S7 GET_VREG(r0, r1) @ r0<- vB (object ref)
8 cmp r0, #0 @ is object null?

Completed in 111 milliseconds

12345