diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-26 22:23:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-26 22:23:45 +0000 |
commit | 7572eb81eee93b0c666ddc5f5ff0ff72f17574fd (patch) | |
tree | 6e1bf4b4d849411c93151b9c0a87a452ba6804fc /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 6e87c0e029c011b9ee61068c607080ca4934378a (diff) |
Add new INLINEASM node
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 431364e072..b41b546d3a 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -311,6 +311,15 @@ namespace ISD { // the callee is known not to access the stack of the caller. CALL, TAILCALL, + + // INLINEASM - Represents an inline asm block. This node always has two + // return values: a chain and a flag result. The inputs are as follows: + // Operand #0 : Input chain. + // Operand #1 : a ExternalSymbolSDNode with a pointer to the asm string. + // Operand #2n+2: A RegisterNode. + // Operand #2n+3: A TargetConstant, indicating if the reg is a use/def + // Operand #last: Optional, an incoming flag. + INLINEASM, // 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 |