Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp1623 if (Info.IsUsed) in emitFunctionMappingRecord()
1663 const std::string &CoverageMapping, bool IsUsed) { in addFunctionMappingRecord() argument
1666 FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed}); in addFunctionMappingRecord()
1668 if (!IsUsed) in addFunctionMappingRecord()
H A DCGCall.cpp4383 IsUsed = true; in getRValue()
4401 IsUsed = true; in copyInto()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCSymbol.h94 mutable unsigned IsUsed : 1; variable
162 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
223 bool isUsed() const { return IsUsed; } in isUsed()
305 IsUsed |= SetUsed;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DMacroInfo.cpp53 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
159 if (IsUsed) Out << " used"; in dump()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCSymbol.cpp48 assert(!IsUsed && "Cannot set a variable that has already been used."); in setVariableValue()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp377 bool IsUsed = false; in collectWaterfallCandidateRegisters() local
381 IsUsed = true; in collectWaterfallCandidateRegisters()
385 if (!IsUsed) { in collectWaterfallCandidateRegisters()
/openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/
H A DRecord.h1504 bool IsUsed = false; variable
1563 void setUsed(bool Used) { IsUsed = Used; } in setUsed()
1564 bool isUsed() const { return IsUsed; } in isUsed()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaAttr.cpp1081 if (!Entry.IsUsed) { in ActOnPragmaAttributePop()
1120 Entry.IsUsed = true; in AddPragmaAttributes()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1512 OperandData(Value *V, bool APO, bool IsUsed) in OperandData()
1513 : V(V), APO(APO), IsUsed(IsUsed) {} in OperandData()
1523 bool IsUsed = false; member
1566 OpsVec[OpIdx][Lane].IsUsed = false; in clearUsed()
1646 bool &IsUsed) { in getLookAheadScore() argument
1669 IsUsed = true; in getLookAheadScore()
1716 bool IsUsed = in getBestOperand() local
1726 if (OpData.IsUsed) in getBestOperand()
1744 OpIdx, Idx, IsUsed); in getBestOperand()
1762 getData(*BestOp.Idx, Lane).IsUsed = IsUsed; in getBestOperand()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp1528 auto IsUsed = [&HRI,&MRI] (Register Reg) -> bool { in needToReserveScavengingSpillSlots() local
1538 if (!IsUsed(*P)) in needToReserveScavengingSpillSlots()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h738 bool IsUsed; member