What architecture is bi-endian at runtime?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite
1












If I understand correctly x86_64 is a bi-arch, since it supports running native x86 and x86_64 at the same time (no reboot, no reconfiguration). ia64 is a single arch and does not support x86.



I am trying to understand which architecture supported by the Linux kernel can run in true bi-endian mode, so that the CPU can switch endianess at runtime.



I could not find definitive answer for the following arch namely ppc64(le) and mips64(le) (eg. MIPS64r6). Does one of those support running of (no reboot, no reconfiguration) respectively ppc32(be) and mips32(be) (eg. MIPS32r2) ? Maybe something in the ARM family also ?







share|improve this question





















  • x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
    – ctrl-alt-delor
    Jul 11 at 7:50






  • 1




    This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
    – Stephen Kitt
    Jul 11 at 8:04















up vote
2
down vote

favorite
1












If I understand correctly x86_64 is a bi-arch, since it supports running native x86 and x86_64 at the same time (no reboot, no reconfiguration). ia64 is a single arch and does not support x86.



I am trying to understand which architecture supported by the Linux kernel can run in true bi-endian mode, so that the CPU can switch endianess at runtime.



I could not find definitive answer for the following arch namely ppc64(le) and mips64(le) (eg. MIPS64r6). Does one of those support running of (no reboot, no reconfiguration) respectively ppc32(be) and mips32(be) (eg. MIPS32r2) ? Maybe something in the ARM family also ?







share|improve this question





















  • x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
    – ctrl-alt-delor
    Jul 11 at 7:50






  • 1




    This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
    – Stephen Kitt
    Jul 11 at 8:04













up vote
2
down vote

favorite
1









up vote
2
down vote

favorite
1






1





If I understand correctly x86_64 is a bi-arch, since it supports running native x86 and x86_64 at the same time (no reboot, no reconfiguration). ia64 is a single arch and does not support x86.



I am trying to understand which architecture supported by the Linux kernel can run in true bi-endian mode, so that the CPU can switch endianess at runtime.



I could not find definitive answer for the following arch namely ppc64(le) and mips64(le) (eg. MIPS64r6). Does one of those support running of (no reboot, no reconfiguration) respectively ppc32(be) and mips32(be) (eg. MIPS32r2) ? Maybe something in the ARM family also ?







share|improve this question













If I understand correctly x86_64 is a bi-arch, since it supports running native x86 and x86_64 at the same time (no reboot, no reconfiguration). ia64 is a single arch and does not support x86.



I am trying to understand which architecture supported by the Linux kernel can run in true bi-endian mode, so that the CPU can switch endianess at runtime.



I could not find definitive answer for the following arch namely ppc64(le) and mips64(le) (eg. MIPS64r6). Does one of those support running of (no reboot, no reconfiguration) respectively ppc32(be) and mips32(be) (eg. MIPS32r2) ? Maybe something in the ARM family also ?









share|improve this question












share|improve this question




share|improve this question








edited Jul 11 at 8:08
























asked Jul 11 at 7:35









malat

408522




408522











  • x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
    – ctrl-alt-delor
    Jul 11 at 7:50






  • 1




    This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
    – Stephen Kitt
    Jul 11 at 8:04

















  • x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
    – ctrl-alt-delor
    Jul 11 at 7:50






  • 1




    This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
    – Stephen Kitt
    Jul 11 at 8:04
















x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
– ctrl-alt-delor
Jul 11 at 7:50




x86_64 can only run the 32bit subset of x86 (not legacy 16 bit, 8bit, or 4bit). Have you seen (can remember which architecture), has spiral endien: It did one endian when it went from 8 to 16bit, and the other from 16bit to 32 bit (like how americans write there dates (weird). Have a look at arm, if I remember correct, this CPU supports both at run time, though there may not be any kernel/tool support for mixing them.
– ctrl-alt-delor
Jul 11 at 7:50




1




1




This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
– Stephen Kitt
Jul 11 at 8:04





This isn’t authoritative, but the ppc64el architecture qualification page says that “A multi-arch arrangement with the other ports is not feasible, since the kernel doesn't support bi-endianness.” and I get the impression that the statement on the kernel is general. The mips64el page only mentions the other little-endian MIPS architectures. I’m not aware of any endianness-swapping support in the kernel’s thunking layers.
– Stephen Kitt
Jul 11 at 8:04
















active

oldest

votes











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f454629%2fwhat-architecture-is-bi-endian-at-runtime%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes










 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f454629%2fwhat-architecture-is-bi-endian-at-runtime%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay