Lines Matching refs:cfa
116 const auto cfa = &DwarfCfaInfo::kTable[cfa_low]; in GetLocationInfo() local
117 for (size_t i = 0; i < cfa->num_operands; i++) { in GetLocationInfo()
118 if (cfa->operands[i] == DW_EH_PE_block) { in GetLocationInfo()
130 if (!memory_->ReadEncodedValue<AddressType>(cfa->operands[i], &value)) { in GetLocationInfo()
208 const auto* cfa = &DwarfCfaInfo::kTable[op]; in LogInstruction() local
209 if (cfa->name[0] == '\0' || (arch_ != ARCH_ARM64 && op == 0x2d)) { in LogInstruction()
219 std::string log_string(cfa->name); in LogInstruction()
221 for (size_t i = 0; i < cfa->num_operands; i++) { in LogInstruction()
222 if (cfa->operands[i] == DW_EH_PE_block) { in LogInstruction()
236 if (!memory_->ReadEncodedValue<AddressType>(cfa->operands[i], &value)) { in LogInstruction()
239 log_string += GetOperandString(cfa->display_operands[i], value, cur_pc); in LogInstruction()