Searched refs:getParent (Results 101 - 125 of 1090) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/
H A DTargetMachine.cpp171 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default;
174 bool IsLocal = shouldAssumeDSOLocal(*GV->getParent(), GV);
203 return TargetTransformInfo(F.getParent()->getDataLayout());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp29 Preheader->getContext(), Name + ".header", Preheader->getParent(), Exit);
31 Header->getParent(), Exit);
33 Header->getParent(), Exit);
H A DCloneFunction.cpp53 Module *TheModule = F ? F->getParent() : nullptr;
144 assert((NewFunc->getParent() == nullptr ||
145 NewFunc->getParent() == OldFunc->getParent()) &&
155 assert((NewFunc->getParent() == nullptr ||
156 NewFunc->getParent() != OldFunc->getParent()) &&
160 assert(NewFunc->getParent() &&
263 auto *NewModule = NewFunc->getParent();
302 F->getName(), F->getParent());
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp142 for (auto &CurMI : *MI.getParent()) {
218 MachineRegisterInfo *MRI = &MBB->getParent()->getRegInfo();
220 MachineInstr *UseInst = UO.getParent();
226 if (UseInst->getParent() != Def->getParent())
302 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
H A DLivePhysRegs.cpp220 const MachineFunction &MF = *MBB.getParent();
231 const MachineFunction &MF = *MBB.getParent();
237 const MachineFunction &MF = *MBB.getParent();
244 const MachineFunction &MF = *MBB.getParent();
255 const MachineFunction &MF = *MBB.getParent();
276 const MachineFunction &MF = *MBB.getParent();
H A DProcessImplicitDefs.cpp84 MachineInstr *UserMI = MO.getParent();
98 MachineBasicBlock::instr_iterator UserE = MI->getParent()->instr_end();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLegacyDivergenceAnalysis.cpp156 BasicBlock *ThisBB = TI->getParent();
221 if (!InfluenceRegion.count(UserInst->getParent())) {
354 print(dbgs(), F.getParent()));
381 F = Arg->getParent();
384 F = I->getParent()->getParent();
H A DMemDerefPrinter.cpp56 const DataLayout &DL = F.getParent()->getDataLayout();
91 const DataLayout &DL = F.getParent()->getDataLayout();
H A DMustExecute.cpp109 Function *Fn = CurLoop->getHeader()->getParent();
142 if (!LHS || LHS->getParent() != CurLoop->getHeader())
257 if (Inst.getParent() == CurLoop->getHeader())
263 Inst.getParent()->getFirstNonPHIOrDbg() == &Inst;
267 return allLoopPathsLeadToBlock(CurLoop, Inst.getParent(), DT);
274 allLoopPathsLeadToBlock(CurLoop, Inst.getParent(), DT);
299 auto *BB = I.getParent();
420 Loop *L = LI.getLoopFor(I.getParent());
433 Loop *L = LI.getLoopFor(I.getParent());
475 if (L.getHeader()->getParent()
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp108 const Module *m = gv->getParent();
122 const Module *m = gv->getParent();
166 const Function *func = arg->getParent();
178 const Function *func = arg->getParent();
190 const Function *func = arg->getParent();
202 const Function *func = arg->getParent();
H A DNVPTXLowerAggrCopies.cpp63 const DataLayout &DL = F.getParent()->getDataLayout();
64 LLVMContext &Context = F.getParent()->getContext();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86RegisterBankInfo.cpp147 const MachineFunction &MF = *MI.getParent()->getParent();
163 const MachineFunction &MF = *MI.getParent()->getParent();
280 const MachineFunction &MF = *MI.getParent()->getParent();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFRegisterInfo.cpp63 MachineBasicBlock &MBB = *MI.getParent();
64 MachineFunction &MF = *MBB.getParent();
H A DBPFPreserveDIType.cpp40 Module *M = F.getParent();
101 BasicBlock *BB = Call->getParent();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZLDCleanup.cpp119 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
139 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h349 while (contains(R->getParent()) && R->getParent() != this)
350 R = R->getParent();
452 for (RegionT *R = getParent(); R != nullptr; R = R->getParent())
477 while (R->getParent() && R->getParent()->getEntry() == exit)
478 R = R->getParent();
740 while (region->getParent())
741 region = region->getParent();
[all...]
H A DLoopNestAnalysis.h145 Function *getParent() const { function
146 return Loops.front()->getHeader()->getParent();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineOutliner.h109 MachineFunction *getMF() const { return MBB->getParent(); }
140 assert(MBB->getParent()->getRegInfo().tracksLiveness() &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kSubtarget.cpp166 return classifyGlobalReference(GV, *GV->getParent());
213 return classifyGlobalFunctionReference(GV, *GV->getParent());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp43 assert(&BB.getParent()->getEntryBlock() == &BB);
79 Module *M = F.getParent();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInstSimplifyPass.cpp111 const DataLayout &DL = F.getParent()->getDataLayout();
139 const DataLayout &DL = F.getParent()->getDataLayout();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUAlwaysInlinePass.cpp67 Function *F = I->getParent()->getParent();
H A DAMDGPUAnnotateUniformValues.cpp113 Function *F = I.getParent()->getParent();
H A DSILowerControlFlow.cpp199 MachineBasicBlock &MBB = *MI.getParent();
218 SimpleIf = !hasKill(MI.getParent(), UseMI->getParent());
294 MachineBasicBlock &MBB = *MI.getParent();
356 MachineBasicBlock &MBB = *MI.getParent();
367 SkipAnding = Def->getParent() == MI.getParent()
400 MachineBasicBlock &MBB = *MI.getParent();
452 MachineBasicBlock &MBB = *MI.getParent();
506 if (!Def || Def->getParent() !
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPRequest.cpp106 const LDAPRequest* LDAPRequest::getParent() const{ function in class:LDAPRequest
107 DEBUG(LDAP_DEBUG_TRACE,"LDAPRequest::getParent()" << endl);
134 parent=parent->getParent();

Completed in 323 milliseconds

1234567891011>>