Searched refs:Used (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DWeak.h35 void setUsed(bool Used=true) { used = Used; } argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionImportUtils.h44 SmallPtrSet<GlobalValue *, 8> Used; member in class:llvm::FunctionImportGlobalProcessing
56 /// Only used in assertion checking, and disabled under NDEBUG since the Used
101 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
103 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h31 size_t Used = 0; member in struct:llvm::ms_demangle::ArenaAllocator::AllocatorNode
42 NewHead->Used = 0;
61 uint8_t *P = Head->Buf + Head->Used;
63 Head->Used += Size;
64 if (Head->Used <= Head->Capacity)
68 Head->Used = Size;
76 size_t P = (size_t)Head->Buf + Head->Used;
82 Head->Used += Size + Adjustment;
83 if (Head->Used <= Head->Capacity)
87 Head->Used
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/
H A DPassAnalysisSupport.h54 SmallVector<AnalysisID, 0> Used; member in class:llvm::AnalysisUsage
98 Used.push_back(ID);
102 Used.push_back(&ID);
108 Used.push_back(&PassClass::ID);
139 const VectorType &getUsedSet() const { return Used; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp54 SmallVector<std::pair<ResourceRef, ResourceCycles>, 4> Used; local
58 HWS.issueInstruction(IR, Used, Pending, Ready);
64 notifyInstructionIssued(IR, Used);
254 MutableArrayRef<std::pair<ResourceRef, ResourceCycles>> Used) const {
257 for (const std::pair<ResourceRef, ResourceCycles> &Resource : Used) {
259 dbgs() << "[E] Resource Used: [" << Resource.first.first << '.'
266 for (std::pair<ResourceRef, ResourceCycles> &Use : Used)
269 notifyEvent<HWInstructionEvent>(HWInstructionIssuedEvent(IR, Used));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp26 case Used:
47 case Used:
67 case Used:
68 S = Used;
182 case RecordStreamer::Used:
H A DIRSymtab.cpp111 const SmallPtrSet<GlobalValue *, 8> &Used,
122 SmallPtrSet<GlobalValue *, 8> Used;
123 collectUsedGlobalVariables(*M, Used, /*CompilerUsed*/ false);
160 if (Error Err = addSymbol(Msymtab, Used, Msym))
196 const SmallPtrSet<GlobalValue *, 8> &Used,
256 if (Used.count(GV) || IsBuiltinFunc)
195 addSymbol(const ModuleSymbolTable &Msymtab, const SmallPtrSet<GlobalValue *, 8> &Used, ModuleSymbolTable::Symbol Msym) argument
H A DRecordStreamer.h27 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used, enumerator in enum:llvm::RecordStreamer::State
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.h73 bool Used = false; member in struct:__xray::BufferQueue::BufferRep
90 } while (!Buffers[Offset].Used && Offset != Max);
108 // We want to advance to the first Offset where the 'Used' property is
110 while (!Buffers[Offset].Used && Offset != Max) {
H A Dxray_buffer_queue.cpp134 T.Used = false;
180 B->Used = true;
209 B->Used = true;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp29 enum IVarState { Unused, Used }; enumerator in enum:IVarState
40 I->second = Used;
74 I->second = Used;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DExecuteStage.h43 // Used to notify instructions eliminated at register renaming stage.
77 MutableArrayRef<std::pair<ResourceRef, ResourceCycles>> Used) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h161 bool Used = false; member in struct:llvm::ISD::InputArg
176 : Flags(flags), Used(used), OrigArgIndex(origIdx), PartOffset(partOffs) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp165 llvm::SmallBitVector &Used);
5458 llvm::SmallBitVector &Used;
5461 MarkUsedTemplateParameterVisitor(llvm::SmallBitVector &Used,
5463 : Used(Used), Depth(Depth) { }
5467 Used[T->getIndex()] = true;
5475 Used[TTP->getIndex()] = true;
5484 Used[NTTP->getIndex()] = true;
5497 llvm::SmallBitVector &Used) {
5499 MarkUsedTemplateParameterVisitor(Used, Dept
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DInternalize.cpp154 SmallPtrSet<GlobalValue *, 8> Used; local
155 collectUsedGlobalVariables(M, Used, false);
177 for (GlobalValue *V : Used) {
H A DSampleProfile.cpp186 unsigned computeCoverage(unsigned Used, unsigned Total) const;
387 /// Map from function name to Function *. Used to find the function from
628 unsigned SampleCoverageTracker::computeCoverage(unsigned Used, argument
630 assert(Used <= Total &&
632 return Total > 0 ? Used * 100 / Total : 100;
1740 unsigned Used = CoverageTracker.countUsedRecords(Samples, PSI); local
1742 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
1746 Twine(Used) + " of " + Twine(Total) + " available profile records (" +
1753 uint64_t Used = CoverageTracker.getTotalUsedSamples(); local
1755 unsigned Coverage = CoverageTracker.computeCoverage(Used, Tota
[all...]
H A DGlobalOpt.cpp2654 SmallPtrSet<GlobalValue *, 8> Used;
2661 UsedV = collectUsedGlobalVariables(M, Used, false);
2668 iterator usedBegin() { return Used.begin(); }
2669 iterator usedEnd() { return Used.end(); }
2682 bool usedCount(GlobalValue *GV) const { return Used.count(GV); }
2688 bool usedErase(GlobalValue *GV) { return Used.erase(GV); }
2690 bool usedInsert(GlobalValue *GV) { return Used.insert(GV).second; }
2698 setUsedInitializer(*UsedV, Used);
2776 LLVMUsed Used(M);
2778 for (GlobalValue *GV : Used
[all...]
/freebsd-11-stable/contrib/netbsd-tests/bin/df/
H A Dt_df.sh36 Filesystem 1K-blocks Used Avail %Cap Mounted on
94 Filesystem Size Used Avail %Cap Mounted on
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.cpp156 uint32_t Used = std::min(BlockSize, StreamBytesRemaining); local
157 CurrentRun->ByteLen += Used;
158 StreamBytesRemaining -= Used;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h205 SmallVectorImpl<std::pair<ResourceRef, ResourceCycles>> &Used,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp388 std::vector<GlobalValue *> Used; local
400 Used.push_back(&GV);
409 if (Used.empty())
412 appendToCompilerUsed(TheModule, Used);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp78 // Numbering map for gep nodes. Used to keep track of ordering for
181 Used = 0x04, enumerator in enum:__anon2224::GepNode::__anon2225
233 if (GN.Flags & GepNode::Used) {
401 PN->Flags |= GepNode::Used;
615 if (NF & GepNode::Used)
768 if (Node->Flags & GepNode::Used) {
772 assert(UF != Uses.end() && "Used node with no use information");
970 NewN->Flags &= ~GepNode::Used;
992 Node->Flags &= ~GepNode::Used;
997 NewNode->Flags |= GepNode::Used;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegBankReassign.cpp317 unsigned Used = 0;
321 Used |= 1 << I;
323 Mask &= ~Used;
337 unsigned Used = 0;
340 Used |= 1 << I;
342 Mask &= ~Used;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp390 LiveRegUnits Used(TRI);
395 Used.accumulate(MI);
400 if (!MRI.isReserved(Reg) && Used.available(Reg) &&
412 Used.accumulate(*std::next(From));
415 if (Survivor == 0 || !Used.available(Survivor)) {
418 if (!MRI.isReserved(Reg) && Used.available(Reg)) {
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp771 // value. Used when generating Sema checking code.
801 void genCodeDfs(Result::Ptr V, std::list<Result::Ptr> &Used,
807 genCodeDfs(W, Used, Pass);
809 Used.push_back(V);
838 std::list<Result::Ptr> Used;
839 genCodeDfs(Code, Used, Pass);
842 for (Result::Ptr V : Used)
846 for (Result::Ptr V : Used) {
848 if (V == Used.back()) {

Completed in 192 milliseconds

123