<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/lldb/utils/test, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2019-07-23T17:47:08+00:00</updated>
<entry>
<title>[Utils] Add back utils directory</title>
<updated>2019-07-23T17:47:08+00:00</updated>
<author>
<name>Jonas Devlieghere</name>
<email>jonas@devlieghere.com</email>
</author>
<published>2019-07-23T17:47:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=93f505942c8091a3ebbf6f08764635f19dc79095'/>
<id>urn:sha1:93f505942c8091a3ebbf6f08764635f19dc79095</id>
<content type='text'>
Due to a bug my earlier commit removed the whole utils directory:
https://reviews.llvm.org/D65123

llvm-svn: 366830
</content>
</entry>
<entry>
<title>[Utils] Remove legacy scripts</title>
<updated>2019-07-23T17:23:36+00:00</updated>
<author>
<name>Jonas Devlieghere</name>
<email>jonas@devlieghere.com</email>
</author>
<published>2019-07-23T17:23:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=6491076ec6800f54a8b1d09a95566b36db00f99d'/>
<id>urn:sha1:6491076ec6800f54a8b1d09a95566b36db00f99d</id>
<content type='text'>
As pointed out by Nathan in D65155, these scrips don't seem to serve any
real need anymore.

llvm-svn: 366827
</content>
</entry>
<entry>
<title>Python 2/3 compat: StringIO</title>
<updated>2019-03-25T15:23:34+00:00</updated>
<author>
<name>Serge Guelton</name>
<email>sguelton@redhat.com</email>
</author>
<published>2019-03-25T15:23:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=3a22c3cc2b06bd871cabddac3a541cdf03399b77'/>
<id>urn:sha1:3a22c3cc2b06bd871cabddac3a541cdf03399b77</id>
<content type='text'>
Differential Revision: https://reviews.llvm.org/D59582

llvm-svn: 356910
</content>
</entry>
<entry>
<title>Python 2/3 compatibility: from __future__ import print_function</title>
<updated>2019-03-21T18:27:40+00:00</updated>
<author>
<name>Serge Guelton</name>
<email>sguelton@redhat.com</email>
</author>
<published>2019-03-21T18:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=525cd59f5a12254e80d5f20bf2d9713728a114d4'/>
<id>urn:sha1:525cd59f5a12254e80d5f20bf2d9713728a114d4</id>
<content type='text'>
Differential Revision: https://reviews.llvm.org/D59580

llvm-svn: 356695
</content>
</entry>
<entry>
<title>*** This commit represents a complete reformatting of the LLDB source code</title>
<updated>2016-09-06T20:57:50+00:00</updated>
<author>
<name>Kate Stone</name>
<email>katherine.stone@apple.com</email>
</author>
<published>2016-09-06T20:57:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=b9c1b51e45b845debb76d8658edabca70ca56079'/>
<id>urn:sha1:b9c1b51e45b845debb76d8658edabca70ca56079</id>
<content type='text'>
*** to conform to clang-format’s LLVM style.  This kind of mass change has
*** two obvious implications:

Firstly, merging this particular commit into a downstream fork may be a huge
effort.  Alternatively, it may be worth merging all changes up to this commit,
performing the same reformatting operation locally, and then discarding the
merge for this particular commit.  The commands used to accomplish this
reformatting were as follows (with current working directory as the root of
the repository):

    find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} +
    find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;

The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.

Secondly, “blame” style tools will generally point to this commit instead of
a meaningful prior commit.  There are alternatives available that will attempt
to look through this change and find the appropriate prior commit.  YMMV.

llvm-svn: 280751
</content>
</entry>
<entry>
<title>Fix typos in comment.</title>
<updated>2011-08-20T01:02:31+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-08-20T01:02:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=1cd81bf9e51e559c607e6b865158d57b958221ec'/>
<id>urn:sha1:1cd81bf9e51e559c607e6b865158d57b958221ec</id>
<content type='text'>
llvm-svn: 138179
</content>
</entry>
<entry>
<title>Use os.walk(), available since 2.3, instead of os.path.walk(), removed in 3.0,</title>
<updated>2011-08-20T01:00:16+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-08-20T01:00:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=8fff33615d9902530315ac896362f2c6a87e119f'/>
<id>urn:sha1:8fff33615d9902530315ac896362f2c6a87e119f</id>
<content type='text'>
to walk the directory tree.  Plus, we can concentrate only on leaf nodes, i.e., files.

llvm-svn: 138178
</content>
</entry>
<entry>
<title>No need to look further if the file is a symbolic link.  Look for the real file.</title>
<updated>2011-08-20T00:12:13+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-08-20T00:12:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=20f19d1d02bb20ba26af6667024f1120fd2538d7'/>
<id>urn:sha1:20f19d1d02bb20ba26af6667024f1120fd2538d7</id>
<content type='text'>
Plus add some comments.

llvm-svn: 138159
</content>
</entry>
<entry>
<title>Add a Python script to locate each binary file under a root directory which matches some pathname pattern</title>
<updated>2011-08-19T20:51:15+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-08-19T20:51:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=758f288cdd47e01fe26337ffc6b4737342cdd1be'/>
<id>urn:sha1:758f288cdd47e01fe26337ffc6b4737342cdd1be</id>
<content type='text'>
and to invoke lldb-disasm.py on the binary file to disassemble its symbols.  The number of symbols can
be specified by, for example, '-n 10000', to specify 10,000 symbols to disassemble for each module.
By default, only 1000 symbols from each module are disassembled.

Example:

utils/test/run-dis.py -r '/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3/Symbols' -p '^/System/Library/.*Frameworks/.*\.framework/[^/]+$'

tries to disassemble every public/private frameworks (by default only 1000 symbols are disassembled) under iOS4.3.

llvm-svn: 138078
</content>
</entry>
<entry>
<title>Fix TypeError exception for re.compile().</title>
<updated>2011-08-19T17:28:25+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-08-19T17:28:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=4c35b711dab6bc59bc14d07d821e60d69f4dc192'/>
<id>urn:sha1:4c35b711dab6bc59bc14d07d821e60d69f4dc192</id>
<content type='text'>
llvm-svn: 138045
</content>
</entry>
</feed>
