Home
last modified time | relevance | path

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

/external/llvm/utils/TableGen/
DCodeGenInstruction.cpp198 static void ParseConstraint(const std::string &CStr, CGIOperandList &Ops) { in ParseConstraint() argument
200 std::string::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint()
201 std::string::size_type start = CStr.find_first_not_of(" \t"); in ParseConstraint()
202 std::string Tok = CStr.substr(start, wpos - start); in ParseConstraint()
204 std::string Name = CStr.substr(wpos+1); in ParseConstraint()
207 throw "Illegal format for @earlyclobber constraint: '" + CStr + "'"; in ParseConstraint()
220 std::string::size_type pos = CStr.find_first_of('='); in ParseConstraint()
222 start = CStr.find_first_not_of(" \t"); in ParseConstraint()
223 std::string Name = CStr.substr(start, pos - start); in ParseConstraint()
228 throw "Illegal format for tied-to constraint: '" + CStr + "'"; in ParseConstraint()
[all …]