Searched defs:ConstraintStr (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/Basic/
H A DTargetInfo.h500 std::string ConstraintStr; // constraint: "=rm" member in struct:clang::TargetInfo::ConstraintInfo
503 ConstraintInfo(StringRef ConstraintStr, StringRef Name) argument
504 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()),
507 const std::string &getConstraintStr() const { return ConstraintStr; }
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1683 std::string &ConstraintStr,
1700 ConstraintStr += '*';
1705 ConstraintStr += '*';
1714 std::string &ConstraintStr) {
1721 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr,
1681 EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info, LValue InputValue, QualType InputType, std::string &ConstraintStr, SourceLocation Loc) argument
1711 EmitAsmInput( const TargetInfo::ConstraintInfo &Info, const Expr *InputExpr, std::string &ConstraintStr) argument
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp979 const std::string &ConstraintStr = IA->getConstraintString(); local
980 Record.push_back(ConstraintStr.size());
981 for (unsigned i = 0, e = ConstraintStr.size(); i != e; ++i)
982 Record.push_back(ConstraintStr[i]);

Completed in 146 milliseconds