Home
last modified time | relevance | path

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

/art/compiler/utils/arm/
Dassembler_thumb2.cc2230 int32_t mov_encoding = MovwEncoding32(rn_, GetOffset(code_size)); in Emit() local
2233 buffer->Store<int16_t>(location_, mov_encoding >> 16); in Emit()
2234 buffer->Store<int16_t>(location_ + 2u, static_cast<int16_t>(mov_encoding & 0xffff)); in Emit()
2242 int32_t mov_encoding = MovModImmEncoding32(rn_, offset & ~0xfff); in Emit() local
2245 buffer->Store<int16_t>(location_, mov_encoding >> 16); in Emit()
2246 buffer->Store<int16_t>(location_ + 2u, static_cast<int16_t>(mov_encoding & 0xffff)); in Emit()
2284 int32_t mov_encoding = MovwEncoding32(rn_, GetOffset(code_size)); in Emit() local
2286 buffer->Store<int16_t>(location_, mov_encoding >> 16); in Emit()
2287 buffer->Store<int16_t>(location_ + 2u, static_cast<int16_t>(mov_encoding & 0xffff)); in Emit()
2312 int32_t mov_encoding = MovwEncoding32(IP, GetOffset(code_size)); in Emit() local
[all …]