Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h94 mutable unsigned IsUsed : 1; variable
165 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
225 bool isUsed() const { return IsUsed; } in isUsed()
307 IsUsed |= SetUsed;
/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.h111 bool IsUsed; member
142 bool IsUsed = true);
H A DCoverageMappingGen.cpp2453 if (Info.IsUsed) in emitFunctionMappingRecord()
2493 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
2495 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
2497 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4635 IsUsed = true; in getRValue()
4653 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.cpp53 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
159 if (IsUsed) Out << " used"; in dump()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbol.cpp48 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/freebsd/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/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/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp1075 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
1114 Entry.IsUsed = true; in AddPragmaAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1724 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
1725 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
1735 bool IsUsed = false; member
1779 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
1859 bool &IsUsed) { in getLookAheadScore() argument
1882 IsUsed = true; in getLookAheadScore()
1930 bool IsUsed = RMode == ReorderingMode::Splat || in getBestOperand() local
1941 if (OpData.IsUsed) in getBestOperand()
1958 OpIdx, Idx, IsUsed); in getBestOperand()
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1530 auto IsUsed = [&HRI,&MRI] (Register Reg) -> bool { in needToReserveScavengingSpillSlots() local
1540 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1776 bool IsUsed; member