search for: aarch64targetlow

Displaying 2 results from an estimated 2 matches for "aarch64targetlow".

2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...(Subtarget->isTargetDarwin()) + return new AArch64MachOTargetObjectFile(); if (Subtarget->isTargetLinux()) return new AArch64LinuxTargetObjectFile(); if (Subtarget->isTargetELF()) @@ -41,9 +43,7 @@ static TargetLoweringObjectFile *createTLOF(AArch64TargetMachine &TM) { AArch64TargetLowering::AArch64TargetLowering(AArch64TargetMachine &TM) : TargetLowering(TM, createTLOF(TM)), Itins(TM.getInstrItineraryData()) { - - const AArch64Subtarget *Subtarget = &TM.getSubtarget<AArch64Subtarget>(); - + Subtarget = &TM.getSubtarget<AArch64Subtarget>(); // SIMD...
2020 Jun 15
2
[AArch64][SVE] Floating Point Code Gen
Hello, I am following up on the issue discussed at the SVE meeting, Sander mentioned that there were some patterns missing from SVE CodeGen for floating point operations, but I was unable to identify them. He mentioned something about looking at the ISelLowering for AArch64 to identify them, so if there is any information of that regard it would be greatly appreciated so we can contribute with