Home
last modified time | relevance | path

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

/art/compiler/linker/arm/
Drelative_patcher_thumb2.cc41 uint32_t signbit = (displacement >> 31) & 0x1; in PatchCall() local
46 uint32_t j1 = i1 ^ (signbit ^ 1); in PatchCall()
47 uint32_t j2 = i2 ^ (signbit ^ 1); in PatchCall()
48 uint32_t value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm10 << 16) | imm11; in PatchCall()
/art/compiler/dex/quick/arm/
Dassemble_arm.cc1204 uint32_t signbit = (operand >> 31) & 0x1; in EncodeLIRs() local
1209 uint32_t j1 = (i1 ^ signbit) ? 0 : 1; in EncodeLIRs()
1210 uint32_t j2 = (i2 ^ signbit) ? 0 : 1; in EncodeLIRs()
1211 value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm10 << 16) | in EncodeLIRs()
/art/compiler/utils/arm/
Dassembler_thumb2.cc2398 uint32_t signbit = (offset >> 31) & 0x1; in EncodeBranchOffset() local
2403 uint32_t j1 = (i1 ^ signbit) ? 0 : 1; in EncodeBranchOffset()
2404 uint32_t j2 = (i2 ^ signbit) ? 0 : 1; in EncodeBranchOffset()
2405 value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm10 << 16) | in EncodeBranchOffset()
2410 uint32_t signbit = (offset >> 31) & 0x1; in EncodeBranchOffset() local
2415 value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm6 << 16) | in EncodeBranchOffset()