Home
last modified time | relevance | path

Searched refs:IsUsed (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DUnusedUsingDeclsCheck.h37 : FoundUsingDecl(FoundUsingDecl), IsUsed(false) {} in UsingDeclContext()
47 bool IsUsed; member
H A DUnusedUsingDeclsCheck.cpp166 Context.IsUsed = true; in removeFromFoundDecls()
172 if (!Context.IsUsed) { in onEndOfTranslationUnit()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCall.h224 mutable bool IsUsed; member
229 : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {} in CallArg()
231 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {} in CallArg()
240 assert(HasLV && !IsUsed); in getKnownLValue()
244 assert(!HasLV && !IsUsed); in getKnownRValue()
H A DCoverageMappingGen.h102 bool IsUsed; member
134 bool IsUsed = true);
H A DCoverageMappingGen.cpp1620 if (Info.IsUsed) in emitFunctionMappingRecord()
1660 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
1663 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
1665 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4333 IsUsed = true; in getRValue()
4351 IsUsed = true; in copyInto()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSymbol.h94 mutable unsigned IsUsed : 1; variable
157 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
218 bool isUsed() const { return IsUsed; } in isUsed()
300 IsUsed |= SetUsed;
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DMacroInfo.h109 bool IsUsed : 1; variable
155 void setIsUsed(bool Val) { IsUsed = Val; } in setIsUsed()
225 bool isUsed() const { return IsUsed; } in isUsed()
/llvm-project-15.0.7/clang/lib/Lex/
H A DMacroInfo.cpp53 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
159 if (IsUsed) Out << " used"; in dump()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCSymbol.cpp48 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/llvm-project-15.0.7/openmp/libomptarget/src/
H A Drtl.cpp371 if (!R.IsUsed && R.NumberOfDevices != 0) { in initRTLonce()
389 R.IsUsed = true; in initRTLonce()
489 assert(R->IsUsed && "Expecting used RTLs."); in unregisterLib()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DAvoidBindCheck.cpp85 bool IsUsed = false; member
280 B.IsUsed = true; in buildBindArguments()
356 if (ArgIndex != -1 && Args[ArgIndex].IsUsed) in addPlaceholderArgs()
617 if (B.CM == CM_None || !B.IsUsed) in emitCaptureList()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp377 bool IsUsed = false; in collectWaterfallCandidateRegisters() local
381 IsUsed = true; in collectWaterfallCandidateRegisters()
385 if (!IsUsed) { in collectWaterfallCandidateRegisters()
/llvm-project-15.0.7/openmp/libomptarget/include/
H A Drtl.h125 bool IsUsed = false; member
/llvm-project-15.0.7/llvm/include/llvm/TableGen/
H A DRecord.h1479 bool IsUsed = false; variable
1529 void setUsed(bool Used) { IsUsed = Used; } in setUsed()
1530 bool isUsed() const { return IsUsed; } in isUsed()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaAttr.cpp1084 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
1123 Entry.IsUsed = true; in AddPragmaAttributes()
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1351 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
1352 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
1362 bool IsUsed = false; member
1404 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
1484 bool &IsUsed) { in getLookAheadScore() argument
1507 IsUsed = true; in getLookAheadScore()
1554 bool IsUsed = in getBestOperand() local
1564 if (OpData.IsUsed) in getBestOperand()
1600 getData(*BestOp.Idx, Lane).IsUsed = IsUsed; in getBestOperand()
1793 if (Data.APO != OpAPO || Data.IsUsed) in shouldBroadcast()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1586 auto IsUsed = [&HRI,&MRI] (unsigned Reg) -> bool { in needToReserveScavengingSpillSlots() local
1596 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h737 bool IsUsed; member