mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00

This is intended as a clean up after the big clang-format commit (r280751), which unfortunately resulted in many of the comment paragraphs in LLDB being very hard to read. FYI, the script I used was: import textwrap import commands import os import sys import re tmp = "%s.tmp"%sys.argv[1] out = open(tmp, "w+") with open(sys.argv[1], "r") as f: header = "" text = "" comment = re.compile(r'^( *//) ([^ ].*)$') special = re.compile(r'^((([A-Z]+[: ])|([0-9]+ )).*)|(.*;)$') for line in f: match = comment.match(line) if match and not special.match(match.group(2)): # skip intentionally short comments. if not text and len(match.group(2)) < 40: out.write(line) continue if text: text += " " + match.group(2) else: header = match.group(1) text = match.group(2) continue if text: filled = textwrap.wrap(text, width=(78-len(header)), break_long_words=False) for l in filled: out.write(header+" "+l+'\n') text = "" out.write(line) os.rename(tmp, sys.argv[1]) Differential Revision: https://reviews.llvm.org/D46144 llvm-svn: 331197
119 lines
3.6 KiB
C++
119 lines
3.6 KiB
C++
//===-- ValueObjectList.cpp -------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Core/ValueObjectList.h"
|
|
|
|
#include "lldb/Core/ValueObject.h" // for ValueObject
|
|
#include "lldb/Utility/ConstString.h" // for ConstString
|
|
#include "lldb/Utility/SharingPtr.h" // for SharingPtr
|
|
|
|
#include <utility> // for back_insert_iterator, back_ins...
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
ValueObjectList::ValueObjectList() : m_value_objects() {}
|
|
|
|
ValueObjectList::ValueObjectList(const ValueObjectList &rhs)
|
|
: m_value_objects(rhs.m_value_objects) {}
|
|
|
|
ValueObjectList::~ValueObjectList() {}
|
|
|
|
const ValueObjectList &ValueObjectList::operator=(const ValueObjectList &rhs) {
|
|
if (this != &rhs)
|
|
m_value_objects = rhs.m_value_objects;
|
|
return *this;
|
|
}
|
|
|
|
void ValueObjectList::Append(const ValueObjectSP &val_obj_sp) {
|
|
m_value_objects.push_back(val_obj_sp);
|
|
}
|
|
|
|
void ValueObjectList::Append(const ValueObjectList &valobj_list) {
|
|
std::copy(valobj_list.m_value_objects.begin(), // source begin
|
|
valobj_list.m_value_objects.end(), // source end
|
|
back_inserter(m_value_objects)); // destination
|
|
}
|
|
|
|
size_t ValueObjectList::GetSize() const { return m_value_objects.size(); }
|
|
|
|
void ValueObjectList::Resize(size_t size) { m_value_objects.resize(size); }
|
|
|
|
lldb::ValueObjectSP ValueObjectList::GetValueObjectAtIndex(size_t idx) {
|
|
lldb::ValueObjectSP valobj_sp;
|
|
if (idx < m_value_objects.size())
|
|
valobj_sp = m_value_objects[idx];
|
|
return valobj_sp;
|
|
}
|
|
|
|
lldb::ValueObjectSP ValueObjectList::RemoveValueObjectAtIndex(size_t idx) {
|
|
lldb::ValueObjectSP valobj_sp;
|
|
if (idx < m_value_objects.size()) {
|
|
valobj_sp = m_value_objects[idx];
|
|
m_value_objects.erase(m_value_objects.begin() + idx);
|
|
}
|
|
return valobj_sp;
|
|
}
|
|
|
|
void ValueObjectList::SetValueObjectAtIndex(size_t idx,
|
|
const ValueObjectSP &valobj_sp) {
|
|
if (idx >= m_value_objects.size())
|
|
m_value_objects.resize(idx + 1);
|
|
m_value_objects[idx] = valobj_sp;
|
|
}
|
|
|
|
ValueObjectSP ValueObjectList::FindValueObjectByValueName(const char *name) {
|
|
ConstString name_const_str(name);
|
|
ValueObjectSP val_obj_sp;
|
|
collection::iterator pos, end = m_value_objects.end();
|
|
for (pos = m_value_objects.begin(); pos != end; ++pos) {
|
|
ValueObject *valobj = (*pos).get();
|
|
if (valobj && valobj->GetName() == name_const_str) {
|
|
val_obj_sp = *pos;
|
|
break;
|
|
}
|
|
}
|
|
return val_obj_sp;
|
|
}
|
|
|
|
ValueObjectSP ValueObjectList::FindValueObjectByUID(lldb::user_id_t uid) {
|
|
ValueObjectSP valobj_sp;
|
|
collection::iterator pos, end = m_value_objects.end();
|
|
|
|
for (pos = m_value_objects.begin(); pos != end; ++pos) {
|
|
// Watch out for NULL objects in our list as the list might get resized to
|
|
// a specific size and lazily filled in
|
|
ValueObject *valobj = (*pos).get();
|
|
if (valobj && valobj->GetID() == uid) {
|
|
valobj_sp = *pos;
|
|
break;
|
|
}
|
|
}
|
|
return valobj_sp;
|
|
}
|
|
|
|
ValueObjectSP
|
|
ValueObjectList::FindValueObjectByPointer(ValueObject *find_valobj) {
|
|
ValueObjectSP valobj_sp;
|
|
collection::iterator pos, end = m_value_objects.end();
|
|
|
|
for (pos = m_value_objects.begin(); pos != end; ++pos) {
|
|
ValueObject *valobj = (*pos).get();
|
|
if (valobj && valobj == find_valobj) {
|
|
valobj_sp = *pos;
|
|
break;
|
|
}
|
|
}
|
|
return valobj_sp;
|
|
}
|
|
|
|
void ValueObjectList::Swap(ValueObjectList &value_object_list) {
|
|
m_value_objects.swap(value_object_list.m_value_objects);
|
|
}
|