Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h93 mutable unsigned IsUsed : 1; variable
164 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
225 bool isUsed() const { return IsUsed; } in isUsed()
307 IsUsed |= SetUsed;
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h223 mutable bool IsUsed; member
228 : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {} in CallArg()
230 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {} in CallArg()
239 assert(HasLV && !IsUsed); in getKnownLValue()
243 assert(!HasLV && !IsUsed); in getKnownRValue()
H A DCoverageMappingGen.h102 bool IsUsed; member
133 bool IsUsed = true);
H A DCoverageMappingGen.cpp2197 if (Info.IsUsed) in emitFunctionMappingRecord()
2237 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
2239 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
2241 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4613 IsUsed = true; in getRValue()
4631 IsUsed = true; in copyInto()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp53 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
159 if (IsUsed) Out << " used"; in dump()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbol.cpp48 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp377 bool IsUsed = false; in collectWaterfallCandidateRegisters() local
381 IsUsed = true; in collectWaterfallCandidateRegisters()
385 if (!IsUsed) { in collectWaterfallCandidateRegisters()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1558 bool IsUsed = false; variable
1617 void setUsed(bool Used) { IsUsed = Used; } in setUsed()
1618 bool isUsed() const { return IsUsed; } in isUsed()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp1078 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
1117 Entry.IsUsed = true; in AddPragmaAttributes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1527 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
1528 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
1538 bool IsUsed = false; member
1581 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
1661 bool &IsUsed) { in getLookAheadScore() argument
1684 IsUsed = true; in getLookAheadScore()
1732 bool IsUsed = in getBestOperand() local
1742 if (OpData.IsUsed) in getBestOperand()
1778 getData(*BestOp.Idx, Lane).IsUsed = IsUsed; in getBestOperand()
1971 if (Data.APO != OpAPO || Data.IsUsed) in shouldBroadcast()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1531 auto IsUsed = [&HRI,&MRI] (Register Reg) -> bool { in needToReserveScavengingSpillSlots() local
1541 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h765 bool IsUsed; member