HomeSort by relevance Sort by last modified time
    Searched refs:IS_WIDE (Results 1 - 4 of 4) sorted by null

  /art/compiler/dex/quick/arm64/
arm64_lir.h 378 #define IS_WIDE(op) (((op) & kA64Wide) != 0)
387 #define IS_FWIDE IS_WIDE
target_arm64.cc 260 static uint64_t RepeatBitsAcrossReg(bool is_wide, uint64_t value, unsigned width) {
262 unsigned reg_size = (is_wide) ? 64 : 32;
274 * @param is_wide Whether @p value encodes a 64-bit (as opposed to 32-bit) immediate.
279 uint64_t Arm64Mir2Lir::DecodeLogicalImmediate(bool is_wide, int value) {
311 return RepeatBitsAcrossReg(is_wide, RotateRight(bits, imm_r & mask, width), width);
357 int omittable = ((IS_WIDE(lir->opcode)) ? EncodeExtend(kA64Uxtw, 0) :
411 bool is_wide = IS_WIDE(lir->opcode); local
412 uint64_t imm = DecodeLogicalImmediate(is_wide, operand);
453 snprintf(tbuf, arraysize(tbuf), "%d", operand*((IS_WIDE(lir->opcode)) ? 8 : 4))
476 bool is_wide = IS_WIDE(lir->opcode); local
486 bool is_wide = IS_WIDE(lir->opcode); local
    [all...]
assemble_arm64.cc     [all...]
utility_arm64.cc 91 bool opcode_is_wide = IS_WIDE(lir->opcode);
160 static int CountLeadingZeros(bool is_wide, uint64_t value) {
161 return (is_wide) ? __builtin_clzll(value) : __builtin_clz((uint32_t)value);
164 static int CountTrailingZeros(bool is_wide, uint64_t value) {
165 return (is_wide) ? __builtin_ctzll(value) : __builtin_ctz((uint32_t)value);
168 static int CountSetBits(bool is_wide, uint64_t value) {
169 return ((is_wide) ?
176 * @param is_wide Whether @p value is a 64-bit (as opposed to 32-bit) value.
177 * @param value An integer to be encoded. This is interpreted as 64-bit if @p is_wide is true and as
178 * 32-bit if @p is_wide is false
816 bool is_wide = r_dest.Is64Bit(); local
    [all...]

Completed in 56 milliseconds