mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
422c27e8aa
Allows preserving MachineMemOperands on intrinsics through selection. For reasons I don't understand, this is a static property of the pattern and the selector deliberately goes out of its way to drop if not present. Intrinsics already inherit from SDPatternOperator allowing them to be used directly in instruction patterns. SDPatternOperator has a list of SDNodeProperty, but you currently can't set them on the intrinsic. Without SDNPMemOperand, when the node is selected any memory operands are always dropped. Allowing setting this on the intrinsics avoids needing to introduce another equivalent target node just to have SDNPMemOperand set. llvm-svn: 321212
35 lines
1.5 KiB
TableGen
35 lines
1.5 KiB
TableGen
//===- SDNodeProperties.td - Common code for DAG isels ---*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
class SDNodeProperty;
|
|
|
|
// Selection DAG Pattern Operations
|
|
class SDPatternOperator {
|
|
list<SDNodeProperty> Properties = [];
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Selection DAG Node Properties.
|
|
//
|
|
// Note: These are hard coded into tblgen.
|
|
//
|
|
def SDNPCommutative : SDNodeProperty; // X op Y == Y op X
|
|
def SDNPAssociative : SDNodeProperty; // (X op Y) op Z == X op (Y op Z)
|
|
def SDNPHasChain : SDNodeProperty; // R/W chain operand and result
|
|
def SDNPOutGlue : SDNodeProperty; // Write a flag result
|
|
def SDNPInGlue : SDNodeProperty; // Read a flag operand
|
|
def SDNPOptInGlue : SDNodeProperty; // Optionally read a flag operand
|
|
def SDNPMayStore : SDNodeProperty; // May write to memory, sets 'mayStore'.
|
|
def SDNPMayLoad : SDNodeProperty; // May read memory, sets 'mayLoad'.
|
|
def SDNPSideEffect : SDNodeProperty; // Sets 'HasUnmodelledSideEffects'.
|
|
def SDNPMemOperand : SDNodeProperty; // Touches memory, has assoc MemOperand
|
|
def SDNPVariadic : SDNodeProperty; // Node has variable arguments.
|
|
def SDNPWantRoot : SDNodeProperty; // ComplexPattern gets the root of match
|
|
def SDNPWantParent : SDNodeProperty; // ComplexPattern gets the parent
|