move IR-level optimization flags into their own struct
authorSanjay Patel <spatel@rotateright.com>
Tue, 28 Apr 2015 16:39:12 +0000 (16:39 +0000)
committerSanjay Patel <spatel@rotateright.com>
Tue, 28 Apr 2015 16:39:12 +0000 (16:39 +0000)
commitba55804ea3f90e5fdac900d0bc5bdf61dd6ad877
treea378407d5007dac0e09ec89ec2bfefef269411ec
parenta820169711755d637fe1e5c9c046ef61981cd923
move IR-level optimization flags into their own struct

This is a preliminary step to using the IR-level floating-point fast-math-flags in the SDAG (D8900).

In this patch, we introduce the optimization flags as their own struct. As noted in the TODO comment,
we should eventually share this data between the IR passes and the backend.

We also switch the existing nsw / nuw / exact bit functionality of the BinaryWithFlagsSDNode class to
use the new struct.

The tradeoff is that instead of using the free but limited space of SDNode's SubclassData, we add a
data member to the subclass. This means we don't have to repeat all of the get/set methods per flag,
but we're potentially adding size to all nodes of this subclassi type.

In practice on 64-bit systems (measured on Linux and MacOS X), there is no size difference between an
SDNode and BinaryWithFlagsSDNode after this change: they're both 80 bytes. This means that we had at
least one free byte to play with due to struct alignment.

Differential Revision: http://reviews.llvm.org/D9325

llvm-svn: 235997
llvm/include/llvm/CodeGen/SelectionDAGNodes.h
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
llvm/lib/Target/X86/X86ISelLowering.cpp