Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h239 mutable bool IsUsed; member
244 : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {} in CallArg()
246 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {} in CallArg()
255 assert(HasLV && !IsUsed); in getKnownLValue()
259 assert(!HasLV && !IsUsed); in getKnownRValue()
H A DCoverageMappingGen.h112 bool IsUsed; member
143 bool IsUsed = true);
H A DCoverageMappingGen.cpp2492 if (Info.IsUsed) in emitFunctionMappingRecord()
2532 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
2534 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
2536 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4798 IsUsed = true; in getRValue()
4816 IsUsed = true; in copyInto()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h109 bool IsUsed : 1; variable
154 void setIsUsed(bool Val) { IsUsed = Val; } in setIsUsed()
224 bool isUsed() const { return IsUsed; } in isUsed()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp50 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
154 if (IsUsed) Out << " used"; in dump()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp384 bool IsUsed = false; in collectWaterfallCandidateRegisters() local
388 IsUsed = true; in collectWaterfallCandidateRegisters()
392 if (!IsUsed) { in collectWaterfallCandidateRegisters()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1551 bool IsUsed = false; variable
1610 void setUsed(bool Used) { IsUsed = Used; } in setUsed()
1611 bool isUsed() const { return IsUsed; } in isUsed()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp1174 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
1218 Entry.IsUsed = true; in AddPragmaAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1517 auto IsUsed = [&HRI,&MRI] (Register Reg) -> bool { in needToReserveScavengingSpillSlots() local
1527 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2464 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
2465 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
2475 bool IsUsed = false; member
2522 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
2610 bool &IsUsed, const SmallBitVector &UsedLanes) { in getLookAheadScore() argument
2632 IsUsed = true; in getLookAheadScore()
2681 bool IsUsed = RMode == ReorderingMode::Splat || in getBestOperand() local
2692 if (OpData.IsUsed) in getBestOperand()
2709 OpIdx, Idx, IsUsed, UsedLanes); in getBestOperand()
2729 IsUsed = false; in getBestOperand()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2078 bool IsUsed; member