Searched refs:IsDistinct (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/ |
| H A D | MetadataLoader.cpp | 1136 bool IsDistinct = false; in parseOneMetadata() local 1140 if (!IsDistinct) { in parseOneMetadata() 1183 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS) in parseOneMetadata() 1300 IsDistinct = true; in parseOneMetadata() 1307 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts) in parseOneMetadata() 1317 IsDistinct = Record[0]; in parseOneMetadata() 1334 IsDistinct = Record[0]; in parseOneMetadata() 1380 IsDistinct = Record[0] & 1; in parseOneMetadata() 1392 IsDistinct = Record[0] & 1; in parseOneMetadata() 1400 IsDistinct = Record[0] & 1; in parseOneMetadata() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 837 bool IsDistinct = EatIfPresent(lltok::kw_distinct); in parseStandaloneMetadata() local 839 if (parseSpecializedMDNode(Init, IsDistinct)) in parseStandaloneMetadata() 842 parseMDTuple(Init, IsDistinct)) in parseStandaloneMetadata() 4099 bool LLParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument 4104 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts); in parseMDTuple() 4722 bool LLParser::parseSpecializedMDNode(MDNode *&N, bool IsDistinct) { in parseSpecializedMDNode() argument 4727 return parse##CLASS(N, IsDistinct); in parseSpecializedMDNode() 4756 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS) 4761 bool LLParser::parseDILocation(MDNode *&Result, bool IsDistinct) { in parseDILocation() argument 4779 bool LLParser::parseDIAssignID(MDNode *&Result, bool IsDistinct) { in parseDIAssignID() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/AsmParser/ |
| H A D | LLParser.h | 551 bool parseMDTuple(MDNode *&MD, bool IsDistinct = false); 566 bool parseSpecializedMDNode(MDNode *&N, bool IsDistinct = false); 569 bool parse##CLASS(MDNode *&Result, bool IsDistinct); 571 bool parseDIArgList(MDNode *&Result, bool IsDistinct,
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 431 bool parseMDTuple(MDNode *&MD, bool IsDistinct); 1282 bool IsDistinct = Token.is(MIToken::kw_distinct); in parseMachineMetadata() local 1283 if (IsDistinct) in parseMachineMetadata() 1290 if (parseMDTuple(MD, IsDistinct)) in parseMachineMetadata() 1308 bool MIParser::parseMDTuple(MDNode *&MD, bool IsDistinct) { in parseMDTuple() argument 1312 MD = (IsDistinct ? MDTuple::getDistinct in parseMDTuple()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 842 static DISubprogram *getSubprogram(bool IsDistinct, Ts &&...Args) { in getSubprogram() argument 843 if (IsDistinct) in getSubprogram()
|