Home
last modified time | relevance | path

Searched refs:IsValid (Results 1 – 25 of 56) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h92 if (HandleTraits::IsValid(Handle)) in ~ScopedHandle()
103 if (HandleTraits::IsValid(Handle))
111 return HandleTraits::IsValid(Handle) ? true : false;
130 static bool IsValid(handle_type h) { in IsValid() function
152 static bool IsValid(handle_type h) { in IsValid() function
168 static bool IsValid(handle_type h) { in IsValid() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h157 unsigned IsValid : 1; member
160 LiveOutInfo() : NumSignBits(0), IsValid(true) {} in LiveOutInfo()
222 if (!LOI->IsValid) in GetLiveOutRegInfo()
266 LiveOutRegInfo[Reg].IsValid = false; in InvalidatePHILiveOutRegInfo()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAttr.h232 unsigned IsValid : 1; variable
248 ParamIdx() : Idx(0), HasThis(false), IsValid(false) {} in ParamIdx()
257 : Idx(Idx), HasThis(false), IsValid(true) { in ParamIdx()
281 assert((!P.IsValid || P.Idx >= 1) && "valid Idx must be one-origin"); in deserialize()
286 bool isValid() const { return IsValid; } in isValid()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DFunction.h103 bool isConstexpr() const { return IsValid; } in isConstexpr()
124 IsValid = true; in setCode()
152 bool IsValid = false; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DCoroutineStmtBuilder.h28 bool IsValid = true; variable
53 bool isInvalid() const { return !this->IsValid; } in isInvalid()
H A DSemaCoroutine.cpp1140 this->IsValid = makePromiseStmt() && makeInitialAndFinalSuspend(); in CoroutineStmtBuilder()
1144 assert(this->IsValid && "coroutine already invalid"); in buildStatements()
1145 this->IsValid = makeReturnObject(); in buildStatements()
1146 if (this->IsValid && !IsPromiseDependentType) in buildStatements()
1148 return this->IsValid; in buildStatements()
1152 assert(this->IsValid && "coroutine already invalid"); in buildDependentStatements()
1155 this->IsValid = makeOnException() && makeOnFallthrough() && in buildDependentStatements()
1158 return this->IsValid; in buildDependentStatements()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp121 if (!R.IsValid) { in operator <<()
144 IsValid = delinearize(LI); in IndexedReference()
145 if (IsValid) in IndexedReference()
153 assert(IsValid && "Expecting a valid reference"); in hasSpacialReuse()
210 assert(IsValid && "Expecting a valid reference"); in hasTemporalReuse()
266 assert(IsValid && "Expecting a valid reference"); in computeRefCost()
326 assert(!IsValid && "Should be called once from the constructor"); in delinearize()
H A DTFUtils.cpp288 bool isValid() const { return IsValid; } in isValid()
324 void invalidate() { IsValid = false; } in invalidate()
326 bool IsValid = true; member in llvm::TFModelEvaluatorImpl
411 IsValid = false; in checkReportAndInvalidate()
412 return IsValid; in checkReportAndInvalidate()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h148 bool IsValid() const { return Node != nullptr; } in IsValid() function
151 assert(IsValid() && "bad iterator"); in GetValue()
H A DFunctionLoweringInfo.cpp422 if (!LOI->IsValid) in GetLiveOutRegInfo()
473 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo()
478 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo()
508 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo()
513 DestLOI.IsValid = false; in ComputePHILiveOutRegInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLoopCacheAnalysis.h53 bool isValid() const { return IsValid; } in isValid()
126 bool IsValid = false;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DGnu.h192 bool IsValid; variable
219 explicit GCCInstallationDetector(const Driver &D) : IsValid(false), D(D) {} in GCCInstallationDetector()
224 bool isValid() const { return IsValid; } in isValid()
H A DCuda.h31 bool IsValid = false; variable
60 bool isValid() const { return IsValid; } in isValid()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp364 bool IsValid; in isBareSimmNLsb0() local
366 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isBareSimmNLsb0()
368 IsValid = isShiftedInt<N - 1, 1>(Imm); in isBareSimmNLsb0()
369 return IsValid && VK == RISCVMCExpr::VK_RISCV_None; in isBareSimmNLsb0()
610 bool IsValid; in isSImm12() local
615 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isSImm12()
617 IsValid = isInt<12>(Imm); in isSImm12()
618 return IsValid && ((IsConstantImm && VK == RISCVMCExpr::VK_RISCV_None) || in isSImm12()
641 bool IsValid; in isUImm20LUI() local
646 IsValid = RISCVAsmParser::classifySymbolRef(getImm(), VK); in isUImm20LUI()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DFileEntry.h341 bool IsValid = false; // Is this \c FileEntry initialized and valid?
368 bool isValid() const { return IsValid; }
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DHeaderSearch.cpp1173 HFI.External = (!HFI.IsValid || HFI.External); in mergeHeaderFileInfo()
1174 HFI.IsValid = true; in mergeHeaderFileInfo()
1191 if (ExternalHFI.IsValid) { in getFileInfo()
1198 HFI->IsValid = true; in getFileInfo()
1219 if (!WantExternal && (!HFI->IsValid || HFI->External)) in getExistingFileInfo()
1223 if (ExternalHFI.IsValid) { in getExistingFileInfo()
1235 if (!HFI->IsValid || (HFI->External && !WantExternal)) in getExistingFileInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DFileManager.cpp329 UFE.IsValid = true; in getFileRef()
436 UFE->IsValid = true; in getVirtualFileRef()
467 BFE.IsValid = true; in getBypassFile()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DHeaderSearch.h87 unsigned IsValid : 1; member
116 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {} in HeaderFileInfo()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_debugging.cc51 if (!chunk.IsValid()) return 0; in AsanGetStack()
H A Dasan_allocator.h52 bool IsValid() const; // Checks if AsanChunkView points to a valid
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_debugging.cpp53 if (!chunk.IsValid()) return 0; in AsanGetStack()
H A Dasan_allocator.h54 bool IsValid() const; // Checks if AsanChunkView points to a valid
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_debugging.cc53 if (!chunk.IsValid()) return 0; in AsanGetStack()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp198 bool IsValid() const { return Lhs_.BaseId != 0 && Rhs_.BaseId != 0; } in IsValid() function in __anon8ada780a0111::BCECmpBlock
203 if (IsValid()) { in AssertConsistent()
448 if (!Comparison.IsValid()) { in BCECmpChain()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp78 IsValid = true; in extract()
204 if (!IsValid) in dump()
330 if (!IsValid) in equal_range()

123