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.cpp1246 bool IsDistinct = false; in parseOneMetadata() local
1250 if (!IsDistinct) { in parseOneMetadata()
1301 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS) in parseOneMetadata()
1415 IsDistinct = true; in parseOneMetadata()
1422 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts) in parseOneMetadata()
1433 IsDistinct = Record[0]; in parseOneMetadata()
1452 IsDistinct = Record[0]; in parseOneMetadata()
1498 IsDistinct = Record[0] & 1; in parseOneMetadata()
1510 IsDistinct = Record[0] & 1; in parseOneMetadata()
1518 IsDistinct = Record[0] & 1; in parseOneMetadata()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp1000 bool IsDistinct = EatIfPresent(lltok::kw_distinct); in parseStandaloneMetadata() local
1002 if (parseSpecializedMDNode(Init, IsDistinct)) in parseStandaloneMetadata()
1005 parseMDTuple(Init, IsDistinct)) in parseStandaloneMetadata()
4609 bool LLParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument
4614 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts); in parseMDTuple()
5332 bool LLParser::parseSpecializedMDNode(MDNode *&N, bool IsDistinct) { in parseSpecializedMDNode() argument
5337 return parse##CLASS(N, IsDistinct); in parseSpecializedMDNode()
5366 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
5371 bool LLParser::parseDILocation(MDNode *&Result, bool IsDistinct) { in parseDILocation() argument
5391 bool LLParser::parseDIAssignID(MDNode *&Result, bool IsDistinct) { in parseDIAssignID() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h583 bool parseMDTuple(MDNode *&MD, bool IsDistinct = false);
599 bool parseSpecializedMDNode(MDNode *&N, bool IsDistinct = false);
600 bool parseDIExpressionBody(MDNode *&Result, bool IsDistinct);
603 bool parse##CLASS(MDNode *&Result, bool IsDistinct);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp440 bool parseMDTuple(MDNode *&MD, bool IsDistinct);
1300 bool IsDistinct = Token.is(MIToken::kw_distinct); in parseMachineMetadata() local
1301 if (IsDistinct) in parseMachineMetadata()
1308 if (parseMDTuple(MD, IsDistinct)) in parseMachineMetadata()
1327 bool MIParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument
1331 MD = (IsDistinct ? MDTuple::getDistinct in parseMDTuple()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp971 static DISubprogram *getSubprogram(bool IsDistinct, Ts &&...Args) { in getSubprogram() argument
972 if (IsDistinct) in getSubprogram()