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

/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp414 StringRef ConstraintStr = Info.getConstraintStr(); local
415 unsigned AltCount = ConstraintStr.count(',') + 1;
427 StringRef ConstraintStr = Info.getConstraintStr(); local
428 unsigned AltCount = ConstraintStr.count(',') + 1;
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp779 const std::string &ConstraintStr = IA->getConstraintString(); local
780 Record.push_back(ConstraintStr.size());
781 for (unsigned i = 0, e = ConstraintStr.size(); i != e; ++i)
782 Record.push_back(ConstraintStr[i]);
/external/clang/include/clang/Basic/
H A DTargetInfo.h609 std::string ConstraintStr; // constraint: "=rm" member in struct:clang::TargetInfo::ConstraintInfo
612 ConstraintInfo(StringRef ConstraintStr, StringRef Name) argument
613 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()),
618 const std::string &getConstraintStr() const { return ConstraintStr; }
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1711 std::string &ConstraintStr,
1728 ConstraintStr += '*';
1733 ConstraintStr += '*';
1742 std::string &ConstraintStr) {
1760 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr,
1709 EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info, LValue InputValue, QualType InputType, std::string &ConstraintStr, SourceLocation Loc) argument
1739 EmitAsmInput( const TargetInfo::ConstraintInfo &Info, const Expr *InputExpr, std::string &ConstraintStr) argument
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2037 const std::string &ConstraintStr = IA->getConstraintString(); local
2038 Record.push_back(ConstraintStr.size());
2039 Record.append(ConstraintStr.begin(), ConstraintStr.end());

Completed in 295 milliseconds