| /openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerAlloca.cpp | 99 auto GI = dyn_cast<GetElementPtrInst>(AllocaUse.getUser()); in runOnFunction() local 100 if (GI && GI->getPointerOperand() == allocaInst) { in runOnFunction() 101 GI->setOperand(GI->getPointerOperandIndex(), NewASCToGeneric); in runOnFunction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | CloneModule.cpp | 114 auto *GI = in CloneModule() local 117 GI->copyAttributesFrom(&I); in CloneModule() 118 VMap[&I] = GI; in CloneModule() 197 GlobalIFunc *GI = cast<GlobalIFunc>(VMap[&I]); in CloneModule() local 199 GI->setResolver(MapValue(Resolver, VMap)); in CloneModule()
|
| H A D | ModuleUtils.cpp | 383 for (GlobalIFunc &GI : M.ifuncs()) in lowerGlobalIFuncUsersAsGlobalCtor() 384 AllIFuncs.push_back(&GI); in lowerGlobalIFuncUsersAsGlobalCtor() 419 for (GlobalIFunc *GI : IFuncsToLower) { in lowerGlobalIFuncUsersAsGlobalCtor() 420 Function *ResolvedFunction = GI->getResolverFunction(); in lowerGlobalIFuncUsersAsGlobalCtor() 441 for (User *User : make_early_inc_range(GI->users())) { in lowerGlobalIFuncUsersAsGlobalCtor() 454 UseBuilder.CreatePointerCast(ResolvedTarget, GI->getType()); in lowerGlobalIFuncUsersAsGlobalCtor() 455 UserInst->replaceUsesOfWith(GI, ResolvedCast); in lowerGlobalIFuncUsersAsGlobalCtor() 459 if (GI->use_empty()) in lowerGlobalIFuncUsersAsGlobalCtor() 460 GI->eraseFromParent(); in lowerGlobalIFuncUsersAsGlobalCtor()
|
| H A D | SplitModule.cpp | 94 if (const auto *GI = dyn_cast_or_null<GlobalIFunc>(GO)) in getGVPartitioningRoot() local 95 GO = GI->getResolverFunction(); in getGVPartitioningRoot()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
| H A D | ReduceAliases.cpp | 36 for (GlobalIFunc &GI : Program.ifuncs()) { in extractIFuncsFromModule() 38 IFuncs.push_back(&GI); in extractIFuncsFromModule()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | GlobalMerge.cpp | 298 for (size_t GI = 0, GE = Globals.size(); GI != GE; ++GI) { in doMerge() local 299 GlobalVariable *GV = Globals[GI]; in doMerge() 348 CreateGlobalSet().Globals.set(GI); in doMerge() 358 if (UsedGlobalSets[UGSIdx].Globals.test(GI)) { in doMerge() 380 NewUGS.Globals.set(GI); in doMerge()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUReplaceLDSUseWithPointer.cpp | 406 for (const auto &GI : *ECNode) { in collectAddressTakenFunctions() 407 auto *CGN = GI.second; in collectAddressTakenFunctions() 444 for (const auto &GI : *CGN) { in collectReachableCallees() 445 auto *RCB = cast<CallBase>(*GI.first); in collectReachableCallees() 446 auto *RCGN = GI.second; in collectReachableCallees()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/BPF/ |
| H A D | BPFAdjustOpt.cpp | 355 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) { in avoidSpeculation() local 358 for (i = 1, e = GI->getNumOperands(); i != e; ++i) { in avoidSpeculation() 359 Value *V = GI->getOperand(i); in avoidSpeculation() 366 PassThroughInfo Info(&I, GI, i); in avoidSpeculation()
|
| H A D | BPFAbstractMemberAccess.cpp | 574 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) { in traceAICall() local 575 if (GI->hasAllZeroIndices()) in traceAICall() 576 traceGEP(GI, Call, ParentInfo); in traceAICall() 605 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) { in traceBitCast() local 606 if (GI->hasAllZeroIndices()) in traceBitCast() 607 traceGEP(GI, Parent, ParentInfo); in traceBitCast() 635 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) { in traceGEP() local 636 if (GI->hasAllZeroIndices()) in traceGEP() 637 traceGEP(GI, Parent, ParentInfo); in traceGEP()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86LoadValueInjectionLoadHardening.cpp | 500 [&](MachineBasicBlock *MBB, GraphIter GI, unsigned ParentDepth) { in getGadgetGraph() argument 506 Builder.addEdge(ParentDepth, GI, BeginBB.first); in getGadgetGraph() 511 GI = BeginBB.first; in getGadgetGraph() 515 Builder.addEdge(LoopDepth, GI, Ref->getSecond()); in getGadgetGraph() 516 GI = Ref->getSecond(); in getGadgetGraph() 525 Builder.addEdge(LoopDepth, GI, EndBB.first); in getGadgetGraph() 526 GI = EndBB.first; in getGadgetGraph() 530 TraverseCFG(Succ, GI, LoopDepth); in getGadgetGraph()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | TypeFinder.cpp | 52 for (const auto &GI : M.ifuncs()) in run() local 53 incorporateType(GI.getValueType()); in run()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | GuardWidening.cpp | 83 if (IntrinsicInst *GI = dyn_cast<IntrinsicInst>(I)) { in getCondition() local 84 assert(GI->getIntrinsicID() == Intrinsic::experimental_guard && in getCondition() 86 return GI->getArgOperand(0); in getCondition() 99 if (IntrinsicInst *GI = dyn_cast<IntrinsicInst>(I)) { in setCondition() local 100 assert(GI->getIntrinsicID() == Intrinsic::experimental_guard && in setCondition() 102 GI->setArgOperand(0, NewCond); in setCondition()
|
| H A D | SimpleLoopUnswitch.cpp | 2617 static BranchInst *turnGuardIntoBranch(IntrinsicInst *GI, Loop &L, in turnGuardIntoBranch() argument 2621 LLVM_DEBUG(dbgs() << "Turning " << *GI << " into a branch.\n"); in turnGuardIntoBranch() 2622 BasicBlock *CheckBB = GI->getParent(); in turnGuardIntoBranch() 2635 SplitBlockAndInsertIfThen(GI->getArgOperand(0), GI, true); in turnGuardIntoBranch() 2647 MSSAU->moveAllAfterSpliceBlocks(CheckBB, GuardedBlock, GI); in turnGuardIntoBranch() 2649 GI->moveBefore(DeoptBlockTerm); in turnGuardIntoBranch() 2650 GI->setArgOperand(0, ConstantInt::getFalse(GI->getContext())); in turnGuardIntoBranch() 2667 MemoryDef *MD = cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(GI)); in turnGuardIntoBranch()
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 1182.key | 5 PxzQNXemrVugz3B+WjX791/8jIUEqZiZ1O4tfa37xxWZ/A8liBCOWVhktQh9+9GI
|
| H A D | 2038.key | 9 IYIfzM17ykQM83l2FMqdW6Ldzv9bwNePmN0vV4RLJziODBgSasLUf8ya7/GI+u5v
|
| H A D | 598.key | 18 LadDiX/f08QylXGOrNPRyCj+kEu+8/GI/mCVUKMCgYEAm9+LiNnjSZyPbrExK0rJ
|
| H A D | 374.key | 11 upkqTeCt8QRwNx8OIjbNTssHTnoqQXbOTx8lAw+GI+hZ5wO7jMtml7UQvSesWMgJ
|
| H A D | 1236.key | 22 GI+AbpV+oOukOWRz38FgqZ39Sc4/L7gmuebE0XTmH9dDWirQPu+fjOgMX8hpExKL
|
| H A D | 1176.chain | 11 GI/JrtEDOfgTBPnEHB1+SzKbmYlJK9Yn0rYG1DWXjMiQCjzUesrKcdtQgIfETFNc
|
| H A D | 240.chain | 13 GI+rRWX0RerzYctolchkE5TTLq9kwskwbhZZstr14AR0TsKGXsKqmvDtbzJjKMUc
|
| H A D | 3318.chain | 16 GI+zAgMBAAGjEzARMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEB
|
| H A D | 1078.chain | 44 8Jsj9+v/lmOyeAgLsSf73+NW0/GI/qztFhDdMumfYEjZa4sB6y76p/meBlO3maNt
|
| H A D | 2341.chain | 19 nuevbxXSq9MkoxmGHC42Fhb4vIHahZGt4LPxNxdOXmn244kB3zDiKO72QNpRR/GI
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | ClangDiagnosticsEmitter.cpp | 176 GroupInfo &GI = in groupDiagnostics() local 178 GI.GroupName = Group->getName(); in groupDiagnostics() 179 GI.Defs.push_back(Group); in groupDiagnostics() 183 GI.SubGroups.push_back( in groupDiagnostics() 330 const GroupInfo &GI = in groupInPedantic() local 332 V.second = GI.SubGroups.size() + GI.DiagsInGroup.size(); in groupInPedantic()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
| H A D | ValueMapper.h | 187 void scheduleMapGlobalIFunc(GlobalIFunc &GI, Constant &Resolver,
|