Lines Matching refs:object_
183 object_(object), in RegisterAllocation()
187 scratch1_ = GetRegThatIsNotRcxOr(object_, address_, scratch0_); in RegisterAllocation()
189 scratch0_ = GetRegThatIsNotRcxOr(object_, address_, scratch1_); in RegisterAllocation()
192 object_ = GetRegThatIsNotRcxOr(address_, scratch0_, scratch1_); in RegisterAllocation()
195 address_ = GetRegThatIsNotRcxOr(object_, scratch0_, scratch1_); in RegisterAllocation()
197 DCHECK(!AreAliased(scratch0_, object_, address_, rcx)); in RegisterAllocation()
201 DCHECK(!address_orig_.is(object_)); in Save()
202 DCHECK(object_.is(object_orig_) || address_.is(address_orig_)); in Save()
203 DCHECK(!AreAliased(object_, address_, scratch1_, scratch0_)); in Save()
205 DCHECK(!AreAliased(object_, address_orig_, scratch1_, scratch0_)); in Save()
220 if (!object_.is(object_orig_)) { in Save()
221 masm->Push(object_); in Save()
222 masm->movp(object_, object_orig_); in Save()
230 if (!object_.is(object_orig_)) { in Restore()
231 masm->movp(object_orig_, object_); in Restore()
232 masm->Pop(object_); in Restore()
262 inline Register object() { return object_; } in object()
271 Register object_; variable