False-sharing with small objects
up vote
0
down vote
favorite
I'm currently refactoring legacy code, and I stumbled upon this strange node of a linked list
#define CACHE_LINE 128
struct Node {
public:
intptr_t value;
Node *next;
Node *prev;
bool dummy;
private:
// Avoid false sharing
unsigned char padding[CACHE_LINE - sizeof(intptr_t) - 2 * sizeof(Node *) - sizeof(bool)];
};
Assuming that the cache line of the system I work on is 32 bytes wide, that means this object will take up to 4 cache lines (with 32 bytes cache lines). And 3 of them will be completely empty.
This linked list is a part of a lock free queue. I have not determined yet how many producers and how many consumers are using it. From this other post, the answer states the following :
A clarification: for negative consequences at least some accesses to "falsely shared" variables should be writes. If writes are rare, performance impact of false sharing is rather negligible; the more writes (and so cache line invalidate messages) the worse performance.
My question is the following : what degrades the most my performances? False-sharing on this little object, or the fact that a quarter of my cache will be filled with padding ?
Live representation of the memory layout on Compiler Explorer
caching memory-layout false-sharing
add a comment |
up vote
0
down vote
favorite
I'm currently refactoring legacy code, and I stumbled upon this strange node of a linked list
#define CACHE_LINE 128
struct Node {
public:
intptr_t value;
Node *next;
Node *prev;
bool dummy;
private:
// Avoid false sharing
unsigned char padding[CACHE_LINE - sizeof(intptr_t) - 2 * sizeof(Node *) - sizeof(bool)];
};
Assuming that the cache line of the system I work on is 32 bytes wide, that means this object will take up to 4 cache lines (with 32 bytes cache lines). And 3 of them will be completely empty.
This linked list is a part of a lock free queue. I have not determined yet how many producers and how many consumers are using it. From this other post, the answer states the following :
A clarification: for negative consequences at least some accesses to "falsely shared" variables should be writes. If writes are rare, performance impact of false sharing is rather negligible; the more writes (and so cache line invalidate messages) the worse performance.
My question is the following : what degrades the most my performances? False-sharing on this little object, or the fact that a quarter of my cache will be filled with padding ?
Live representation of the memory layout on Compiler Explorer
caching memory-layout false-sharing
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently refactoring legacy code, and I stumbled upon this strange node of a linked list
#define CACHE_LINE 128
struct Node {
public:
intptr_t value;
Node *next;
Node *prev;
bool dummy;
private:
// Avoid false sharing
unsigned char padding[CACHE_LINE - sizeof(intptr_t) - 2 * sizeof(Node *) - sizeof(bool)];
};
Assuming that the cache line of the system I work on is 32 bytes wide, that means this object will take up to 4 cache lines (with 32 bytes cache lines). And 3 of them will be completely empty.
This linked list is a part of a lock free queue. I have not determined yet how many producers and how many consumers are using it. From this other post, the answer states the following :
A clarification: for negative consequences at least some accesses to "falsely shared" variables should be writes. If writes are rare, performance impact of false sharing is rather negligible; the more writes (and so cache line invalidate messages) the worse performance.
My question is the following : what degrades the most my performances? False-sharing on this little object, or the fact that a quarter of my cache will be filled with padding ?
Live representation of the memory layout on Compiler Explorer
caching memory-layout false-sharing
I'm currently refactoring legacy code, and I stumbled upon this strange node of a linked list
#define CACHE_LINE 128
struct Node {
public:
intptr_t value;
Node *next;
Node *prev;
bool dummy;
private:
// Avoid false sharing
unsigned char padding[CACHE_LINE - sizeof(intptr_t) - 2 * sizeof(Node *) - sizeof(bool)];
};
Assuming that the cache line of the system I work on is 32 bytes wide, that means this object will take up to 4 cache lines (with 32 bytes cache lines). And 3 of them will be completely empty.
This linked list is a part of a lock free queue. I have not determined yet how many producers and how many consumers are using it. From this other post, the answer states the following :
A clarification: for negative consequences at least some accesses to "falsely shared" variables should be writes. If writes are rare, performance impact of false sharing is rather negligible; the more writes (and so cache line invalidate messages) the worse performance.
My question is the following : what degrades the most my performances? False-sharing on this little object, or the fact that a quarter of my cache will be filled with padding ?
Live representation of the memory layout on Compiler Explorer
caching memory-layout false-sharing
caching memory-layout false-sharing
asked Nov 22 at 14:52
deepsquid
472519
472519
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433504%2ffalse-sharing-with-small-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown