Displaying 3 results from an estimated 3 matches for "xxxgeninstrnam".
Did you mean:
xxxgeninstrnames
2006 May 01
2
[LLVMdev] problems with tablegen and namespaces
> Okay, if you update from CVS, this problem should be fixed, at least for
> the AsmPrinter. Please try it out (without AAA), and let me know if you
> have problems with any other part of the code generator.
The behaviour now is:
The TargetInstrInfo namespace is used for the PHI instruction
regardless of the presence of the AAA instruction.
In ARMGenInstrNames.inc, the TargetInstrInfo
2006 May 01
0
[LLVMdev] problems with tablegen and namespaces
...dless of the presence of the AAA instruction.
Good, this is expected. TargetInstrInfo::PHI == ARM::PHI.
> In ARMGenInstrNames.inc, the TargetInstrInfo namespace is used if the
> AAA instruction isn't defined and the ARM namespace is used if it is
> defined.
I don't follow here. XXXGenInstrNames.inc shouldn't have namespaces at
all. Can you paste a few lines out of the file that you are seeing?
Thanks,
-Chris
--
http://nondot.org/sabre/
http://llvm.org/
2006 May 01
1
[LLVMdev] problems with tablegen and namespaces
> > In ARMGenInstrNames.inc, the TargetInstrInfo namespace is used if the
> > AAA instruction isn't defined and the ARM namespace is used if it is
> > defined.
>
> I don't follow here. XXXGenInstrNames.inc shouldn't have namespaces at
> all. Can you paste a few lines out of the file that you are seeing?
Sure:
with AAA defined, ARMGenInstrNames.inc looks like:
-----------------------------------------
namespace llvm {
namespace ARM {
.
.
.
}
}
--------------------------------------
and...