Displaying 1 result from an estimated 1 matches for "subflavor".
2011 Nov 16
0
[LLVMdev] eflags and other
...at from the
TargetSubtargetInfo (or classes derived from that like MipsSubTarget)
but all there is there is the basic machine type (i.e. MIPS, ARM, x86)
and endian.
This causes all the direct object emitters to put some fixed default
into eflags.
Eflags contains detailed information about the subflavor of
architecture, ABI, other.
One side effect of this problem is the objdump will not disassemble
instructions in a .o that it things are not part of the specific subflavor.
This is where I noticed the problem originally.
There are various comments to this effect but they are not totally accura...