Searched refs:ldr_encoding (Results 1 – 1 of 1) sorted by relevance
/art/compiler/utils/arm/ |
D | assembler_thumb2.cc | 2232 int16_t ldr_encoding = LdrRtRnImm5Encoding16(rn_, rn_, 0); in Emit() local 2236 buffer->Store<int16_t>(location_ + 6u, ldr_encoding); in Emit() 2244 int32_t ldr_encoding = LdrRtRnImm12Encoding(rn_, rn_, offset & 0xfff); in Emit() local 2248 buffer->Store<int16_t>(location_ + 6u, ldr_encoding >> 16); in Emit() 2249 buffer->Store<int16_t>(location_ + 8u, static_cast<int16_t>(ldr_encoding & 0xffff)); in Emit() 2258 int32_t ldr_encoding = LdrRtRnImm12Encoding(rn_, rn_, 0); in Emit() local 2264 buffer->Store<int16_t>(location_ + 10u, ldr_encoding >> 16); in Emit() 2265 buffer->Store<int16_t>(location_ + 12u, static_cast<int16_t>(ldr_encoding & 0xffff)); in Emit() 2314 int32_t ldr_encoding = LoadWideOrFpEncoding(IP, 0u); // DCHECKs type_. in Emit() local 2318 buffer->Store<int16_t>(location_ + 6u, ldr_encoding >> 16); in Emit() [all …]
|