mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 14:48:27 +08:00
[NFC] Remove ASCII lines from comments
A lot of comments in LLDB are surrounded by an ASCII line to delimit the begging and end of the comment. Its use is not really consistent across the code base, sometimes the lines are longer, sometimes they are shorter and sometimes they are omitted. Furthermore, it looks kind of weird with the 80 column limit, where the comment actually extends past the line, but not by much. Furthermore, when /// is used for Doxygen comments, it looks particularly odd. And when // is used, it incorrectly gives the impression that it's actually a Doxygen comment. I assume these lines were added to improve distinguishing between comments and code. However, given that todays editors and IDEs do a great job at highlighting comments, I think it's worth to drop this for the sake of consistency. The alternative is fixing all the inconsistencies, which would create a lot more churn. Differential revision: https://reviews.llvm.org/D60508 llvm-svn: 358135
This commit is contained in:
@@ -24,29 +24,23 @@ using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
using namespace llvm::support::endian;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Default constructor.
|
||||
//----------------------------------------------------------------------
|
||||
DataEncoder::DataEncoder()
|
||||
: m_start(nullptr), m_end(nullptr),
|
||||
m_byte_order(endian::InlHostByteOrder()), m_addr_size(sizeof(void *)),
|
||||
m_data_sp() {}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// This constructor allows us to use data that is owned by someone else. The
|
||||
// data must stay around as long as this object is valid.
|
||||
//----------------------------------------------------------------------
|
||||
DataEncoder::DataEncoder(void *data, uint32_t length, ByteOrder endian,
|
||||
uint8_t addr_size)
|
||||
: m_start((uint8_t *)data), m_end((uint8_t *)data + length),
|
||||
m_byte_order(endian), m_addr_size(addr_size), m_data_sp() {}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Make a shared pointer reference to the shared data in "data_sp" and set the
|
||||
// endian swapping setting to "swap", and the address size to "addr_size". The
|
||||
// shared data reference will ensure the data lives as long as any DataEncoder
|
||||
// objects exist that have a reference to this data.
|
||||
//----------------------------------------------------------------------
|
||||
DataEncoder::DataEncoder(const DataBufferSP &data_sp, ByteOrder endian,
|
||||
uint8_t addr_size)
|
||||
: m_start(nullptr), m_end(nullptr), m_byte_order(endian),
|
||||
@@ -56,10 +50,8 @@ DataEncoder::DataEncoder(const DataBufferSP &data_sp, ByteOrder endian,
|
||||
|
||||
DataEncoder::~DataEncoder() = default;
|
||||
|
||||
//------------------------------------------------------------------
|
||||
// Clears the object contents back to a default invalid state, and release any
|
||||
// references to shared data that this object may contain.
|
||||
//------------------------------------------------------------------
|
||||
void DataEncoder::Clear() {
|
||||
m_start = nullptr;
|
||||
m_end = nullptr;
|
||||
@@ -68,10 +60,8 @@ void DataEncoder::Clear() {
|
||||
m_data_sp.reset();
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------
|
||||
// If this object contains shared data, this function returns the offset into
|
||||
// that shared data. Else zero is returned.
|
||||
//------------------------------------------------------------------
|
||||
size_t DataEncoder::GetSharedDataOffset() const {
|
||||
if (m_start != nullptr) {
|
||||
const DataBuffer *data = m_data_sp.get();
|
||||
@@ -86,7 +76,6 @@ size_t DataEncoder::GetSharedDataOffset() const {
|
||||
return 0;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Set the data with which this object will extract from to data starting at
|
||||
// BYTES and set the length of the data to LENGTH bytes long. The data is
|
||||
// externally owned must be around at least as long as this object points to
|
||||
@@ -94,7 +83,6 @@ size_t DataEncoder::GetSharedDataOffset() const {
|
||||
// and can extract from it. If this object refers to any shared data upon
|
||||
// entry, the reference to that data will be released. Is SWAP is set to true,
|
||||
// any data extracted will be endian swapped.
|
||||
//----------------------------------------------------------------------
|
||||
uint32_t DataEncoder::SetData(void *bytes, uint32_t length, ByteOrder endian) {
|
||||
m_byte_order = endian;
|
||||
m_data_sp.reset();
|
||||
@@ -108,7 +96,6 @@ uint32_t DataEncoder::SetData(void *bytes, uint32_t length, ByteOrder endian) {
|
||||
return GetByteSize();
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Assign the data for this object to be a subrange of the shared data in
|
||||
// "data_sp" starting "data_offset" bytes into "data_sp" and ending
|
||||
// "data_length" bytes later. If "data_offset" is not a valid offset into
|
||||
@@ -120,7 +107,6 @@ uint32_t DataEncoder::SetData(void *bytes, uint32_t length, ByteOrder endian) {
|
||||
// starting at "data_offset") to ensure the data stays around as long as it is
|
||||
// needed. The address size and endian swap settings will remain unchanged from
|
||||
// their current settings.
|
||||
//----------------------------------------------------------------------
|
||||
uint32_t DataEncoder::SetData(const DataBufferSP &data_sp, uint32_t data_offset,
|
||||
uint32_t data_length) {
|
||||
m_start = m_end = nullptr;
|
||||
@@ -152,12 +138,10 @@ uint32_t DataEncoder::SetData(const DataBufferSP &data_sp, uint32_t data_offset,
|
||||
return new_size;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Extract a single unsigned char from the binary data and update the offset
|
||||
// pointed to by "offset_ptr".
|
||||
//
|
||||
// RETURNS the byte that was extracted, or zero on failure.
|
||||
//----------------------------------------------------------------------
|
||||
uint32_t DataEncoder::PutU8(uint32_t offset, uint8_t value) {
|
||||
if (ValidOffset(offset)) {
|
||||
m_start[offset] = value;
|
||||
@@ -202,7 +186,6 @@ uint32_t DataEncoder::PutU64(uint32_t offset, uint64_t value) {
|
||||
return UINT32_MAX;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Extract a single integer value from the data and update the offset pointed
|
||||
// to by "offset_ptr". The size of the extracted integer is specified by the
|
||||
// "byte_size" argument. "byte_size" should have a value >= 1 and <= 8 since
|
||||
@@ -211,7 +194,6 @@ uint32_t DataEncoder::PutU64(uint32_t offset, uint64_t value) {
|
||||
// returned.
|
||||
//
|
||||
// RETURNS the integer value that was extracted, or zero on failure.
|
||||
//----------------------------------------------------------------------
|
||||
uint32_t DataEncoder::PutMaxU64(uint32_t offset, uint32_t byte_size,
|
||||
uint64_t value) {
|
||||
switch (byte_size) {
|
||||
|
||||
Reference in New Issue
Block a user