Searched defs:check_flags (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/quick/
H A Dlocal_optimizations.cc221 uint64_t check_flags = GetTargetInstFlags(check_lir->opcode); local
234 if (LOAD_STORE_FILTER(check_flags)) {
237 } else if (check_flags & IS_MOVE) {
247 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE));
248 bool is_check_lir_load = check_flags & IS_LOAD;
252 DCHECK(check_flags & IS_LOAD);
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc1171 uint64_t check_flags = GetTargetInstFlags(lir->opcode); local
1172 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE));
1173 size_t offset = (check_flags & IS_TERTIARY_OP) ? lir->operands[2] : 0;
1175 if (check_flags & SCALED_OFFSET_X2) {
1177 } else if (check_flags & SCALED_OFFSET_X4) {
/art/compiler/dex/quick/arm64/
H A Dutility_arm64.cc101 uint64_t check_flags = GetTargetInstFlags(lir->opcode); local
102 DCHECK((check_flags & IS_LOAD) || (check_flags & IS_STORE));
103 if (check_flags & SCALED_OFFSET_X0) {
104 DCHECK(check_flags & IS_TERTIARY_OP);

Completed in 68 milliseconds