Home
last modified time | relevance | path

Searched refs:it_conditions_ (Results 1 – 4 of 4) sorted by relevance

/art/disassembler/
Ddisassembler_arm.h45 std::vector<const char*> it_conditions_; variable
Ddisassembler_arm.cc1541 if (!it_conditions_.empty()) { in DumpThumb32()
1542 opcode << it_conditions_.back(); in DumpThumb32()
1543 it_conditions_.pop_back(); in DumpThumb32()
1832it_conditions_.resize(count + 2); // Plus the implicit 't', plus the "" for the IT itself. in DumpThumb16()
1838 it_conditions_[i] = kConditionCodeNames[first_cond]; in DumpThumb16()
1841 it_conditions_[i] = kConditionCodeNames[first_cond ^ 1]; in DumpThumb16()
1844 it_conditions_[count] = kConditionCodeNames[first_cond]; // The implicit 't'. in DumpThumb16()
1846 it_conditions_[count + 1] = ""; // No condition code for the IT itself... in DumpThumb16()
1891 if (!it_conditions_.empty()) { in DumpThumb16()
1892 opcode << it_conditions_.back(); in DumpThumb16()
[all …]
/art/compiler/utils/arm/
Dassembler_thumb2.h443 Condition it_conditions_[4]; variable
455 next_condition_ = it_conditions_[it_cond_index_]; in CheckCondition()
465 CHECK_EQ(it_conditions_[it_cond_index_ + 1], AL); in CheckConditionLastIt()
Dassembler_thumb2.cc2129 case kItOmitted: it_conditions_[index] = AL; break; in SetItCondition()
2130 case kItThen: it_conditions_[index] = cond; break; in SetItCondition()
2132 it_conditions_[index] = static_cast<Condition>(static_cast<uint8_t>(cond) ^ 1); in SetItCondition()
2144 it_conditions_[i] = AL; in it()
2165 next_condition_ = it_conditions_[0]; in it()