Home
last modified time | relevance | path

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

/art/compiler/dex/quick/
Dlocal_optimizations.cc222 uint64_t check_flags = GetTargetInstFlags(check_lir->opcode); in ApplyLoadStoreElimination() local
235 if (LOAD_STORE_FILTER(check_flags)) { in ApplyLoadStoreElimination()
238 } else if (check_flags & IS_MOVE) { in ApplyLoadStoreElimination()
248 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE)); in ApplyLoadStoreElimination()
249 bool is_check_lir_load = check_flags & IS_LOAD; in ApplyLoadStoreElimination()
253 DCHECK(check_flags & IS_LOAD); in ApplyLoadStoreElimination()
/art/compiler/dex/quick/arm/
Dutility_arm.cc1258 uint64_t check_flags = GetTargetInstFlags(lir->opcode); in GetInstructionOffset() local
1259 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE)); in GetInstructionOffset()
1260 size_t offset = (check_flags & IS_TERTIARY_OP) ? lir->operands[2] : 0; in GetInstructionOffset()
1262 if (check_flags & SCALED_OFFSET_X2) { in GetInstructionOffset()
1264 } else if (check_flags & SCALED_OFFSET_X4) { in GetInstructionOffset()
/art/compiler/dex/quick/arm64/
Dutility_arm64.cc103 uint64_t check_flags = GetTargetInstFlags(lir->opcode); in GetInstructionOffset() local
104 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE)); in GetInstructionOffset()
105 if (check_flags & SCALED_OFFSET_X0) { in GetInstructionOffset()
106 DCHECK(check_flags & IS_TERTIARY_OP); in GetInstructionOffset()