Home
last modified time | relevance | path

Searched defs:Shadow (Results 1 – 22 of 22) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
H A Dtsan_shadow_test.cc19 TEST(Shadow, FastState) { in TEST() argument
49 TEST(Shadow, Mapping) { in TEST() argument
64 TEST(Shadow, Celling) { in TEST() argument
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_shadow.h104 explicit Shadow(u64 x) : FastState(x) {} in Shadow() function
106 explicit Shadow(const FastState &s) : FastState(s.x_) { ClearHistorySize(); } in Shadow() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp589 Value *Shadow; member
953 Value *Shadow, SmallVector<unsigned, 4> &Indices, Type *SubShadowTy, in expandFromPrimitiveShadowRecursive()
997 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow() local
1007 Value *DFSanFunction::collapseAggregateShadow(AggregateType *AT, Value *Shadow, in collapseAggregateShadow()
1023 Value *DFSanFunction::collapseToPrimitiveShadow(Value *Shadow, in collapseToPrimitiveShadow()
1035 Value *DFSanFunction::collapseToPrimitiveShadow(Value *Shadow, in collapseToPrimitiveShadow()
1267 Value *Shadow = in getOrBuildTrampolineFunction() local
1823 Value *&Shadow = ValShadowMap[V]; in getShadow() local
1850 void DFSanFunction::setShadow(Instruction *I, Value *Shadow) { in setShadow()
2010 Value *Shadow = getShadow(Inst->getOperand(0)); in combineOperandShadows() local
[all …]
H A DMemorySanitizer.cpp1069 Value *Shadow; member
1201 Value *Shadow = SI->isAtomic() ? getCleanShadow(Val) : getShadow(Val); in materializeStores() local
1275 Value *Shadow = ShadowData.Shadow; in materializeChecks() local
1656 Value *Shadow = ShadowMap[V]; in getShadow() local
1808 Value *Shadow, *Origin; in insertShadowCheck() local
2127 Value *Shadow = nullptr; member in __anon03c9fd4e0811::MemorySanitizerVisitor::Combiner
2463 Value *Shadow = IRB.CreateICmpSLT(getShadow(op), getCleanShadow(op), in handleSignedRelationalComparison() local
2583 Value *Shadow = getShadow(&I, 1); in handleVectorStoreIntrinsic() local
3070 Value *Shadow = IRB.CreateAlignedLoad(Ty, ShadowPtr, Alignment, "_ldmxcsr"); in handleLdmxcsr() local
3083 Value *Shadow = getShadow(V); in handleMaskedStore() local
[all …]
H A DHWAddressSanitizer.cpp726 Value *Shadow = IRB.CreateLShr(Mem, Mapping.Scale); in memToShadow() local
761 Value *Shadow = memToShadow(AddrLong, IRB); in instrumentMemAccessInline() local
H A DMemProfiler.cpp296 Value *MemProfiler::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow()
H A DAddressSanitizer.cpp1338 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { in memToShadow()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLookup.cpp3774 ShadowContextRAII Shadow(Visited); in lookupVisibleDecls() local
3785 ShadowContextRAII Shadow(Visited); in lookupVisibleDecls() local
3855 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3915 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3925 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3932 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3939 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3947 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3953 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
3959 ShadowContextRAII Shadow(Visited); in lookupInDeclContext() local
[all …]
H A DSemaAccess.cpp1310 if (UsingShadowDecl *Shadow = in IsMicrosoftUsingDeclarationAccessBug() local
1694 } else if (auto *Shadow = in CheckConstructorAccess() local
H A DSemaDeclCXX.cpp6999 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo()
11724 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) in CheckUsingShadowDecl() local
11819 UsingShadowDecl *Shadow; in BuildUsingShadowDecl() local
11874 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { in HideUsingShadowDecl()
13132 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor()
13241 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() local
15095 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr() local
H A DSemaDecl.cpp3230 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) { in MergeFunctionDecl() local
4050 if (auto *Shadow = in MergeVarDecl() local
4057 if (auto *Shadow = in MergeVarDecl() local
7720 for (const auto &Shadow : LSI->ShadowingDecls) { in DiagnoseShadowingLambdaDecls() local
15910 if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) { in ActOnTag() local
H A DSemaTemplateInstantiateDecl.cpp3054 for (auto *Shadow : D->shadows()) { in VisitUsingDecl() local
5721 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other)) in isInstantiationOf() local
H A DSemaOverload.cpp6373 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl()); in AddOverloadCandidate() local
10133 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote() local
H A DSemaInit.cpp6549 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization() local
H A DSemaTemplate.cpp1864 if (auto *Shadow = dyn_cast_or_null<UsingShadowDecl>( in CheckClassTemplate() local
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_rtl.h189 explicit Shadow(u64 x) in Shadow() function
193 explicit Shadow(const FastState &s) in Shadow() function
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_rtl.h193 explicit Shadow(u64 x) in Shadow() function
197 explicit Shadow(const FastState &s) in Shadow() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFGraph.h284 Shadow = 0x0001 << 5, // 0000001, Has extra reaching defs. enumerator
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclPrinter.cpp1601 for (const auto *Shadow : D->shadows()) { in VisitUsingDecl() local
H A DDeclCXX.cpp1364 if (auto *Shadow = dyn_cast<UsingShadowDecl>(D)) { in addedMember() local
3005 const UsingShadowDecl *Shadow = this; in getUsingDecl() local
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2375 ConstructorUsingShadowDecl *Shadow = nullptr; variable
2380 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1985 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl() local