Lines Matching refs:object_
187 object_(object), in RegisterAllocation()
191 scratch1_ = GetRegThatIsNotEcxOr(object_, address_, scratch0_); in RegisterAllocation()
193 scratch0_ = GetRegThatIsNotEcxOr(object_, address_, scratch1_); in RegisterAllocation()
196 object_ = GetRegThatIsNotEcxOr(address_, scratch0_, scratch1_); in RegisterAllocation()
199 address_ = GetRegThatIsNotEcxOr(object_, scratch0_, scratch1_); in RegisterAllocation()
201 DCHECK(!AreAliased(scratch0_, object_, address_, ecx)); in RegisterAllocation()
205 DCHECK(!address_orig_.is(object_)); in Save()
206 DCHECK(object_.is(object_orig_) || address_.is(address_orig_)); in Save()
207 DCHECK(!AreAliased(object_, address_, scratch1_, scratch0_)); in Save()
209 DCHECK(!AreAliased(object_, address_orig_, scratch1_, scratch0_)); in Save()
224 if (!object_.is(object_orig_)) { in Save()
225 masm->push(object_); in Save()
226 masm->mov(object_, object_orig_); in Save()
234 if (!object_.is(object_orig_)) { in Restore()
235 masm->mov(object_orig_, object_); in Restore()
236 masm->pop(object_); in Restore()
264 inline Register object() { return object_; } in object()
273 Register object_; variable