| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectMemory.cpp | 65 m_value.GetScalar() = load_address; in ValueObjectMemory() 70 m_value.GetScalar() = file_address; in ValueObjectMemory() 72 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory() 73 m_value.SetValueType(Value::ValueType::Scalar); in ValueObjectMemory() 92 m_value.SetCompilerType(m_compiler_type); in ValueObjectMemory() 96 m_value.GetScalar() = load_address; in ValueObjectMemory() 101 m_value.GetScalar() = file_address; in ValueObjectMemory() 103 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory() 166 Value old_value(m_value); in UpdateValue() 196 m_value.GetScalar() = load_addr; in UpdateValue() [all …]
|
| H A D | ValueObjectChild.cpp | 109 m_value.SetCompilerType(GetCompilerType()); in UpdateValue() 113 m_value.GetScalar() = parent->GetValue().GetScalar(); in UpdateValue() 114 m_value.SetValueType(parent->GetValue().GetValueType()); in UpdateValue() 122 m_value.GetScalar() = parent->GetPointerValue(); in UpdateValue() 133 m_value.SetValueType(is_instance_ptr_base in UpdateValue() 138 m_value.SetValueType(Value::ValueType::HostAddress); in UpdateValue() 142 m_value.SetValueType(Value::ValueType::Scalar); in UpdateValue() 146 switch (m_value.GetValueType()) { in UpdateValue() 183 m_value.GetScalar() += m_byte_offset; in UpdateValue() 190 Scalar scalar(m_value.GetScalar()); in UpdateValue() [all …]
|
| H A D | Value.cpp | 56 : m_value(v.m_value), m_compiler_type(v.m_compiler_type), in Value() 72 m_value = rhs.m_value; in operator =() 93 m_value = (uintptr_t)m_data_buffer.GetBytes(); in SetBytes() 99 m_value = (uintptr_t)m_data_buffer.GetBytes(); in AppendBytes() 103 m_value.GetValue(strm, true); in Dump() 283 if (m_value.GetData(data)) in GetData() 584 m_value = scalar; in ResolveValue() 588 m_value.Clear(); in ResolveValue() 594 m_value.Clear(); in ResolveValue() 601 return m_value; in ResolveValue() [all …]
|
| H A D | ValueObjectCast.cpp | 36 m_value.SetCompilerType(cast_type); in ValueObjectCast() 52 return m_value.GetValueByteSize(nullptr, &exe_ctx); in GetByteSize() 65 Value old_value(m_value); in UpdateValue() 67 m_value = m_parent->GetValue(); in UpdateValue() 69 m_value.SetCompilerType(compiler_type); in UpdateValue() 75 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() || in UpdateValue() 76 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue() 79 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
|
| H A D | ValueObjectConstResult.cpp | 76 m_value.SetValueType(Value::ValueType::HostAddress); in ValueObjectConstResult() 77 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 117 m_value.GetScalar() = (uintptr_t)data_sp->GetBytes(); in ValueObjectConstResult() 118 m_value.SetValueType(Value::ValueType::HostAddress); in ValueObjectConstResult() 119 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 145 m_value.GetScalar() = address; in ValueObjectConstResult() 147 m_value.GetScalar().GetData(m_data, addr_byte_size); in ValueObjectConstResult() 151 m_value.SetValueType(Value::ValueType::Scalar); in ValueObjectConstResult() 163 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 189 m_value = value; in ValueObjectConstResult() [all …]
|
| H A D | ValueObjectVariable.cpp | 137 m_value.SetBytes(m_data.GetDataStart(), m_data.GetByteSize()); in UpdateValue() 138 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue() 162 Value old_value(m_value); in UpdateValue() 164 nullptr, m_value, &m_error)) { in UpdateValue() 165 m_resolved_value = m_value; in UpdateValue() 166 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue() 170 m_value.SetCompilerType(compiler_type); in UpdateValue() 172 Value::ValueType value_type = m_value.GetValueType(); in UpdateValue() 191 m_value.ResizeData(value_size); in UpdateValue() 221 m_value.ConvertToLoadAddress(GetModule().get(), target); in UpdateValue() [all …]
|
| H A D | ValueObjectDynamicValue.cpp | 47 return m_value.GetCompilerType(); in GetCompilerTypeImpl() 105 return m_value.GetValueByteSize(nullptr, &exe_ctx); in GetByteSize() 201 m_value = m_parent->GetValue(); in UpdateValue() 202 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue() 206 Value old_value(m_value); in UpdateValue() 233 m_value.GetScalar() = load_address; in UpdateValue() 240 m_value.SetCompilerType(m_dynamic_type_info.GetCompilerType()); in UpdateValue() 242 m_value.SetValueType(value_type); in UpdateValue() 251 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue() 257 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() || in UpdateValue() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFFormValue.cpp | 27 m_value = ValueTypeTag(); in Clear() 37 m_value.data = nullptr; in ExtractValue() 46 m_value.value.uval = in ExtractValue() 62 m_value.value.uval = 16; in ExtractValue() 132 m_value.value.uval = 1; in ExtractValue() 140 m_value.data = data.PeekData(*offset_ptr, m_value.value.uval); in ExtractValue() 141 if (m_value.data != nullptr) { in ExtractValue() 142 *offset_ptr += m_value.value.uval; in ExtractValue() 462 return m_value.value.cstr; in AsCString() 502 uint64_t value = m_value.value.uval; in Reference() [all …]
|
| H A D | DWARFFormValue.h | 50 const ValueType &Value() const { return m_value; } in Value() 51 ValueType &ValueRef() { return m_value; } in ValueRef() 52 void SetValue(const ValueType &val) { m_value = val; } in SetValue() 63 bool Boolean() const { return m_value.value.uval != 0; } in Boolean() 64 uint64_t Unsigned() const { return m_value.value.uval; } in Unsigned() 65 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; } in SetUnsigned() 66 int64_t Signed() const { return m_value.value.sval; } in Signed() 67 void SetSigned(int64_t sval) { m_value.value.sval = sval; } in SetSigned() 87 ValueType m_value; // Contains all data for the form variable
|
| H A D | DWARFAttribute.h | 23 : m_attr(attr), m_form(form), m_value(value) {} in DWARFAttribute() 27 DWARFFormValue::ValueType get_value() const { return m_value; } in get_value() 32 val = m_value; in get() 41 DWARFFormValue::ValueType m_value; variable
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Predicate.h | 47 Predicate() : m_value(), m_mutex(), m_condition() {} in Predicate() 57 : m_value(initial_value), m_mutex(), m_condition() {} in Predicate() 73 T value = m_value; in GetValue() 96 const T old_value = m_value; in SetValue() 97 m_value = value; in SetValue() 124 auto RealCond = [&] { return Cond(m_value); }; in WaitFor() 127 return m_value; in WaitFor() 130 return m_value; in WaitFor() 191 T m_value; ///< The templatized value T that we are protecting access to 214 ((broadcast_type == eBroadcastOnChange) && old_value != m_value); in Broadcast() [all …]
|
| H A D | StructuredData.h | 292 void SetValue(uint64_t value) { m_value = value; } in SetValue() 294 uint64_t GetValue() { return m_value; } in GetValue() 299 uint64_t m_value; 309 void SetValue(double value) { m_value = value; } in SetValue() 311 double GetValue() { return m_value; } in GetValue() 316 double m_value; 326 void SetValue(bool value) { m_value = value; } in SetValue() 328 bool GetValue() { return m_value; } in GetValue() 333 bool m_value; 344 llvm::StringRef GetValue() { return m_value; } in GetValue() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ThreadSafeValue.h | 21 ThreadSafeValue(const T &value) : m_value(value), m_mutex() {} in ThreadSafeValue() 29 value = m_value; in GetValue() 36 const T &GetValueNoLock() const { return m_value; } in GetValueNoLock() 40 m_value = value; in SetValue() 45 void SetValueNoLock(const T &value) { m_value = value; } in SetValueNoLock() 50 T m_value;
|
| H A D | Value.h | 112 const Scalar &GetScalar() const { return m_value; } in GetScalar() 114 Scalar &GetScalar() { return m_value; } in GetScalar() 149 Scalar m_value;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionGroupBoolean.cpp | 21 : m_value(default_value, default_value) { in OptionGroupBoolean() 43 m_value.SetCurrentValue(!m_value.GetDefaultValue()); in SetOptionValue() 44 m_value.SetOptionWasSet(); in SetOptionValue() 46 error = m_value.SetValueFromString(option_value); in SetOptionValue() 53 m_value.Clear(); in OptionParsingStarting()
|
| H A D | OptionGroupString.cpp | 22 : m_value(default_value, default_value) { in OptionGroupString() 38 Status error(m_value.SetValueFromString(option_arg)); in SetOptionValue() 44 m_value.Clear(); in OptionParsingStarting()
|
| H A D | OptionGroupUInt64.cpp | 22 : m_value(default_value, default_value) { in OptionGroupUInt64() 38 Status error(m_value.SetValueFromString(option_arg)); in SetOptionValue() 44 m_value.Clear(); in OptionParsingStarting()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 208 FAValue() : m_value() {} in FAValue() 229 m_value.reg.reg_num = reg_num; in SetIsRegisterPlusOffset() 230 m_value.reg.offset = offset; in SetIsRegisterPlusOffset() 239 m_value.reg.reg_num = reg_num; in SetIsRegisterDereferenced() 247 m_value.expr.length = len; in SetIsDWARFExpression() 252 return m_value.reg.reg_num; in GetRegisterNumber() 261 return m_value.reg.offset; in GetOffset() 271 m_value.reg.offset += delta; in IncOffset() 282 len = m_value.expr.length; in GetDWARFExpr() 297 return m_value.expr.length; in GetDWARFExpressionLength() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | UnwindPlan.cpp | 172 return m_value.ra_search_offset == rhs.m_value.ra_search_offset; in operator ==() 175 return m_value.reg.offset == rhs.m_value.reg.offset; in operator ==() 178 return m_value.reg.reg_num == rhs.m_value.reg.reg_num; in operator ==() 181 if (m_value.expr.length == rhs.m_value.expr.length) in operator ==() 182 return !memcmp(m_value.expr.opcodes, rhs.m_value.expr.opcodes, in operator ==() 183 m_value.expr.length); in operator ==() 194 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num); in Dump() 195 s.Printf("%+3d", m_value.reg.offset); in Dump() 199 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num); in Dump() 204 llvm::makeArrayRef(m_value.expr.opcodes, m_value.expr.length), in Dump() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 153 __FUNCTION__, m_value); in ShouldStopSynchronous() 236 m_value); in GetDescription() 240 m_value, m_address); in GetDescription() 573 __FUNCTION__, m_value); in PerformAction() 670 strm.Printf("watchpoint %" PRIi64, m_value); in GetDescription() 925 __FUNCTION__, m_value); in PerformAction() 979 m_value)); in DoShouldNotify() 992 m_value)) in WillResume() 993 thread_sp->SetResumeSignal(m_value); in WillResume() 1004 m_value); in GetDescription() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionGroupBoolean.h | 39 OptionValueBoolean &GetOptionValue() { return m_value; } in GetOptionValue() 41 const OptionValueBoolean &GetOptionValue() const { return m_value; } in GetOptionValue() 44 OptionValueBoolean m_value;
|
| H A D | OptionGroupUInt64.h | 37 OptionValueUInt64 &GetOptionValue() { return m_value; } in GetOptionValue() 39 const OptionValueUInt64 &GetOptionValue() const { return m_value; } in GetOptionValue() 42 OptionValueUInt64 m_value;
|
| H A D | OptionGroupString.h | 36 OptionValueString &GetOptionValue() { return m_value; } in GetOptionValue() 38 const OptionValueString &GetOptionValue() const { return m_value; } in GetOptionValue() 41 OptionValueString m_value;
|
| /freebsd-13.1/contrib/atf/atf-c/detail/ |
| H A D | map.c | 42 void *m_value; member 59 me->m_value = value; in new_entry() 88 return me->m_value; in atf_map_citer_data() 132 return me->m_value; in atf_map_iter_data() 210 free(me->m_value); in atf_map_fini() 368 free(me->m_value); in atf_map_insert() 371 me->m_value = value; in atf_map_insert()
|
| /freebsd-13.1/contrib/elftoolchain/libelf/ |
| H A D | gelf_move.c | 84 dst->m_value = move32->m_value; in gelf_getmove() 146 move32->m_value = gm->m_value; in gelf_update_move()
|