Searched refs:Guard (Results 26 - 50 of 65) sorted by relevance

123

/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp190 void emitIfdef(StringRef Guard, raw_ostream &OS);
287 void SearchableTableEmitter::emitIfdef(StringRef Guard, raw_ostream &OS) { argument
288 OS << "#ifdef " << Guard << "\n"; local
289 PreprocessorGuards.insert(std::string(Guard));
821 for (const auto &Guard : PreprocessorGuards)
822 OS << "#undef " << Guard << "\n"; local
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp274 std::unique_lock<sys::Mutex> Guard(Fns.Lock);
282 Guard.unlock();
300 Guard.unlock();
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp192 IRBuilder<>::InsertPointGuard Guard(IRB);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp166 InstCombiner::BuilderTy::InsertPointGuard Guard(Builder);
553 InstCombiner::BuilderTy::InsertPointGuard Guard(IC.Builder);
H A DInstCombineSimplifyDemanded.cpp256 IRBuilderBase::InsertPointGuard Guard(Builder);
398 IRBuilderBase::InsertPointGuard Guard(Builder);
485 IRBuilderBase::InsertPointGuard Guard(Builder);
502 IRBuilderBase::InsertPointGuard Guard(Builder);
H A DInstructionCombining.cpp880 BuilderTy::FastMathFlagGuard Guard(Builder);
2439 IRBuilderBase::InsertPointGuard Guard(Builder);
/openbsd-current/gnu/llvm/llvm/lib/Support/Unix/
H A DSignals.inc293 sys::SmartScopedLock<true> Guard(*SignalHandlerRegistrationMutex);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp281 IRBuilder<>::InsertPointGuard Guard(Builder);
H A DScalarEvolutionExpander.cpp84 SCEVInsertPointGuard Guard(Builder, this);
263 SCEVInsertPointGuard Guard(Builder, this);
603 SCEVInsertPointGuard Guard(Builder, this);
620 SCEVInsertPointGuard Guard(Builder, this);
1291 SCEVInsertPointGuard Guard(Builder, this);
1483 SCEVInsertPointGuard Guard(Builder, this);
1857 SCEVInsertPointGuard Guard(Builder, this);
H A DSimplifyLibCalls.cpp1664 IRBuilderBase::FastMathFlagGuard Guard(B);
1738 IRBuilderBase::FastMathFlagGuard Guard(B);
1777 IRBuilderBase::FastMathFlagGuard Guard(B);
1806 IRBuilderBase::FastMathFlagGuard Guard(B);
2110 IRBuilderBase::FastMathFlagGuard Guard(B);
2254 IRBuilderBase::FastMathFlagGuard Guard(B);
2370 IRBuilderBase::FastMathFlagGuard Guard(B);
2468 IRBuilderBase::FastMathFlagGuard Guard(B);
3572 IRBuilderBase::OperandBundlesGuard Guard(Builder);
3623 IRBuilderBase::InsertPointGuard Guard(Builde
[all...]
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp172 std::lock_guard<std::mutex> Guard(Mutex);
178 std::lock_guard<std::mutex> Guard(Mutex);
185 std::lock_guard<std::mutex> Guard(Mutex);
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp819 GuardInfo() : Guard(nullptr), BitIndex(0) {}
820 llvm::GlobalVariable *Guard; member in struct:__anon555::MicrosoftCXXABI::GuardInfo
2565 Address Guard; member in struct:__anon556::final
2567 ResetGuardBit(Address Guard, unsigned GuardNum) argument
2568 : Guard(Guard), GuardNum(GuardNum) {}
2574 llvm::LoadInst *LI = Builder.CreateLoad(Guard);
2577 Builder.CreateStore(Builder.CreateAnd(LI, Mask), Guard);
2582 llvm::Value *Guard; member in struct:__anon556::final
2583 CallInitThreadAbort(Address Guard) argument
2587 CGF.EmitNounwindRuntimeCall(getInitThreadAbortFn(CGF.CGM), Guard); variable
[all...]
H A DItaniumCXXABI.cpp2323 llvm::GlobalVariable *Guard; member in struct:__anon547::final
2324 CallGuardAbort(llvm::GlobalVariable *Guard) : Guard(Guard) {} argument
2327 CGF.EmitNounwindRuntimeCall(getGuardAbortFn(CGF.CGM, Guard->getType()),
2328 Guard); variable
2364 // Guard variables are 64 bits in the generic ABI and size width on ARM
2851 llvm::GlobalVariable *Guard = new llvm::GlobalVariable( local
2855 Guard->setThreadLocal(true);
2856 Guard
[all...]
/openbsd-current/gnu/llvm/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp589 EvaluatingRecordGuard Guard(&EvaluatingRecord, S);
736 SubstitutionContext Guard(*this, P);
737 Visit(Guard.Substitution);
1168 EvaluatingRecordGuard Guard(&EvaluatingRecord, R);
1187 EvaluatingRecordGuard Guard(&EvaluatingRecord, R);
/openbsd-current/gnu/llvm/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp202 std::unique_lock<std::mutex> Guard{ErrsLock};
208 std::unique_lock<std::mutex> Guard{ErrsLock};
281 std::unique_lock<std::mutex> Guard{LoadedSourceFilesLock};
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp3043 bool JumpThreadingPass::threadGuard(BasicBlock *BB, IntrinsicInst *Guard, argument
3047 Value *GuardCond = Guard->getArgOperand(0);
3074 Instruction *AfterGuard = Guard->getNextNode();
3088 BB, PredUnguardedBlock, Guard, UnguardedMapping, *DTU);
3090 LLVM_DEBUG(dbgs() << "Moved guard " << *Guard << " to block "
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3239 Register Guard;
3294 Guard =
3296 getStackGuard(Guard, *CurBuilder);
3302 Guard = CurBuilder
3312 CurBuilder->buildICmp(CmpInst::ICMP_NE, LLT::scalar(1), Guard, GuardVal);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp430 IRBuilderBase::FastMathFlagGuard Guard(Builder);
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp444 void __sanitizer_cov_trace_pc_guard(uint32_t *Guard) {
/openbsd-current/gnu/usr.bin/gcc/contrib/
H A Dparanoia.cc946 enum Guard { No, Yes }; enum
999 Guard GMult, GDiv, GAddSub;
1374 TstCond (Serious, false, "* lacks a Guard Digit, so 1*X != X");
1393 "Division lacks a Guard Digit, so error can exceed 1 ulp\n"
1406 TstCond (Serious, false, "Division lacks a Guard Digit, so X/1 != X");
1433 "- lacks Guard Digit, so cancellation is obscured");
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp703 // Guard against invalid arguments.
1081 IRBuilderBase::InsertPointGuard Guard(IC.Builder);
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp1060 BuilderTy::InsertPointGuard Guard(Builder);
/openbsd-current/gnu/llvm/clang/tools/clang-linker-wrapper/
H A DClangLinkerWrapper.cpp1054 std::scoped_lock<decltype(ImageMtx)> Guard(ImageMtx);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp1152 IRBuilder<>::InsertPointGuard Guard(Builder);
/openbsd-current/gnu/usr.bin/perl/
H A DMakefile.bsd-wrapper1248 autodie::Scope::Guard 3p lib/autodie/Scope/Guard.pm \

Completed in 247 milliseconds

123