2
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
May 08, 2023 — May 08, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add ArrayRef header. Patch by Marshall Clow. More... about 12 years ago
Rearange header order to match llvm style. This exposed some missing types. Also fix some Platform.h includes that somehow got missed last time. More... about 12 years ago
Move Platform.h to Core as Core depends on Platform.h, and the Platform library depends on Core. This breaks that cycle. More... about 12 years ago
Disable /Za on Windows. It breaks C++11 ;/. More... about 12 years ago
Test website auto-update. More... about 12 years ago
Add more details about file formats. Fix whitespace. More... about 12 years ago
Add Pass to instantiate GOT entries More... about 12 years ago
fix typos More... about 12 years ago
Added first round of documentation More... about 12 years ago
Audit uses of StringRef::getAsInteger. More... about 12 years ago
Fix MSVC incompatibilities. More... about 12 years ago
StringRef is not null terminated. More... about 12 years ago
Use llvm/Support/DataTypes instead of stdint.h More... about 12 years ago
Use nullptr instead of NULL, and remove use of VLA. More... about 12 years ago
Use the old -std=c++0x flag for compatibility with pre-2011 versions of GCC. More... about 12 years ago
Sources now require C++11 to build. More... about 12 years ago
Add support for SharedLibraryAtoms (proxy atoms for exported symbols from a shared library) and AbsoluteAtoms (proxy atoms for absolute address (e.g. ROM)). Redesign weak importing as can-be-null-at-runtime and can-be-null-at-build-time. Add lots of test cases for all the above. More... about 12 years ago
use llvm::DenseMap instead of std::map More... about 12 years ago
git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@150539 91177308-0d34-0410-b5e6-96231b3b80d8 More... about 12 years ago
Add support for UndefinedAtom in yaml and native format. Add test cases with undefined atoms More... over 12 years ago
Cleanup system_error extensions. More... over 12 years ago
Don't delete the temp file until after we finish reading from it. More... over 12 years ago
&vectorval[0] is UB when vectorval.size() == 0. More... over 12 years ago
Fix use after free. More... over 12 years ago
Add pretty stack tracing and llvm_shutdown. More... over 12 years ago
If cont.size() is 0, the expression &_contentPool[result] has undefined behaivior because it indexes past the end of _contentPool. More... over 12 years ago
Flexible array members are not in C++03, and MSVC doesn't support them. More... over 12 years ago
NULL requires including cstddef. Just use 0. More... over 12 years ago
First chunk of native object file reader/writer. The lld-core tool now reads YAML file, links, writes that out as native object format, then reads that native file, then writes the YAML to stdout. Thus the test suite tests both YAML reading/writing as well as native object file reading/writing. More... over 12 years ago
A couple of big refactorings: 1) Move most attributes of Atom down to DefinedAtom, so only atoms representing definitions need to implement them. 2) Remove definitionTentative, definitionWeak, mergeDuplicates, and autoHide. Replace with merge and interposable attributes. 3) Make all methods on Atom be virtual so that future object file readers can lazily generated attributes More... over 12 years ago