Displaying 1 result from an estimated 1 matches for "mdump".
Did you mean:
dump
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...evel),
> + Subtarget(TT, CPU, FS),
> + DataLayout(Subtarget.getDataLayout()),
> + FrameLowering(TargetFrameLowering::StackGrowsUp,
> + Subtarget.device()->getStackAlignment(), 0),
> + IntrinsicInfo(this),
> + InstrItins(&Subtarget.getInstrItineraryData()),
> + mDump(false)
> +
> +{
> + // TLInfo uses InstrInfo so it must be initialized after.
> + if (Subtarget.device()->getGeneration() <= AMDILDeviceInfo::HD6XXX) {
> + InstrInfo = new R600InstrInfo(*this);
> + TLInfo = new R600TargetLowering(*this);
> + } else {
> + In...