Home
last modified time | relevance | path

Searched refs:ConstraintStr (Results 1 – 8 of 8) sorted by relevance

/external/clang/include/clang/Basic/
DTargetInfo.h609 std::string ConstraintStr; // constraint: "=rm" member
612 ConstraintInfo(StringRef ConstraintStr, StringRef Name) in ConstraintInfo()
613 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()), in ConstraintInfo()
618 const std::string &getConstraintStr() const { return ConstraintStr; } in getConstraintStr()
/external/clang/lib/Sema/
DSemaStmtAsm.cpp414 StringRef ConstraintStr = Info.getConstraintStr(); in ActOnGCCAsmStmt() local
415 unsigned AltCount = ConstraintStr.count(',') + 1; in ActOnGCCAsmStmt()
427 StringRef ConstraintStr = Info.getConstraintStr(); in ActOnGCCAsmStmt() local
428 unsigned AltCount = ConstraintStr.count(',') + 1; in ActOnGCCAsmStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp1711 std::string &ConstraintStr, in EmitAsmInputLValue() argument
1728 ConstraintStr += '*'; in EmitAsmInputLValue()
1733 ConstraintStr += '*'; in EmitAsmInputLValue()
1742 std::string &ConstraintStr) { in EmitAsmInput() argument
1760 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr, in EmitAsmInput()
DCodeGenFunction.h3271 const Expr *InputExpr, std::string &ConstraintStr);
3275 std::string &ConstraintStr,
/external/clang/lib/Basic/
DTargetInfo.cpp538 const char *Name = Info.ConstraintStr.c_str(); in validateInputConstraint()
DTargets.cpp3886 if (Info.ConstraintStr[0] == '=') in validateAsmConstraint()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
DBitcodeWriter.cpp779 const std::string &ConstraintStr = IA->getConstraintString(); in WriteConstants() local
780 Record.push_back(ConstraintStr.size()); in WriteConstants()
781 for (unsigned i = 0, e = ConstraintStr.size(); i != e; ++i) in WriteConstants()
782 Record.push_back(ConstraintStr[i]); in WriteConstants()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp2037 const std::string &ConstraintStr = IA->getConstraintString(); in writeConstants() local
2038 Record.push_back(ConstraintStr.size()); in writeConstants()
2039 Record.append(ConstraintStr.begin(), ConstraintStr.end()); in writeConstants()