| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_access.cpp | 149 Shadow old, in DoReportRace() 158 StoreShadow(&shadow_mem[i], i == 0 ? Shadow::kRodata : Shadow::kEmpty); in DoReportRace() 187 if (old == Shadow::kRodata) in ContainsSameAccess() 200 Shadow old(LoadShadow(sp)); in CheckRaces() 390 if (raw == Shadow::kEmpty) { in DumpShadow() 394 Shadow s(raw); in DumpShadow() 460 Shadow cur(fast_state, 0, 8, typ); in MemoryAccess16() 516 Shadow cur(fast_state, 0, size2, typ); in UnalignedMemoryAccess() 540 static_cast<u32>(Shadow::kEmpty), static_cast<u32>(Shadow::kEmpty)); in ShadowSet() 701 if (*shadow_mem == Shadow::kRodata) in MemoryAccessRangeT() [all …]
|
| H A D | tsan_shadow.h | 41 friend class Shadow; 57 class Shadow { 61 Shadow(FastState state, u32 addr, u32 size, AccessType typ) { in Shadow() function 77 explicit Shadow(RawShadow x = Shadow::kEmpty) { raw_ = static_cast<u32>(x); } 85 DCHECK(part_.access_ != 0 || raw_ == static_cast<u32>(Shadow::kRodata)); in GetAccess() 136 Shadow s(fs, 0, 8, kAccessWrite); in FreedMarker() 141 Shadow s; in FreedInfo() 179 static_assert(sizeof(Shadow) == kShadowSize, "bad Shadow size");
|
| H A D | tsan_rtl_report.cpp | 177 void ScopedReportBase::AddMemoryAccess(uptr addr, uptr external_tag, Shadow s, in AddMemoryAccess() 703 static bool SpuriousRace(Shadow old) { in SpuriousRace() 704 Shadow last(LoadShadow(&ctx->last_spurious_race)); in SpuriousRace() 708 void ReportRace(ThreadState *thr, RawShadow *shadow_mem, Shadow cur, Shadow old, in ReportRace() 732 Shadow s[kMop] = {cur, old}; in ReportRace()
|
| H A D | tsan_rtl.h | 409 void AddMemoryAccess(uptr addr, uptr external_tag, Shadow s, Tid tid, 496 void ReportRace(ThreadState *thr, RawShadow *shadow_mem, Shadow cur, Shadow old,
|
| H A D | tsan_interface_java.cpp | 136 ShadowSet(d, dend, Shadow::kEmpty); in __tsan_java_move()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | DataFlowSanitizer.cpp | 605 Value *Shadow; member 957 return Shadow; in expandFromPrimitiveShadowRecursive() 967 return Shadow; in expandFromPrimitiveShadowRecursive() 995 return Shadow; in expandFromPrimitiveShadow() 1019 return Shadow; in collapseToPrimitiveShadow() 1031 return Shadow; in collapseToPrimitiveShadow() 1876 if (!Shadow) { in getShadow() 1886 return Shadow; in getShadow() 2022 return CCS.Shadow; in combineShadows() 2425 Value *Shadow = in visitLoadInst() local [all …]
|
| H A D | MemorySanitizer.cpp | 1146 Value *Shadow; member 1449 if (!Shadow) { in materializeInstructionChecks() 1454 Shadow = convertToBool(Shadow, IRB, "_mscmp"); in materializeInstructionChecks() 1456 Shadow = IRB.CreateOr(Shadow, ConvertedShadow, "_msor"); in materializeInstructionChecks() 1459 if (Shadow) { in materializeInstructionChecks() 2065 assert(Shadow); in insertShadowCheck() 2094 if (!Shadow) in insertShadowCheck() 2099 if (!Shadow) in insertShadowCheck() 2432 Shadow = IRB.CreateOr(Shadow, OpShadow, "_msprop"); in Add() 3489 Value *Shadow = in handleMaskedGather() local [all …]
|
| H A D | MemProfiler.cpp | 202 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 259 Value *MemProfiler::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow() argument 261 Shadow = IRB.CreateAnd(Shadow, Mapping.Mask); in memToShadow() 262 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); in memToShadow() 265 return IRB.CreateAdd(Shadow, DynamicShadowOffset); in memToShadow()
|
| H A D | HWAddressSanitizer.cpp | 306 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 861 Value *Shadow = IRB.CreateLShr(Mem, Mapping.Scale); in memToShadow() local 863 return IRB.CreateIntToPtr(Shadow, PtrTy); in memToShadow() 865 return IRB.CreatePtrAdd(ShadowBase, Shadow); in memToShadow() 889 Value *Shadow = memToShadow(R.AddrLong, IRB); in insertShadowTagCheck() local 890 R.MemTag = IRB.CreateLoad(Int8Ty, Shadow); in insertShadowTagCheck()
|
| H A D | AddressSanitizer.cpp | 724 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 1237 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow() argument 1239 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); in memToShadow() 1240 if (Mapping.Offset == 0) return Shadow; in memToShadow() 1248 return IRB.CreateOr(Shadow, ShadowBase); in memToShadow() 1250 return IRB.CreateAdd(Shadow, ShadowBase); in memToShadow()
|
| /freebsd-14.2/contrib/dialog/samples/ |
| H A D | sourcemage.rc | 24 # Shadow dialog boxes? This also turns on color. 33 # Shadow color
|
| H A D | debian.rc | 25 # Shadow dialog boxes? This also turns on color. 34 # Shadow color
|
| H A D | whiptail.rc | 24 # Shadow dialog boxes? This also turns on color. 33 # Shadow color
|
| H A D | suse.rc | 24 # Shadow dialog boxes? This also turns on color. 33 # Shadow color
|
| H A D | slackware.rc | 24 # Shadow dialog boxes? This also turns on color. 33 # Shadow color
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cpp | 489 struct Shadow { struct in __hwasan::__anon07ea22c70511::BaseReport 496 Shadow CopyShadow() const; 521 const Shadow shadow; 555 BaseReport::Shadow BaseReport::CopyShadow() const { in CopyShadow() 556 Shadow result; in CopyShadow()
|
| /freebsd-14.2/crypto/openssh/ |
| H A D | CREDITS | 10 Andreas Steinmetz <[email protected]> - Shadow password expiry support 90 Thomas Neumann <[email protected]> - Shadow passwords
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 1364 if (auto *Shadow = dyn_cast<UsingShadowDecl>(D)) { in addedMember() local 1365 if (Shadow->getDeclName().getNameKind() in addedMember() 1368 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess()); in addedMember() 3098 const UsingShadowDecl *Shadow = this; in getIntroducer() local 3100 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow)) in getIntroducer() 3101 Shadow = NextShadow; in getIntroducer() 3102 return cast<BaseUsingDecl>(Shadow->UsingOrNextShadow); in getIntroducer()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLookup.cpp | 4106 ShadowContextRAII Shadow(Visited); in lookupVisibleDecls() local 4117 ShadowContextRAII Shadow(Visited); in lookupVisibleDecls() local 4196 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4256 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4266 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4273 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4280 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4288 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4294 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local 4300 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local [all …]
|
| H A D | SemaAccess.cpp | 1320 if (UsingShadowDecl *Shadow = in IsMicrosoftUsingDeclarationAccessBug() local 1322 if (UsingDecl *UD = dyn_cast<UsingDecl>(Shadow->getIntroducer())) { in IsMicrosoftUsingDeclarationAccessBug() 1708 } else if (auto *Shadow = in CheckConstructorAccess() local 1712 ObjectClass = Shadow->getParent(); in CheckConstructorAccess()
|
| H A D | SemaDeclCXX.cpp | 7403 Shadow->setInvalidDecl(); in InheritedConstructorInfo() 12520 PrevShadow = Shadow; in CheckUsingShadowDecl() 12627 UsingShadowDecl *Shadow; in BuildUsingShadowDecl() local 12639 BUD->addShadowDecl(Shadow); in BuildUsingShadowDecl() 12643 Shadow->setInvalidDecl(); in BuildUsingShadowDecl() 12653 return Shadow; in BuildUsingShadowDecl() 12686 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); in HideUsingShadowDecl() 12689 Shadow->getDeclContext()->removeDecl(Shadow); in HideUsingShadowDecl() 12693 S->RemoveDecl(Shadow); in HideUsingShadowDecl() 12698 Shadow->getIntroducer()->removeShadowDecl(Shadow); in HideUsingShadowDecl() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/pci/ |
| H A D | snps,dw-pcie-common.yaml | 26 space, Port Logic Registers (PL), Shadow Config-space Registers, 32 is selected. Note the PCIe CFG-space, PL and Shadow registers are
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Sanitizers.def | 136 // Shadow Call Stack
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 2500 ConstructorUsingShadowDecl *Shadow = nullptr; variable 2505 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() argument 2507 : Shadow(Shadow), BaseCtor(BaseCtor) {} in InheritedConstructor() 2509 explicit operator bool() const { return Shadow; } 2511 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 106 if (Flags & NodeAttrs::Shadow) in operator <<() 1228 uint16_t Flags = RA.Addr->getFlags() | NodeAttrs::Shadow; in getNextShadow() 1238 NA.Addr->setFlags(Flags | NodeAttrs::Shadow); in getNextShadow() 1537 TAP.Addr->setFlags(TAP.Addr->getFlags() | NodeAttrs::Shadow); in linkRefUp()
|