Searched defs:ConstraintInfo (Results 1 – 4 of 4) sorted by relevance
122 struct ConstraintInfo { global() struct 125 TypeConstraintInfo global() argument 129 isEarlyClobberConstraintInfo global() argument 135 MatchingInputConstraintInfo global() argument 160 multipleAlternativesConstraintInfo global() argument 166 currentAlternativeIndexConstraintInfo global() argument 186 hasArgConstraintInfo global() argument
1087 struct ConstraintInfo { struct1109 ConstraintInfo(StringRef ConstraintStr, StringRef Name) in ConstraintInfo() argument1116 const std::string &getConstraintStr() const { return ConstraintStr; } in getConstraintStr()1117 const std::string &getName() const { return Name; } in getName()1118 bool isReadWrite() const { return (Flags & CI_ReadWrite) != 0; } in isReadWrite()1119 bool earlyClobber() { return (Flags & CI_EarlyClobber) != 0; } in earlyClobber()1120 bool allowsRegister() const { return (Flags & CI_AllowsRegister) != 0; } in allowsRegister()1121 bool allowsMemory() const { return (Flags & CI_AllowsMemory) != 0; } in allowsMemory()1125 bool hasMatchingInput() const { return (Flags & CI_HasMatchingInput) != 0; } in hasMatchingInput()1132 bool hasTiedOperand() const { return TiedOperand != -1; } in hasTiedOperand()[all …]
268 class ConstraintInfo { class276 ConstraintInfo(const DataLayout &DL, ArrayRef<Value *> FunctionArgs) in ConstraintInfo() function in __anon050fee910111::ConstraintInfo
5900 InlineAsm::ConstraintInfoVector ConstraintInfo = IA->ParseConstraints(); in parseFunctionBody() local