Searched refs:out_attr (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp149 // 1. The out_attr must be initailized and has value of the same type as
151 // 2. The value helf by out_attr and pInAttr must be different.
152 ELFAttributeValue& out_attr = m_Attrs[pTag]; local
155 assert(out_attr.isInitialized() && "No output attribute to be merged!");
199 // value held by pInAttr and out_attr goes into output.
211 assert((out_attr.type() == ELFAttributeValue::Int) &&
214 if (pInAttr.getIntValue() > out_attr.getIntValue())
215 out_attr.setIntValue(pInAttr.getIntValue());
219 // value held by pInAttr and out_attr goes into output.
222 assert((out_attr
772 ELFAttributeValue& out_attr = m_Attrs[Tag_ABI_VFP_args]; local
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp240 ELFAttributeValue* out_attr; local
243 std::tie(out_attr, is_newly_created) =
246 assert(out_attr != NULL);
249 // Directly read the attribute value to the out_attr.
250 if (!ELFAttributeData::ReadValue(*out_attr, attr_buf, attr_size))
256 in_attr.setType(out_attr->type());
264 if ((in_attr != *out_attr) &&

Completed in 184 milliseconds