std::aligned_alloc and aligned operator new in C++ 17





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.



Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e



struct alignas(16) aligned_shorts
{
short shorts[8];
};


Only then new aligned_shorts[7] will result in aligned memory?



But what if I want a aligned dynamic array i. e of ints?



int *aligned_ints;// want aligned dynamic array


Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:



int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}









share|improve this question




















  • 1





    "I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

    – Nicol Bolas
    Nov 26 '18 at 17:02











  • @NicolBolas I had overalignment in mind. Clarified that with the edit.

    – Andrey Pro
    Nov 26 '18 at 18:02













  • I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

    – Frank
    Nov 26 '18 at 20:37











  • @Frank you are right, inattention on my part. Corrected.

    – Andrey Pro
    Nov 26 '18 at 21:27




















0















I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.



Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e



struct alignas(16) aligned_shorts
{
short shorts[8];
};


Only then new aligned_shorts[7] will result in aligned memory?



But what if I want a aligned dynamic array i. e of ints?



int *aligned_ints;// want aligned dynamic array


Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:



int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}









share|improve this question




















  • 1





    "I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

    – Nicol Bolas
    Nov 26 '18 at 17:02











  • @NicolBolas I had overalignment in mind. Clarified that with the edit.

    – Andrey Pro
    Nov 26 '18 at 18:02













  • I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

    – Frank
    Nov 26 '18 at 20:37











  • @Frank you are right, inattention on my part. Corrected.

    – Andrey Pro
    Nov 26 '18 at 21:27
















0












0








0








I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.



Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e



struct alignas(16) aligned_shorts
{
short shorts[8];
};


Only then new aligned_shorts[7] will result in aligned memory?



But what if I want a aligned dynamic array i. e of ints?



int *aligned_ints;// want aligned dynamic array


Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:



int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}









share|improve this question
















I have questions regarding the std::aligned_alloc and aligned operator new in C++ 17.



Do I understand correctly that the aligned version of operator new works only on the oblects that were declared as aligned? i.e



struct alignas(16) aligned_shorts
{
short shorts[8];
};


Only then new aligned_shorts[7] will result in aligned memory?



But what if I want a aligned dynamic array i. e of ints?



int *aligned_ints;// want aligned dynamic array


Can be std::aligned_alloc used for that? And if I need to overalign (e. g. for vectorization) I would need to overallocate/pad:



int* allocate_aligned_ints(int num, int align_as)
{
int needed_memory=num*sizeof(int);
if((needed_memory% align_as) > 0)//
needed_memory+=(align_as- needed_memory% align_as);//pad if neccessary
return static_cast<int*>(std::aligned_alloc(align_as, needed_memory));
}






memory-management c++17 memory-alignment






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 '18 at 21:26







Andrey Pro

















asked Nov 26 '18 at 16:47









Andrey ProAndrey Pro

256217




256217








  • 1





    "I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

    – Nicol Bolas
    Nov 26 '18 at 17:02











  • @NicolBolas I had overalignment in mind. Clarified that with the edit.

    – Andrey Pro
    Nov 26 '18 at 18:02













  • I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

    – Frank
    Nov 26 '18 at 20:37











  • @Frank you are right, inattention on my part. Corrected.

    – Andrey Pro
    Nov 26 '18 at 21:27
















  • 1





    "I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

    – Nicol Bolas
    Nov 26 '18 at 17:02











  • @NicolBolas I had overalignment in mind. Clarified that with the edit.

    – Andrey Pro
    Nov 26 '18 at 18:02













  • I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

    – Frank
    Nov 26 '18 at 20:37











  • @Frank you are right, inattention on my part. Corrected.

    – Andrey Pro
    Nov 26 '18 at 21:27










1




1





"I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

– Nicol Bolas
Nov 26 '18 at 17:02





"I would need to overallocate/pad a bit" Why would std::aligned_alloc even exist if you needed to do that?

– Nicol Bolas
Nov 26 '18 at 17:02













@NicolBolas I had overalignment in mind. Clarified that with the edit.

– Andrey Pro
Nov 26 '18 at 18:02







@NicolBolas I had overalignment in mind. Clarified that with the edit.

– Andrey Pro
Nov 26 '18 at 18:02















I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

– Frank
Nov 26 '18 at 20:37





I'm confused, why not just use std::aligned_alloc(align_as, needed_memory)? Why the explict 16 in your example?

– Frank
Nov 26 '18 at 20:37













@Frank you are right, inattention on my part. Corrected.

– Andrey Pro
Nov 26 '18 at 21:27







@Frank you are right, inattention on my part. Corrected.

– Andrey Pro
Nov 26 '18 at 21:27














0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53485612%2fstdaligned-alloc-and-aligned-operator-new-in-c-17%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53485612%2fstdaligned-alloc-and-aligned-operator-new-in-c-17%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Tonle Sap (See)

I get strange results when I access the Sqlitedatabase with Unity C# via XAMPP

Guatemaltekische Davis-Cup-Mannschaft