Displaying 2 results from an estimated 2 matches for "armbasetargetmachin".
Did you mean:
armbasetargetmachine
2017 Aug 22
2
Subtarget Initialization in <ARCH>TargetMachine constructor
...r. On the other hard,
initAsmInfo() tries to create a subtargetinfo as well. The "Subtarget"
created here later on is returned through:
const LanaiSubtarget *
getSubtargetImpl(const llvm::Function & /*Fn*/) const override {
return &Subtarget;
}
ARM/X86 does differently.
ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, const Triple
&TT,
StringRef CPU, StringRef FS,
const TargetOptions &Options,
Optional<Reloc::Model> RM,...
2017 Aug 23
2
Subtarget Initialization in <ARCH>TargetMachine constructor
...ures will printout
the help info if both ProcDesc and ProcFeatures are not empty.
This is not really elegent. What I am wondering is whether there are other
side effect of this approach or not. If not, maybe I can live with this
for a while....
>
>
>> ARM/X86 does differently.
>> ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, const Triple
>> &TT,
>> StringRef CPU, StringRef FS,
>> const TargetOptions &Options,
>> Optio...