Searched defs:ptr1 (Results 1 - 2 of 2) sorted by relevance

/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc117 uint8_t* ptr1 = ptr2 - 4; local
129 uint8_t* limit = ptr1 - 80; // Compiler will hoist to a max of 20 instructions.
131 while (ptr1 > limit) {
132 uint32_t inst1 = *reinterpret_cast<uint32_t*>(ptr1);
138 ptr1 -= 4;
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc139 uint8_t* ptr1 = ptr2 - 4; local
151 uint8_t* limit = ptr1 - 40; // Compiler will hoist to a max of 20 instructions.
153 while (ptr1 > limit) {
154 uint32_t inst1 = ((ptr1[0] | ptr1[1] << 8) << 16) | (ptr1[2] | ptr1[3] << 8);
160 ptr1 -= 2; // Min instruction size is 2 bytes.

Completed in 4 milliseconds