Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Commands/
DCommandObjectMemory.cpp1373 uint64_t uval64; in DoExecute() local
1420 success = !entry.ref().getAsInteger(0, uval64); in DoExecute()
1422 success = !entry.ref().getAsInteger(16, uval64); in DoExecute()
1428 } else if (!llvm::isUIntN(item_byte_size * 8, uval64)) { in DoExecute()
1432 uval64, (uint64_t)item_byte_size); in DoExecute()
1436 buffer.PutMaxHex64(uval64, item_byte_size); in DoExecute()
1440 uval64 = OptionArgParser::ToBoolean(entry.ref(), false, &success); in DoExecute()
1447 buffer.PutMaxHex64(uval64, item_byte_size); in DoExecute()
1451 if (entry.ref().getAsInteger(2, uval64)) { in DoExecute()
1456 } else if (!llvm::isUIntN(item_byte_size * 8, uval64)) { in DoExecute()
[all …]
/external/llvm-project/lldb/source/Utility/
DRegisterValue.cpp306 static bool UInt64ValueIsValidForByteSize(uint64_t uval64, in UInt64ValueIsValidForByteSize() argument
317 return uval64 <= max; in UInt64ValueIsValidForByteSize()
350 uint64_t uval64; in SetValueFromString() local
366 if (value_str.getAsInteger(0, uval64)) { in SetValueFromString()
373 if (!UInt64ValueIsValidForByteSize(uval64, byte_size)) { in SetValueFromString()
377 uval64, byte_size); in SetValueFromString()
381 if (!SetUInt(uval64, reg_info->byte_size)) { in SetValueFromString()
DDataExtractor.cpp580 uint64_t uval64 = GetMaxU64(offset_ptr, size); in GetMaxU64Bitfield() local
583 return uval64; in GetMaxU64Bitfield()
590 uval64 >>= lsbcount; in GetMaxU64Bitfield()
597 return uval64; in GetMaxU64Bitfield()
599 uval64 &= bitfield_mask; in GetMaxU64Bitfield()
601 return uval64; in GetMaxU64Bitfield()
/external/llvm-project/lldb/source/Core/
DEmulateInstruction.cpp170 uint64_t uval64 = 0; in ReadMemoryUnsigned() local
179 uval64 = data.GetMaxU64(&offset, byte_size); in ReadMemoryUnsigned()
188 uval64 = fail_value; in ReadMemoryUnsigned()
189 return uval64; in ReadMemoryUnsigned()
DDumpDataExtractor.cpp302 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() local
307 std::bitset<64> bits(uval64); in DumpDataExtractor()
407 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() local
411 uint8_t ch = (uint8_t)(uval64 >> ((item_byte_size - i - 1) * 8)); in DumpDataExtractor()
DAddress.cpp103 uint64_t uval64 = 0; in ReadUIntMax64() local
117 uval64 = data.GetU64(&offset); in ReadUIntMax64()
121 return uval64; in ReadUIntMax64()
/external/llvm-project/lldb/source/Symbol/
DCompilerType.cpp795 uint64_t uval64 = data.GetMaxU64(&offset, *byte_size); in GetValueAsScalar() local
797 value = (unsigned int)uval64; in GetValueAsScalar()
800 value = (unsigned long)uval64; in GetValueAsScalar()
803 value = (unsigned long long)uval64; in GetValueAsScalar()
/external/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp294 const uint64_t uval64 = data.GetU64(&offset); in CalculateMnemonicOperandsAndComment() local
295 m_opcode.SetOpcode64(uval64, byte_order); in CalculateMnemonicOperandsAndComment()
297 mnemonic_strm.Printf("0x%16.16" PRIx64, uval64); in CalculateMnemonicOperandsAndComment()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp1845 uint64_t uval64 = 0; in ParseTemplateDIE() local
1874 uval64 = form_value.Unsigned(); in ParseTemplateDIE()
1900 llvm::APInt apint(*size, uval64, is_signed); in ParseTemplateDIE()