HomeSort by relevance Sort by last modified time
    Searched defs:imm_s (Results 1 - 6 of 6) sorted by null

  /external/v8/src/arm64/
instructions-arm64.cc 90 // indicate a failure case. Specifically, where the constraints on imm_s are not
95 int32_t imm_s = ImmSetBits(); local
98 // An integer is constructed from the n, imm_s and imm_r bits according to
116 if (imm_s == 0x3F) {
119 uint64_t bits = (1UL << (imm_s + 1)) - 1;
122 if ((imm_s >> 1) == 0x1F) {
126 if ((imm_s & width) == 0) {
128 if ((imm_s & mask) == mask) {
131 uint64_t bits = (1UL << ((imm_s & mask) + 1)) - 1;
assembler-arm64.cc 2376 unsigned n, imm_s, imm_r; local
    [all...]
macro-assembler-arm64.cc 122 unsigned n, imm_s, imm_r; local
123 if (IsImmLogical(immediate, reg_size, &n, &imm_s, &imm_r)) {
125 LogicalImmediate(rd, rn, n, imm_s, imm_r, op);
417 unsigned n, imm_s, imm_r; local
429 } else if (IsImmLogical(imm, reg_size, &n, &imm_s, &imm_r)) {
431 LogicalImmediate(dst, AppropriateZeroRegFor(dst), n, imm_s, imm_r, ORR);
    [all...]
  /external/vixl/src/aarch64/
instructions-aarch64.cc 125 // indicate a failure case. Specifically, where the constraints on imm_s are
130 int32_t imm_s = GetImmSetBits(); local
133 // An integer is constructed from the n, imm_s and imm_r bits according to
151 if (imm_s == 0x3f) {
154 uint64_t bits = (UINT64_C(1) << (imm_s + 1)) - 1;
157 if ((imm_s >> 1) == 0x1f) {
161 if ((imm_s & width) == 0) {
163 if ((imm_s & mask) == mask) {
166 uint64_t bits = (UINT64_C(1) << ((imm_s & mask) + 1)) - 1;
macro-assembler-aarch64.cc 499 unsigned n, imm_s, imm_r; local
516 } else if (IsImmLogical(imm, reg_size, &n, &imm_s, &imm_r)) {
523 imm_s,
830 unsigned n, imm_s, imm_r; local
831 if (IsImmLogical(immediate, reg_size, &n, &imm_s, &imm_r)) {
833 LogicalImmediate(rd, rn, n, imm_s, imm_r, op);
    [all...]
  /external/valgrind/VEX/priv/
host_arm64_isel.c 1171 UInt n = 0, imm_s = 0, imm_r = 0; local
    [all...]

Completed in 96 milliseconds