X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FInlineAsm.h;h=20903cb51c709342c0260ccc8cb4358685caba04;hb=a353ffa7e556bfd2864474911174da691117f691;hp=1ba791c472ed043ab3b95d4839bb8ae5894735f2;hpb=a1a702cdd23221e6e3f36632be91150138958e9d;p=oota-llvm.git diff --git a/include/llvm/InlineAsm.h b/include/llvm/InlineAsm.h index 1ba791c472e..20903cb51c7 100644 --- a/include/llvm/InlineAsm.h +++ b/include/llvm/InlineAsm.h @@ -17,7 +17,6 @@ #define LLVM_INLINEASM_H #include "llvm/Value.h" -#include "llvm/System/IncludeFile.h" #include namespace llvm { @@ -85,10 +84,6 @@ public: /// read. This is only ever set for an output operand. bool isEarlyClobber; - /// isIndirectOutput - If this is true for an output constraint, the address - /// to store the output result is passed as an operand to the call. - bool isIndirectOutput; - /// hasMatchingInput - This is set to true for an output constraint iff /// there is an input constraint that is required to match it (e.g. "0"). bool hasMatchingInput; @@ -97,11 +92,17 @@ public: /// with the next operand. bool isCommutative; + /// isIndirect - True if this operand is an indirect operand. This means + /// that the address of the source or destination is present in the call + /// instruction, instead of it being returned or passed in explicitly. This + /// is represented with a '*' in the asm string. + bool isIndirect; + /// Code - The constraint code, either the register name (in braces) or the /// constraint letter/number. std::vector Codes; - /// Parse - Analyze the specified string (e.g. "==&{eax}") and fill in the + /// Parse - Analyze the specified string (e.g. "=*&{eax}") and fill in the /// fields in this structure. If the constraint string is not understood, /// return true, otherwise return false. bool Parse(const std::string &Str, @@ -130,7 +131,4 @@ public: } // End llvm namespace -// Make sure the InlineAsm.cpp file is linked when this one is #included. -FORCE_DEFINING_FILE_TO_BE_LINKED(InlineAsm) - #endif