mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Make OnDiskChainedHashTableGenerator's Bucket type a POD type and reorder fields to optimize padding
For the common case of offset_type=unsigned this brings Bucket from 24 to 16 bytes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234692 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e1b79bbd8
commit
38ebdeea7a
@ -75,13 +75,10 @@ template <typename Info> class OnDiskChainedHashTableGenerator {
|
||||
llvm::SpecificBumpPtrAllocator<Item> BA;
|
||||
|
||||
/// \brief A linked list of values in a particular hash bucket.
|
||||
class Bucket {
|
||||
public:
|
||||
struct Bucket {
|
||||
offset_type Off;
|
||||
Item *Head;
|
||||
unsigned Length;
|
||||
|
||||
Bucket() {}
|
||||
Item *Head;
|
||||
};
|
||||
|
||||
Bucket *Buckets;
|
||||
|
Loading…
x
Reference in New Issue
Block a user