llvm/llvm-project

[NVPTX] Port code to `llvm/lib/CodeGen/SelectionDAG/*`

Open

#116.695 geöffnet am 18. Nov. 2024

Auf GitHub ansehen
 (8 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)C++ (10.782 Forks)batch import
backend:NVPTXgood first issuellvm:SelectionDAG

Repository-Metriken

Stars
 (26.378 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 1T 2h) (1.000 gemergte PRs in 30 T)

Beschreibung

Some of NVPTX's custom operation lowering and custom DAG combines do not rely on NVPTXISD nodes. A majority of these operation lowerings and DAG combines can be ported to live in LegalizeDAG.cpp or DAGCombiner.cpp respectively.

This will increase the coverage we have on this code and enable other targets to benefit from the work we've done.

For example,

Contributor Guide