Searched refs:Def (Results 151 - 171 of 171) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3608 MachineBasicBlock::iterator I = CmpInstr, Def = MI;
3634 Def = J;
3635 MI = &*Def;
3657 ? Def.getReverse() /* points to MI */
3795 Def = Sub;
3796 MachineBasicBlock::reverse_iterator InsertI = Def.getReverse(),
H A DX86ISelLowering.cpp4401 MachineInstr *Def = MRI->getVRegDef(VR);
4402 if (!Def)
4405 if (!TII->isLoadFromStackSlot(*Def, FI))
4408 unsigned Opcode = Def->getOpcode();
4411 Def->getOperand(1).isFI()) {
4412 FI = Def->getOperand(1).getIndex();
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstructionSelector.cpp1346 MachineInstr *Def = getDefIgnoringCopies(I.getOperand(0).getReg(), MRI); local
1347 if (!Def)
1349 Register DefDstReg = Def->getOperand(0).getReg();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp5013 const auto *Def = cast<FunctionDecl>(D);
5015 Record.push_back(Def->isInlined());
5016 Record.AddSourceLocation(Def->getInnerLocStart());
5017 Record.AddFunctionDefinition(Def);
H A DASTReader.cpp4058 /// \p Def. Ensure that \p Def is made visible whenever \p MergedDef is made
4060 void ASTReader::mergeDefinitionVisibility(NamedDecl *Def, argument
4062 if (Def->isHidden()) {
4065 Def->setVisibleDespiteOwningModule();
4068 Def, MergedDef->getImportedOwningModule(),
4070 PendingMergedDefinitionsToDeduplicate.insert(Def);
5938 MacroDefinitionRecord *Def = nullptr; local
5944 Def = cast<MacroDefinitionRecord>(
5952 ME = new (PPRec) MacroExpansion(Def, Rang
[all...]
H A DASTReaderDecl.cpp1762 auto *Def = DD.Definition; local
1764 DD.Definition = Def;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h1560 /// Def, so Def should be visible whenever MergedDef is.
1561 void mergeDefinitionVisibility(NamedDecl *Def, NamedDecl *MergedDef);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2389 ObjCInterfaceDecl *Def = ID->getDefinition(); local
2390 if (!Def || !Def->getImplementation()) {
H A DCGObjCMac.cpp3083 if (const ObjCProtocolDecl *Def = PD->getDefinition())
3084 PD = Def;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp3171 if (Decl *Def = FindAndMapDefinition(D, FoundFunction))
3172 return Def;
3191 if (Decl *Def = FindAndMapDefinition(D, FoundFunction))
3192 return Def;
H A DASTContext.cpp5011 if (const ObjCInterfaceDecl *Def = Decl->getDefinition())
5012 Decl = Def;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp4402 if (auto *Def = Enum->getDefinition())
4403 Enum = Def;
5008 if (EnumDecl *Def = Enum->getDefinition())
5009 Enum = Def;
H A DSemaDeclCXX.cpp638 const FunctionDecl *Def; local
648 Old->isDefined(Def) &&
658 Diag(Def->getLocation(), diag::note_previous_definition);
5543 const CXXRecordDecl *Def = RD->getDefinition();
5544 if (!Def || Def->isBeingDefined())
H A DSemaExpr.cpp6082 const FunctionDecl *Def = nullptr; local
6083 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
6084 Proto = Def->getType()->getAs<FunctionProtoType>();
6085 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
6087 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5099 if (ObjCProtocolDecl *Def = PDecl->getDefinition())
5100 PDecl = Def;
H A DRewriteModernObjC.cpp6847 if (ObjCProtocolDecl *Def = PDecl->getDefinition())
6848 PDecl = Def;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1802 bool hasVisibleMergedDefinition(NamedDecl *Def);
1803 bool hasMergedDefinitionInCurrentModule(NamedDecl *Def);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1919 /// Def If non-null, and the type refers to some kind of declaration
1922 bool isIncompleteType(NamedDecl **Def = nullptr) const;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1722 SDNodeInfo::SDNodeInfo(Record *R, const CodeGenHwModes &CGH) : Def(R) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp2554 MachineInstr *Def = MRI->getVRegDef(VR);
2555 if (!Def)
2558 if (!TII->isLoadFromStackSlot(*Def, FI))
10557 MachineOperand Def(MI.getOperand(1));
10559 .add(Def) // Rn_wb
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp10497 Register Def = MI.getOperand(0).getReg(); local
10508 TII->get(AMDGPU::IMPLICIT_DEF), Def);

Completed in 835 milliseconds

1234567