Home
last modified time | relevance | path

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

/external/llvm/lib/AsmParser/
DLLParser.cpp4934 unsigned KeywordVal = Lex.getUIntVal(); in ParseInstruction() local
4961 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true; in ParseInstruction()
4973 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2); in ParseInstruction()
4987 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true; in ParseInstruction()
4993 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1); in ParseInstruction()
4996 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal); in ParseInstruction()
4997 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal); in ParseInstruction()
5000 int Res = ParseCompare(Inst, PFS, KeywordVal); in ParseInstruction()
5021 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal); in ParseInstruction()
/external/llvm-project/llvm/lib/AsmParser/
DLLParser.cpp6028 unsigned KeywordVal = Lex.getUIntVal(); in parseInstruction() local
6063 int Res = parseUnaryOp(Inst, PFS, KeywordVal, /*IsFP*/ true); in parseInstruction()
6079 if (parseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/ false)) in parseInstruction()
6092 int Res = parseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/ true); in parseInstruction()
6106 if (parseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/ false)) in parseInstruction()
6114 return parseArithmetic(Inst, PFS, KeywordVal, in parseInstruction()
6119 return parseLogical(Inst, PFS, KeywordVal); in parseInstruction()
6121 return parseCompare(Inst, PFS, KeywordVal); in parseInstruction()
6124 int Res = parseCompare(Inst, PFS, KeywordVal); in parseInstruction()
6146 return parseCast(Inst, PFS, KeywordVal); in parseInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp5700 unsigned KeywordVal = Lex.getUIntVal(); in ParseInstruction() local
5722 int Res = ParseUnaryOp(Inst, PFS, KeywordVal, /*IsFP*/true); in ParseInstruction()
5738 if (ParseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/false)) return true; in ParseInstruction()
5750 int Res = ParseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/true); in ParseInstruction()
5764 if (ParseArithmetic(Inst, PFS, KeywordVal, /*IsFP*/false)) return true; in ParseInstruction()
5770 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, in ParseInstruction()
5774 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal); in ParseInstruction()
5775 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal); in ParseInstruction()
5778 int Res = ParseCompare(Inst, PFS, KeywordVal); in ParseInstruction()
5799 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal); in ParseInstruction()