search for: armgensubtargetinfopubl

Displaying 1 result from an estimated 1 matches for "armgensubtargetinfopubl".

2014 Oct 23
2
[LLVMdev] Target specific info available to Clang (and others)
...han they should. The kind of information I want to expose are the enums that identify features, mainly VFP/NEON/Crypto etc. This is in ARMGenSubtargetInfo.inc under GET_SUBTARGETINFO_ENUM. One way I could think of, but it's controversial, is to generate two files: ARMGenSubtargetInfo.inc and ARMGenSubtargetInfoPublic.inc, the former in the current directory, the latter in a shared include path for all tools. That way, not only LLVM, but also Clang, llc, lld etc would be able to use the same parsing mechanism and understand the generated data (enums, structures) in the exact same way. Attached are two pseudo-...