Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DTargetInfo.h543 std::string ConstraintStr; // constraint: "=rm" member
546 ConstraintInfo(StringRef ConstraintStr, StringRef Name) in ConstraintInfo()
547 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()), in ConstraintInfo()
552 const std::string &getConstraintStr() const { return ConstraintStr; } in getConstraintStr()
/external/clang/lib/Sema/
DSemaStmtAsm.cpp376 StringRef ConstraintStr = Info.getConstraintStr(); in ActOnGCCAsmStmt() local
377 unsigned AltCount = ConstraintStr.count(',') + 1; in ActOnGCCAsmStmt()
387 StringRef ConstraintStr = Info.getConstraintStr(); in ActOnGCCAsmStmt() local
388 unsigned AltCount = ConstraintStr.count(',') + 1; in ActOnGCCAsmStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp1735 std::string &ConstraintStr, in EmitAsmInputLValue() argument
1752 ConstraintStr += '*'; in EmitAsmInputLValue()
1757 ConstraintStr += '*'; in EmitAsmInputLValue()
1766 std::string &ConstraintStr) { in EmitAsmInput() argument
1773 return EmitAsmInputLValue(Info, Dest, InputExpr->getType(), ConstraintStr, in EmitAsmInput()
DCodeGenFunction.h2841 const Expr *InputExpr, std::string &ConstraintStr);
2845 std::string &ConstraintStr,
/external/clang/lib/Basic/
DTargetInfo.cpp539 const char *Name = Info.ConstraintStr.c_str(); in validateInputConstraint()
DTargets.cpp3331 if (Info.ConstraintStr[0] == '=') in validateAsmConstraint()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1402 const std::string &ConstraintStr = IA->getConstraintString(); in WriteConstants() local
1403 Record.push_back(ConstraintStr.size()); in WriteConstants()
1404 Record.append(ConstraintStr.begin(), ConstraintStr.end()); in WriteConstants()