forked from OSchip/llvm-project
parent
00720d8ff0
commit
a5110e854d
|
@ -312,6 +312,15 @@ namespace ISD {
|
|||
CALL,
|
||||
TAILCALL,
|
||||
|
||||
// STACKSAVE - STACKSAVE has one operand, an input chain. It produces a
|
||||
// value, the same type as the pointer type for the system, and an output
|
||||
// chain.
|
||||
STACKSAVE,
|
||||
|
||||
// STACKRESTORE has two operands, an input chain and a pointer to restore to
|
||||
// it returns an output chain.
|
||||
STACKRESTORE,
|
||||
|
||||
// MEMSET/MEMCPY/MEMMOVE - The first operand is the chain, and the rest
|
||||
// correspond to the operands of the LLVM intrinsic functions. The only
|
||||
// result is a token chain. The alignment argument is guaranteed to be a
|
||||
|
|
|
@ -1984,6 +1984,10 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const {
|
|||
case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
|
||||
case ISD::EXTRACT_ELEMENT: return "extract_element";
|
||||
case ISD::BUILD_PAIR: return "build_pair";
|
||||
case ISD::STACKSAVE: return "stacksave";
|
||||
case ISD::STACKRESTORE: return "stackrestore";
|
||||
|
||||
// Block memory operations.
|
||||
case ISD::MEMSET: return "memset";
|
||||
case ISD::MEMCPY: return "memcpy";
|
||||
case ISD::MEMMOVE: return "memmove";
|
||||
|
|
Loading…
Reference in New Issue