Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1248 bool IsDistinct = false; in parseOneMetadata() local
1252 if (!IsDistinct) { in parseOneMetadata()
1295 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS) in parseOneMetadata()
1410 IsDistinct = true; in parseOneMetadata()
1417 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts) in parseOneMetadata()
1427 IsDistinct = Record[0]; in parseOneMetadata()
1444 IsDistinct = Record[0]; in parseOneMetadata()
1490 IsDistinct = Record[0] & 1; in parseOneMetadata()
1502 IsDistinct = Record[0] & 1; in parseOneMetadata()
1510 IsDistinct = Record[0] & 1; in parseOneMetadata()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp1011 bool IsDistinct = EatIfPresent(lltok::kw_distinct); in parseStandaloneMetadata() local
1013 if (parseSpecializedMDNode(Init, IsDistinct)) in parseStandaloneMetadata()
1016 parseMDTuple(Init, IsDistinct)) in parseStandaloneMetadata()
4508 bool LLParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument
4513 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts); in parseMDTuple()
5131 bool LLParser::parseSpecializedMDNode(MDNode *&N, bool IsDistinct) { in parseSpecializedMDNode() argument
5136 return parse##CLASS(N, IsDistinct); in parseSpecializedMDNode()
5165 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
5170 bool LLParser::parseDILocation(MDNode *&Result, bool IsDistinct) { in parseDILocation() argument
5188 bool LLParser::parseDIAssignID(MDNode *&Result, bool IsDistinct) { in parseDIAssignID() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h580 bool parseMDTuple(MDNode *&MD, bool IsDistinct = false);
596 bool parseSpecializedMDNode(MDNode *&N, bool IsDistinct = false);
597 bool parseDIExpressionBody(MDNode *&Result, bool IsDistinct);
600 bool parse##CLASS(MDNode *&Result, bool IsDistinct);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp432 bool parseMDTuple(MDNode *&MD, bool IsDistinct);
1299 bool IsDistinct = Token.is(MIToken::kw_distinct); in parseMachineMetadata() local
1300 if (IsDistinct) in parseMachineMetadata()
1307 if (parseMDTuple(MD, IsDistinct)) in parseMachineMetadata()
1325 bool MIParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument
1329 MD = (IsDistinct ? MDTuple::getDistinct in parseMDTuple()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp849 static DISubprogram *getSubprogram(bool IsDistinct, Ts &&...Args) { in getSubprogram() argument
850 if (IsDistinct) in getSubprogram()