Home
last modified time | relevance | path

Searched refs:uval64 (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1352 uint64_t uval64; in DoExecute() local
1398 success = !entry.ref().getAsInteger(0, uval64); in DoExecute()
1400 success = !entry.ref().getAsInteger(16, uval64); in DoExecute()
1405 } else if (!llvm::isUIntN(item_byte_size * 8, uval64)) { in DoExecute()
1409 uval64, (uint64_t)item_byte_size); in DoExecute()
1412 buffer.PutMaxHex64(uval64, item_byte_size); in DoExecute()
1416 uval64 = OptionArgParser::ToBoolean(entry.ref(), false, &success); in DoExecute()
1422 buffer.PutMaxHex64(uval64, item_byte_size); in DoExecute()
1426 if (entry.ref().getAsInteger(2, uval64)) { in DoExecute()
1430 } else if (!llvm::isUIntN(item_byte_size * 8, uval64)) { in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp284 static bool UInt64ValueIsValidForByteSize(uint64_t uval64, in UInt64ValueIsValidForByteSize() argument
295 return uval64 <= max; in UInt64ValueIsValidForByteSize()
328 uint64_t uval64; in SetValueFromString() local
344 if (value_str.getAsInteger(0, uval64)) { in SetValueFromString()
350 if (!UInt64ValueIsValidForByteSize(uval64, byte_size)) { in SetValueFromString()
354 uval64, byte_size); in SetValueFromString()
358 if (!SetUInt(uval64, reg_info->byte_size)) { in SetValueFromString()
H A DDataExtractor.cpp578 uint64_t uval64 = GetMaxU64(offset_ptr, size); in GetMaxU64Bitfield() local
581 return uval64; in GetMaxU64Bitfield()
588 uval64 >>= lsbcount; in GetMaxU64Bitfield()
595 return uval64; in GetMaxU64Bitfield()
597 uval64 &= bitfield_mask; in GetMaxU64Bitfield()
599 return uval64; in GetMaxU64Bitfield()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp179 uint64_t uval64 = 0; in ReadMemoryUnsigned() local
188 uval64 = data.GetMaxU64(&offset, byte_size); in ReadMemoryUnsigned()
197 uval64 = fail_value; in ReadMemoryUnsigned()
198 return uval64; in ReadMemoryUnsigned()
H A DDumpDataExtractor.cpp432 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() local
437 std::bitset<64> bits(uval64); in DumpDataExtractor()
537 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() local
541 uint8_t ch = (uint8_t)(uval64 >> ((item_byte_size - i - 1) * 8)); in DumpDataExtractor()
H A DAddress.cpp106 uint64_t uval64 = 0; in ReadUIntMax64() local
120 uval64 = data.GetU64(&offset); in ReadUIntMax64()
124 return uval64; in ReadUIntMax64()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp1126 uint64_t uval64 = data.GetMaxU64(&offset, byte_size); in GetValueAsScalar() local
1128 value = (unsigned int)uval64; in GetValueAsScalar()
1131 value = (unsigned long)uval64; in GetValueAsScalar()
1134 value = (unsigned long long)uval64; in GetValueAsScalar()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp661 const uint64_t uval64 = data.GetU64(&offset); in CalculateMnemonicOperandsAndComment() local
662 m_opcode.SetOpcode64(uval64, byte_order); in CalculateMnemonicOperandsAndComment()
664 mnemonic_strm.Printf("0x%16.16" PRIx64, uval64); in CalculateMnemonicOperandsAndComment()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2046 uint64_t uval64 = 0; in ParseTemplateDIE() local
2075 uval64 = form_value.Unsigned(); in ParseTemplateDIE()
2097 if (auto value = MakeAPValue(ast, clang_type, uval64)) { in ParseTemplateDIE()