Searched refs:DotDispStr (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 2277 StringRef DotDispStr = Tok.getString(); in ParseIntelDotOperator() local 2278 if (DotDispStr.startswith(".")) in ParseIntelDotOperator() 2279 DotDispStr = DotDispStr.drop_front(1); in ParseIntelDotOperator() 2285 DotDispStr.getAsInteger(10, DotDisp); in ParseIntelDotOperator() 2289 if (DotDispStr.endswith(".")) { in ParseIntelDotOperator() 2290 TrailingDot = DotDispStr.substr(DotDispStr.size() - 1); in ParseIntelDotOperator() 2291 DotDispStr = DotDispStr.drop_back(1); in ParseIntelDotOperator() 2293 const std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.'); in ParseIntelDotOperator() 2295 if (getParser().lookUpField(SM.getType(), DotDispStr, Info) && in ParseIntelDotOperator() 2296 getParser().lookUpField(SM.getSymName(), DotDispStr, Info) && in ParseIntelDotOperator() [all …]
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 1676 StringRef DotDispStr = Tok.getString(); in ParseIntelDotOperator() local 1677 if (DotDispStr.startswith(".")) in ParseIntelDotOperator() 1678 DotDispStr = DotDispStr.drop_front(1); in ParseIntelDotOperator() 1683 DotDispStr.getAsInteger(10, DotDisp); in ParseIntelDotOperator() 1687 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.'); in ParseIntelDotOperator() 1696 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data()); in ParseIntelDotOperator() 1697 unsigned Len = DotDispStr.size(); in ParseIntelDotOperator()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 1785 StringRef DotDispStr = Tok.getString(); in ParseIntelDotOperator() local 1786 if (DotDispStr.startswith(".")) in ParseIntelDotOperator() 1787 DotDispStr = DotDispStr.drop_front(1); in ParseIntelDotOperator() 1792 DotDispStr.getAsInteger(10, DotDisp); in ParseIntelDotOperator() 1795 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.'); in ParseIntelDotOperator() 1803 End = SMLoc::getFromPointer(DotDispStr.data()); in ParseIntelDotOperator() 1804 const char *DotExprEndLoc = DotDispStr.data() + DotDispStr.size(); in ParseIntelDotOperator()
|