HomeSort by: relevance | last modified time | path
    Searched refs:GI (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 102 auto GI = dyn_cast<GetElementPtrInst>(AllocaUse.getUser());
103 if (GI && GI->getPointerOperand() == allocaInst) {
104 GI->setOperand(GI->getPointerOperandIndex(), NewASCToGeneric);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAdjustOpt.cpp 289 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) {
292 for (i = 1, e = GI->getNumOperands(); i != e; ++i) {
293 Value *V = GI->getOperand(i);
300 PassThroughInfo Info(&I, GI, i);
BPFAbstractMemberAccess.cpp 491 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) {
492 if (GI->hasAllZeroIndices())
493 traceGEP(GI, Call, ParentInfo);
522 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) {
523 if (GI->hasAllZeroIndices())
524 traceGEP(GI, Parent, ParentInfo);
552 } else if (auto *GI = dyn_cast<GetElementPtrInst>(Inst)) {
553 if (GI->hasAllZeroIndices())
554 traceGEP(GI, Parent, ParentInfo);
  /src/external/gpl2/groff/font/devlj4/
Makefile 12 ALBB ALBR AOB AOI AOR CB CBI CI CR GB GBI GI GR \
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
GlobalMerge.cpp 297 for (size_t GI = 0, GE = Globals.size(); GI != GE; ++GI) {
298 GlobalVariable *GV = Globals[GI];
347 CreateGlobalSet().Globals.set(GI);
357 if (UsedGlobalSets[UGSIdx].Globals.test(GI)) {
379 NewUGS.Globals.set(GI);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86LoadValueInjectionLoadHardening.cpp 500 [&](MachineBasicBlock *MBB, GraphIter GI, unsigned ParentDepth) {
506 Builder.addEdge(ParentDepth, GI, BeginBB.first);
511 GI = BeginBB.first;
515 Builder.addEdge(LoopDepth, GI, Ref->getSecond());
516 GI = Ref->getSecond();
525 Builder.addEdge(LoopDepth, GI, EndBB.first);
526 GI = EndBB.first;
530 TraverseCFG(Succ, GI, LoopDepth);
  /src/external/gpl2/groff/dist/font/devlj4/generate/
Makefile 53 GB GBI GI GR \
106 GI: $(AUTOFONT)/9nb00066.tfm $(TEXTMAP)
  /src/lib/libc/gen/
unvis.c 205 #define GI(a) ((uint32_t)(a) >> 24)
446 is = GI(*astate); /* index in the string */
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 82 if (IntrinsicInst *GI = dyn_cast<IntrinsicInst>(I)) {
83 assert(GI->getIntrinsicID() == Intrinsic::experimental_guard &&
85 return GI->getArgOperand(0);
98 if (IntrinsicInst *GI = dyn_cast<IntrinsicInst>(I)) {
99 assert(GI->getIntrinsicID() == Intrinsic::experimental_guard &&
101 GI->setArgOperand(0, NewCond);
SimpleLoopUnswitch.cpp 2455 turnGuardIntoBranch(IntrinsicInst *GI, Loop &L,
2459 LLVM_DEBUG(dbgs() << "Turning " << *GI << " into a branch.\n");
2460 BasicBlock *CheckBB = GI->getParent();
2473 SplitBlockAndInsertIfThen(GI->getArgOperand(0), GI, true);
2488 MSSAU->moveAllAfterSpliceBlocks(CheckBB, GuardedBlock, GI);
2490 GI->moveBefore(DeoptBlockTerm);
2491 GI->setArgOperand(0, ConstantInt::getFalse(GI->getContext()));
2508 MemoryDef *MD = cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(GI));
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 175 GroupInfo &GI =
177 GI.Defs.push_back(Group);
181 GI.SubGroups.push_back(
327 const GroupInfo &GI =
329 V.second = GI.SubGroups.size() + GI.DiagsInGroup.size();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionImport.cpp 982 for (auto &GI : ILI.second) {
983 const auto &DS = DefinedGVSummaries.find(GI);
986 SummariesForIndex[GI] = DS->second;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 2513 GuardInfo *GI = nullptr;
2515 GI = &ThreadLocalGuardVariableMap[D.getDeclContext()];
2517 GI = &GuardVariableMap[D.getDeclContext()];
2519 llvm::GlobalVariable *GuardVar = GI ? GI->Guard : nullptr;
2531 GuardNum = GI->BitIndex++;
2566 if (GI && !HasPerVariableGuard)
2567 GI->Guard = GuardVar;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 123 } else if (GetElementPtrInst *GI = dyn_cast<GetElementPtrInst>(U)) {
124 Ptr = GI->getPointerOperand();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 2402 for (const auto &GI : Globals) {
2403 const char *Name = GI.getKeyData();
2404 const DIE *Entity = GI.second;
2418 Asm->OutStreamer->emitBytes(StringRef(Name, GI.getKeyLength() + 1));
CodeViewDebug.cpp 2821 auto GI = ScopeGlobals.find(Scope.getScopeNode());
2823 GI != ScopeGlobals.end() ? GI->second.get() : nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 2871 for (const GlobalIFunc &GI : M->ifuncs())
2872 printIndirectSymbol(&GI);

Completed in 139 milliseconds