| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBStructuredData.cpp | 190 LLDB_INSTRUMENT_VA(this, fail_value); in GetIntegerValue() 192 return GetUnsignedIntegerValue(fail_value); in GetIntegerValue() 196 LLDB_INSTRUMENT_VA(this, fail_value); in GetUnsignedIntegerValue() 198 return m_impl_up->GetIntegerValue(fail_value); in GetUnsignedIntegerValue() 202 LLDB_INSTRUMENT_VA(this, fail_value); in GetSignedIntegerValue() 204 return m_impl_up->GetIntegerValue(fail_value); in GetSignedIntegerValue() 208 LLDB_INSTRUMENT_VA(this, fail_value); in GetFloatValue() 210 return m_impl_up->GetFloatValue(fail_value); in GetFloatValue() 213 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue() 214 LLDB_INSTRUMENT_VA(this, fail_value); in GetBooleanValue() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | StringExtractor.h | 58 char GetChar(char fail_value = '\0'); 60 char PeekChar(char fail_value = '\0') { 64 return fail_value; 69 uint8_t GetHexU8(uint8_t fail_value = 0, bool set_eof_on_fail = true); 75 int32_t GetS32(int32_t fail_value, int base = 0); 77 uint32_t GetU32(uint32_t fail_value, int base = 0); 79 int64_t GetS64(int64_t fail_value, int base = 0); 81 uint64_t GetU64(uint64_t fail_value, int base = 0); 83 uint32_t GetHexMaxU32(bool little_endian, uint32_t fail_value); 85 uint64_t GetHexMaxU64(bool little_endian, uint64_t fail_value);
|
| H A D | Scalar.h | 153 int SInt(int fail_value = 0) const; 155 unsigned char UChar(unsigned char fail_value = 0) const; 157 signed char SChar(signed char fail_value = 0) const; 161 short SShort(short fail_value = 0) const; 163 unsigned int UInt(unsigned int fail_value = 0) const; 165 long SLong(long fail_value = 0) const; 167 unsigned long ULong(unsigned long fail_value = 0) const; 169 long long SLongLong(long long fail_value = 0) const; 177 float Float(float fail_value = 0.0f) const; 179 double Double(double fail_value = 0.0) const; [all …]
|
| H A D | RegisterValue.h | 118 uint8_t GetAsUInt8(uint8_t fail_value = UINT8_MAX, 123 return m_scalar.UChar(fail_value); 127 return fail_value; 130 uint16_t GetAsUInt16(uint16_t fail_value = UINT16_MAX, 133 uint32_t GetAsUInt32(uint32_t fail_value = UINT32_MAX, 136 uint64_t GetAsUInt64(uint64_t fail_value = UINT64_MAX, 139 llvm::APInt GetAsUInt128(const llvm::APInt &fail_value, 142 float GetAsFloat(float fail_value = 0.0f, bool *success_ptr = nullptr) const; 144 double GetAsDouble(double fail_value = 0.0, 147 long double GetAsLongDouble(long double fail_value = 0.0,
|
| H A D | StructuredData.h | 120 uint64_t GetUnsignedIntegerValue(uint64_t fail_value = 0) { 122 return ((integer != nullptr) ? integer->GetValue() : fail_value); 125 int64_t GetSignedIntegerValue(int64_t fail_value = 0) { 127 return ((integer != nullptr) ? integer->GetValue() : fail_value); 136 double GetFloatValue(double fail_value = 0.0) { 138 return ((f != nullptr) ? f->GetValue() : fail_value); 147 bool GetBooleanValue(bool fail_value = false) { 149 return ((b != nullptr) ? b->GetValue() : fail_value); 158 llvm::StringRef GetStringValue(const char *fail_value = nullptr) { 163 return fail_value;
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | StructuredDataImpl.h | 131 uint64_t GetIntegerValue(uint64_t fail_value = 0) const { 132 return (m_data_sp ? m_data_sp->GetUnsignedIntegerValue(fail_value) 133 : fail_value); 136 int64_t GetIntegerValue(int64_t fail_value = 0) const { 137 return (m_data_sp ? m_data_sp->GetSignedIntegerValue(fail_value) 138 : fail_value); 141 double GetFloatValue(double fail_value = 0.0) const { 142 return (m_data_sp ? m_data_sp->GetFloatValue(fail_value) : fail_value); 145 bool GetBooleanValue(bool fail_value = false) const { 146 return (m_data_sp ? m_data_sp->GetBooleanValue(fail_value) : fail_value);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | StringExtractor.cpp | 50 return fail_value; in GetChar() 77 GetHexU8Ex(fail_value, set_eof_on_fail); in GetHexU8() 78 return fail_value; in GetHexU8() 105 return fail_value; in GetU32() 120 return fail_value; in GetS32() 135 return fail_value; in GetU64() 150 return fail_value; in GetS64() 165 return fail_value; in GetHexMaxU32() 189 return fail_value; in GetHexMaxU32() 216 return fail_value; in GetHexMaxU64() [all …]
|
| H A D | Scalar.cpp | 300 return fail_value; in GetAs() 304 return GetAs<signed char>(fail_value); in SChar() 312 return GetAs<short>(fail_value); in SShort() 319 int Scalar::SInt(int fail_value) const { return GetAs<int>(fail_value); } in SInt() 322 return GetAs<unsigned int>(fail_value); in UInt() 325 long Scalar::SLong(long fail_value) const { return GetAs<long>(fail_value); } in SLong() 332 return GetAs<long long>(fail_value); in SLongLong() 348 return fail_value; in SInt128() 360 return fail_value; in UInt128() 380 return fail_value; in Float() [all …]
|
| H A D | RegisterValue.cpp | 491 return m_scalar.UShort(fail_value); in GetAsUInt16() 504 return fail_value; in GetAsUInt16() 520 return m_scalar.UInt(fail_value); in GetAsUInt32() 534 return fail_value; in GetAsUInt32() 569 return fail_value; in GetAsUInt64() 605 return fail_value; in GetAsUInt128() 620 return m_scalar.Float(fail_value); in GetAsFloat() 624 return fail_value; in GetAsFloat() 640 return m_scalar.Double(fail_value); in GetAsDouble() 644 return fail_value; in GetAsDouble() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionArgParser.cpp | 19 bool OptionArgParser::ToBoolean(llvm::StringRef ref, bool fail_value, in ToBoolean() argument 33 return fail_value; in ToBoolean() 36 char OptionArgParser::ToChar(llvm::StringRef s, char fail_value, in ToChar() argument 41 return fail_value; in ToChar() 54 return fail_value; in ToOptionEnum() 59 return fail_value; in ToOptionEnum() 76 return fail_value; in ToOptionEnum() 140 return fail_value; in ToScriptLanguage() 148 return maybe_addr ? *maybe_addr : fail_value; in ToRawAddress() 153 lldb::addr_t fail_value, in ToAddress() argument [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFBaseDIE.cpp | 43 const char *fail_value) const { in GetAttributeValueAsString() 45 return m_die->GetAttributeValueAsString(GetCU(), attr, fail_value); in GetAttributeValueAsString() 47 return fail_value; in GetAttributeValueAsString() 51 uint64_t fail_value) const { in GetAttributeValueAsUnsigned() 53 return m_die->GetAttributeValueAsUnsigned(GetCU(), attr, fail_value); in GetAttributeValueAsUnsigned() 55 return fail_value; in GetAttributeValueAsUnsigned() 66 uint64_t fail_value) const { in GetAttributeValueAsAddress() 68 return m_die->GetAttributeValueAsAddress(GetCU(), attr, fail_value); in GetAttributeValueAsAddress() 70 return fail_value; in GetAttributeValueAsAddress()
|
| H A D | DWARFDebugInfoEntry.cpp | 422 return fail_value; in GetAttributeValueAsString() 435 return fail_value; in GetAttributeValueAsUnsigned() 470 return fail_value; in GetAttributeValueAsAddress() 480 const DWARFUnit *cu, dw_addr_t lo_pc, uint64_t fail_value, in GetAttributeHighPC() argument 493 return fail_value; in GetAttributeHighPC() 505 lo_pc = GetAttributeValueAsAddress(cu, DW_AT_low_pc, fail_value, in GetAttributeAddressRange() 507 if (lo_pc != fail_value) { in GetAttributeAddressRange() 508 hi_pc = GetAttributeHighPC(cu, lo_pc, fail_value, in GetAttributeAddressRange() 510 if (hi_pc != fail_value) in GetAttributeAddressRange() 513 lo_pc = fail_value; in GetAttributeAddressRange() [all …]
|
| H A D | DWARFDebugInfoEntry.h | 70 const DWARFUnit *cu, const dw_attr_t attr, const char *fail_value, 74 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, 86 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, 90 GetAttributeHighPC(const DWARFUnit *cu, dw_addr_t lo_pc, uint64_t fail_value, 95 uint64_t fail_value,
|
| H A D | DWARFBaseDIE.h | 108 const char *fail_value) const; 111 uint64_t fail_value) const; 117 uint64_t fail_value) const;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeRegisterContext.cpp | 123 lldb::addr_t NativeRegisterContext::GetPC(lldb::addr_t fail_value) { in GetPC() argument 129 fail_value); in GetPC() 131 const uint64_t retval = ReadRegisterAsUnsigned(reg, fail_value); in GetPC() 140 return GetPC(fail_value); in GetPCfromBreakpointLocation() 149 lldb::addr_t NativeRegisterContext::GetSP(lldb::addr_t fail_value) { in GetSP() argument 152 return ReadRegisterAsUnsigned(reg, fail_value); in GetSP() 164 return ReadRegisterAsUnsigned(reg, fail_value); in GetFP() 176 return ReadRegisterAsUnsigned(reg, fail_value); in GetReturnAddress() 182 return ReadRegisterAsUnsigned(reg, fail_value); in GetFlags() 190 return fail_value; in ReadRegisterAsUnsigned() [all …]
|
| H A D | XML.cpp | 136 const char *fail_value) const { in GetAttributeValue() 146 if (fail_value) in GetAttributeValue() 147 attr_value = fail_value; in GetAttributeValue() 150 if (fail_value) in GetAttributeValue() 151 attr_value = fail_value; in GetAttributeValue() 157 uint64_t fail_value, int base) const { in GetAttributeValueAsUnsigned() argument 158 value = fail_value; in GetAttributeValueAsUnsigned() 299 bool XMLNode::GetElementTextAsUnsigned(uint64_t &value, uint64_t fail_value, in GetElementTextAsUnsigned() argument 303 value = fail_value; in GetElementTextAsUnsigned() 307 bool XMLNode::GetElementTextAsFloat(double &value, double fail_value) const { in GetElementTextAsFloat() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionArgParser.h | 22 llvm::StringRef s, lldb::addr_t fail_value, 27 llvm::StringRef s, lldb::addr_t fail_value, 30 static bool ToBoolean(llvm::StringRef s, bool fail_value, bool *success_ptr); 32 static char ToChar(llvm::StringRef s, char fail_value, bool *success_ptr); 36 int32_t fail_value, Status &error); 39 lldb::ScriptLanguage fail_value,
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | RegisterContext.cpp | 95 uint64_t RegisterContext::GetPC(uint64_t fail_value) { in GetPC() argument 100 if (pc != fail_value) { in GetPC() 115 return ReadRegisterAsUnsigned(reg, fail_value); in GetThreadPointer() 158 uint64_t RegisterContext::GetSP(uint64_t fail_value) { in GetSP() argument 161 return ReadRegisterAsUnsigned(reg, fail_value); in GetSP() 170 uint64_t RegisterContext::GetFP(uint64_t fail_value) { in GetFP() argument 173 return ReadRegisterAsUnsigned(reg, fail_value); in GetFP() 185 return ReadRegisterAsUnsigned(reg, fail_value); in GetReturnAddress() 191 return ReadRegisterAsUnsigned(reg, fail_value); in GetFlags() 198 return fail_value; in ReadRegisterAsUnsigned() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | RegisterContext.h | 151 uint64_t GetPC(uint64_t fail_value = LLDB_INVALID_ADDRESS); 155 uint64_t GetThreadPointer(uint64_t fail_value = LLDB_INVALID_ADDRESS); 186 uint64_t GetSP(uint64_t fail_value = LLDB_INVALID_ADDRESS); 190 uint64_t GetFP(uint64_t fail_value = LLDB_INVALID_ADDRESS); 196 uint64_t GetReturnAddress(uint64_t fail_value = LLDB_INVALID_ADDRESS); 198 uint64_t GetFlags(uint64_t fail_value = 0); 200 uint64_t ReadRegisterAsUnsigned(uint32_t reg, uint64_t fail_value); 203 uint64_t fail_value);
|
| H A D | ProcessStructReader.h | 83 RetType GetField(llvm::StringRef name, RetType fail_value = RetType()) { 86 return fail_value; 89 return fail_value; 92 return fail_value;
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeRegisterContext.h | 131 lldb::addr_t GetPC(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS); 134 GetPCfromBreakpointLocation(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS); 138 lldb::addr_t GetSP(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS); 142 lldb::addr_t GetFP(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS); 148 lldb::addr_t GetReturnAddress(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS); 150 lldb::addr_t GetFlags(lldb::addr_t fail_value = 0); 152 lldb::addr_t ReadRegisterAsUnsigned(uint32_t reg, lldb::addr_t fail_value); 155 lldb::addr_t fail_value);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBStructuredData.h | 75 uint64_t GetUnsignedIntegerValue(uint64_t fail_value = 0) const; 77 int64_t GetSignedIntegerValue(int64_t fail_value = 0) const; 82 uint64_t GetIntegerValue(uint64_t fail_value = 0) const; 86 double GetFloatValue(double fail_value = 0.0) const; 89 bool GetBooleanValue(bool fail_value = false) const;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Architecture/AArch64/ |
| H A D | ArchitectureAArch64.cpp | 83 const uint64_t fail_value = LLDB_INVALID_ADDRESS; in ReconfigureRegisterInfo() local 89 reg_context.ReadRegisterAsUnsigned(vg_reg_num, fail_value); in ReconfigureRegisterInfo() 90 if (reg_value != fail_value && reg_value <= 32) in ReconfigureRegisterInfo() 99 reg_context.ReadRegisterAsUnsigned(svg_reg_num, fail_value); in ReconfigureRegisterInfo() 100 if (reg_value != fail_value && reg_value <= 32) in ReconfigureRegisterInfo()
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/ |
| H A D | zdb_block_size_histogram.ksh | 212 let fail_value=0 239 if [ ${dp} -gt ${fail_value} ]; then 240 fail_value=${dp} 247 if [ ${fail_value} -gt 0 ]; then 254 "hctp: Max variance of ${max_variance}% exceeded, saw ${fail_value}%"
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | XML.h | 66 bool GetElementTextAsUnsigned(uint64_t &value, uint64_t fail_value = 0, 69 bool GetElementTextAsFloat(double &value, double fail_value = 0.0) const; 80 const char *fail_value = nullptr) const; 83 uint64_t fail_value = 0, int base = 0) const;
|