Searched refs:IsDistinct (Results 1 – 4 of 4) sorted by relevance
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | ValueMapper.cpp | 190 bool IsDistinct) { in cloneMDTuple() argument 192 assert(!IsDistinct && "Unexpected distinct tuple"); in cloneMDTuple() 193 (void)IsDistinct; in cloneMDTuple() 209 bool IsDistinct) { in cloneMDLocation() argument 210 return (IsDistinct ? MDLocation::getDistinct : MDLocation::get)( in cloneMDLocation() 222 ValueMaterializer *Materializer, bool IsDistinct) { in cloneMDNode() argument 229 Materializer, IsDistinct); in cloneMDNode()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/AsmParser/ |
| H A D | LLParser.h | 415 bool ParseMDTuple(MDNode *&MD, bool IsDistinct = false); 425 bool ParseSpecializedMDNode(MDNode *&N, bool IsDistinct = false); 426 bool ParseMDLocation(MDNode *&Result, bool IsDistinct);
|
| H A D | LLParser.cpp | 589 bool IsDistinct = EatIfPresent(lltok::kw_distinct); in ParseStandaloneMetadata() local 591 if (ParseSpecializedMDNode(Init, IsDistinct)) in ParseStandaloneMetadata() 594 ParseMDTuple(Init, IsDistinct)) in ParseStandaloneMetadata() 2896 bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) { in ParseMDTuple() argument 2901 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts); in ParseMDTuple() 2978 bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) { in ParseSpecializedMDNode() argument 2982 return Parse##CLASS(N, IsDistinct); in ParseSpecializedMDNode() 3003 bool LLParser::ParseMDLocation(MDNode *&Result, bool IsDistinct) { in ParseMDLocation() argument 3020 auto get = (IsDistinct ? MDLocation::getDistinct : MDLocation::get); in ParseMDLocation()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 1178 bool IsDistinct = false; in ParseMetadata() local 1270 IsDistinct = true; in ParseMetadata() 1277 MDValueList.AssignValue(IsDistinct ? MDNode::getDistinct(Context, Elts) in ParseMetadata()
|