Home
last modified time | relevance | path

Searched refs:value_loc (Results 1 – 1 of 1) sorted by relevance

/art/compiler/optimizing/
Dintrinsics_x86.cc1238 Location value_loc = locations->InAt(1); in GenPoke() local
1243 if (value_loc.IsConstant()) { in GenPoke()
1245 Immediate(value_loc.GetConstant()->AsIntConstant()->GetValue())); in GenPoke()
1247 __ movb(Address(address, 0), value_loc.AsRegister<ByteRegister>()); in GenPoke()
1251 if (value_loc.IsConstant()) { in GenPoke()
1253 Immediate(value_loc.GetConstant()->AsIntConstant()->GetValue())); in GenPoke()
1255 __ movw(Address(address, 0), value_loc.AsRegister<Register>()); in GenPoke()
1259 if (value_loc.IsConstant()) { in GenPoke()
1261 Immediate(value_loc.GetConstant()->AsIntConstant()->GetValue())); in GenPoke()
1263 __ movl(Address(address, 0), value_loc.AsRegister<Register>()); in GenPoke()
[all …]