| /freebsd-12.1/contrib/compiler-rt/lib/esan/ |
| H A D | working_set.cpp | 92 byte *Shadow = (byte *)appToShadow(Addr); in processRangeAccessWorkingSet() local 94 while (I < NumLines && (uptr)Shadow % 4 != 0) { in processRangeAccessWorkingSet() 95 if ((*Shadow & ShadowAccessedVal) != ShadowAccessedVal) in processRangeAccessWorkingSet() 96 *Shadow |= ShadowAccessedVal; in processRangeAccessWorkingSet() 97 ++Shadow; in processRangeAccessWorkingSet() 106 if ((*(u32*)Shadow & WordValue) != WordValue) in processRangeAccessWorkingSet() 107 *(u32*)Shadow |= WordValue; in processRangeAccessWorkingSet() 108 Shadow += 4; in processRangeAccessWorkingSet() 113 if ((*Shadow & ShadowAccessedVal) != ShadowAccessedVal) in processRangeAccessWorkingSet() 114 *Shadow |= ShadowAccessedVal; in processRangeAccessWorkingSet() [all …]
|
| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_update_shadow_word_inl.h | 30 if (Shadow::Addr0AndSizeAreEqual(cur, old)) { 33 if (Shadow::TidsAreEqual(old, cur)) { 50 if (Shadow::TwoRangesIntersect(old, cur, kAccessSize)) { 52 if (Shadow::TidsAreEqual(old, cur)) {
|
| H A D | tsan_rtl.h | 174 friend class Shadow; 191 class Shadow : public FastState { 193 explicit Shadow(u64 x) in Shadow() function 197 explicit Shadow(const FastState &s) in Shadow() function 233 static inline bool TidsAreEqual(const Shadow s1, const Shadow s2) { in TidsAreEqual() 240 bool Addr0AndSizeAreEqual(const Shadow s1, const Shadow s2) { in Addr0AndSizeAreEqual() 245 static ALWAYS_INLINE bool TwoRangesIntersect(Shadow s1, Shadow s2, in TwoRangesIntersect() 322 static bool TwoRangesIntersectSlow(const Shadow s1, const Shadow s2) { in TwoRangesIntersectSlow() 584 void AddMemoryAccess(uptr addr, uptr external_tag, Shadow s, StackTrace stack, 722 u64 *shadow_mem, Shadow cur);
|
| H A D | tsan_rtl.cc | 599 Shadow LoadShadow(u64 *p) { in LoadShadow() 601 return Shadow(raw); in LoadShadow() 617 Shadow cur, Shadow old) { in HandleRace() 635 u64 *shadow_mem, Shadow cur) { in MemoryAccessImpl1() 654 Shadow old(0); in MemoryAccessImpl1() 712 Shadow cur(a); in ContainsSameAccessSlow() 714 Shadow old(LoadShadow(&s[i])); in ContainsSameAccessSlow() 837 Shadow cur(fast_state); in MemoryAccess() 866 u64 *shadow_mem, Shadow cur) { in MemoryAccessImpl() 959 Shadow s(thr->fast_state); in MemoryRangeFreed() [all …]
|
| H A D | tsan_rtl_report.cc | 166 void ScopedReportBase::AddMemoryAccess(uptr addr, uptr external_tag, Shadow s, in AddMemoryAccess() 577 Shadow s0(thr->racy_state[0]); in RaceBetweenAtomicAndFree() 578 Shadow s1(thr->racy_state[1]); in RaceBetweenAtomicAndFree() 603 Shadow s(thr->racy_state[1]); in ReportRace() 612 uptr a0 = addr + Shadow(thr->racy_state[0]).addr0(); in ReportRace() 613 uptr a1 = addr + Shadow(thr->racy_state[1]).addr0(); in ReportRace() 614 uptr e0 = a0 + Shadow(thr->racy_state[0]).size(); in ReportRace() 615 uptr e1 = a1 + Shadow(thr->racy_state[1]).size(); in ReportRace() 666 Shadow s2(thr->racy_state[1]); in ReportRace() 687 Shadow s(thr->racy_state[i]); in ReportRace() [all …]
|
| H A D | tsan_rtl_thread.cc | 378 Shadow cur(fast_state); in MemoryAccessRange() 389 Shadow cur(fast_state); in MemoryAccessRange() 399 Shadow cur(fast_state); in MemoryAccessRange()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | DataFlowSanitizer.cpp | 401 Value *Shadow; member 1007 if (!Shadow) { in getShadow() 1026 Shadow = &*i; in getShadow() 1036 return Shadow; in getShadow() 1094 return CCS.Shadow; in combineShadows() 1122 CCS.Shadow = Phi; in combineShadows() 1138 return CCS.Shadow; in combineShadows() 1152 return Shadow; in combineOperandShadows() 1265 return Shadow; in loadShadow() 1295 Shadow = DFSF.combineShadows(Shadow, PtrShadow, &LI); in visitLoadInst() [all …]
|
| H A D | MemorySanitizer.cpp | 1026 Value *Shadow; member 1231 Value *Shadow = ShadowData.Shadow; in materializeChecks() local 1555 if (!Shadow) { in getShadow() 1560 return Shadow; in getShadow() 1675 assert(Shadow); in insertShadowCheck() 1695 if (!Shadow) return; in insertShadowCheck() 1699 if (!Shadow) return; in insertShadowCheck() 1982 if (!Shadow) in Add() 1986 Shadow = IRB.CreateOr(Shadow, OpShadow, "_msprop"); in Add() 2019 assert(Shadow); in Done() [all …]
|
| H A D | EfficiencySanitizer.cpp | 191 Value *appToShadow(Value *Shadow, IRBuilder<> &IRB); 559 Value *EfficiencySanitizer::appToShadow(Value *Shadow, IRBuilder<> &IRB) { in appToShadow() argument 561 Shadow = IRB.CreateAnd(Shadow, ConstantInt::get(IntptrTy, ShadowParams.ShadowMask)); in appToShadow() 568 Shadow = IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Offs)); in appToShadow() 570 Shadow = IRB.CreateLShr(Shadow, Scale); in appToShadow() 571 return Shadow; in appToShadow()
|
| H A D | HWAddressSanitizer.cpp | 185 Value *memToShadow(Value *Shadow, Type *Ty, IRBuilder<> &IRB); 511 Value *Shadow = IRB.CreateLShr(Mem, Mapping.Scale); in memToShadow() local 513 return Shadow; in memToShadow() 520 return IRB.CreateAdd(Shadow, ShadowBase); in memToShadow()
|
| H A D | AddressSanitizer.cpp | 674 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 1155 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow() argument 1157 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); in memToShadow() 1158 if (Mapping.Offset == 0) return Shadow; in memToShadow() 1166 return IRB.CreateOr(Shadow, ShadowBase); in memToShadow() 1168 return IRB.CreateAdd(Shadow, ShadowBase); in memToShadow()
|
| /freebsd-12.1/contrib/dialog/samples/ |
| H A D | sourcemage.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
|
| 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 | debian.rc | 25 # Shadow dialog boxes? This also turns on color. 34 # Shadow color
|
| /freebsd-12.1/crypto/openssh/ |
| H A D | CREDITS | 10 Andreas Steinmetz <[email protected]> - Shadow password expiry support 90 Thomas Neumann <[email protected]> - Shadow passwords
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 1263 if (auto *Shadow = dyn_cast<UsingShadowDecl>(D)) { in addedMember() local 1264 if (Shadow->getDeclName().getNameKind() in addedMember() 1267 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess()); in addedMember() 2683 const UsingShadowDecl *Shadow = this; in getUsingDecl() local 2685 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow)) in getUsingDecl() 2686 Shadow = NextShadow; in getUsingDecl() 2687 return cast<UsingDecl>(Shadow->UsingOrNextShadow); in getUsingDecl()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 6281 Shadow->setInvalidDecl(); in InheritedConstructorInfo() 9644 PrevShadow = Shadow; in CheckUsingShadowDecl() 9738 UsingShadowDecl *Shadow; in BuildUsingShadowDecl() local 9749 UD->addShadowDecl(Shadow); in BuildUsingShadowDecl() 9753 Shadow->setInvalidDecl(); in BuildUsingShadowDecl() 9763 return Shadow; in BuildUsingShadowDecl() 9796 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); in HideUsingShadowDecl() 9799 Shadow->getDeclContext()->removeDecl(Shadow); in HideUsingShadowDecl() 9803 S->RemoveDecl(Shadow); in HideUsingShadowDecl() 9808 Shadow->getUsingDecl()->removeShadowDecl(Shadow); in HideUsingShadowDecl() [all …]
|
| H A D | SemaLookup.cpp | 3551 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3612 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3623 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3630 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3637 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3646 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3653 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3659 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3762 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local 3789 ShadowContextRAII Shadow(Visited); in LookupVisibleDecls() local [all …]
|
| H A D | SemaAccess.cpp | 1298 if (UsingShadowDecl *Shadow = in IsMicrosoftUsingDeclarationAccessBug() local 1305 << Shadow->getUsingDecl()->getQualifiedNameAsString() in IsMicrosoftUsingDeclarationAccessBug() 1678 } else if (auto *Shadow = in CheckConstructorAccess() local 1682 ObjectClass = Shadow->getParent(); in CheckConstructorAccess()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 2598 for (auto *Shadow : D->shadows()) { in VisitUsingDecl() local 2601 NamedDecl *OldTarget = Shadow->getTargetDecl(); in VisitUsingDecl() 2602 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitUsingDecl() 2608 Shadow->getLocation(), OldTarget, TemplateArgs)); in VisitUsingDecl() 2617 getPreviousDeclForInstantiation(Shadow)) { in VisitUsingDecl() 2619 Shadow->getLocation(), OldPrev, TemplateArgs)); in VisitUsingDecl() 2625 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow); in VisitUsingDecl() 2628 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow); in VisitUsingDecl() 4926 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other)) in isInstantiationOf() local 4927 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx); in isInstantiationOf()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 2459 ConstructorUsingShadowDecl *Shadow = nullptr; 2464 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, 2466 : Shadow(Shadow), BaseCtor(BaseCtor) {} 2468 explicit operator bool() const { return Shadow; } 2470 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; }
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | Sanitizers.def | 121 // Shadow Call Stack
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | RDFGraph.cpp | 106 if (Flags & NodeAttrs::Shadow) in operator <<() 1238 uint16_t Flags = RA.Addr->getFlags() | NodeAttrs::Shadow; in getNextShadow() 1248 NA.Addr->setFlags(Flags | NodeAttrs::Shadow); in getNextShadow() 1258 uint16_t Flags = RA.Addr->getFlags() | NodeAttrs::Shadow; in getNextShadow() 1616 TAP.Addr->setFlags(TAP.Addr->getFlags() | NodeAttrs::Shadow); in linkRefUp()
|