Home
last modified time | relevance | path

Searched refs:IsAlias (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp97 const SelectionDAG &DAG, bool &IsAlias) { in computeAliasing() argument
120 IsAlias = !(*NumBytes0 <= PtrDiff); in computeAliasing()
128 IsAlias = !((PtrDiff + *NumBytes1) <= 0); in computeAliasing()
144 IsAlias = false; in computeAliasing()
159 IsAlias = false; in computeAliasing()
173 IsAlias = false; in computeAliasing()
H A DDAGCombiner.cpp27926 bool IsAlias; in mayAlias() local
27928 DAG, IsAlias)) in mayAlias()
27929 return IsAlias; in mayAlias()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp106 bool &IsAlias, in aliasIsKnownForLoadStore() argument
136 IsAlias = !(Size1 <= PtrDiff); in aliasIsKnownForLoadStore()
144 IsAlias = !((PtrDiff + Size2) <= 0); in aliasIsKnownForLoadStore()
170 IsAlias = false; in aliasIsKnownForLoadStore()
181 IsAlias = false; in aliasIsKnownForLoadStore()
254 bool IsAlias; in instMayAlias() local
255 if (GISelAddressing::aliasIsKnownForLoadStore(MI, Other, IsAlias, MRI)) in instMayAlias()
256 return IsAlias; in instMayAlias()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.h54 bool IsAlias; member
62 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false), in CodeGenSchedRW()
65 : Index(Idx), TheDef(Def), IsAlias(false), IsVariadic(false) { in CodeGenSchedRW()
80 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false), in CodeGenSchedRW()
90 assert((!IsAlias || Aliases.empty()) && "Alias cannot have aliases"); in isValid()
H A DAsmMatcherEmitter.cpp585 bool validate(StringRef CommentDelimiter, bool IsAlias) const;
1064 bool MatchableInfo::validate(StringRef CommentDelimiter, bool IsAlias) const { in validate()
1100 if (!IsAlias && TheDef->getValueAsString("AsmMatchConverter").empty() && in validate()
H A DCodeGenSchedule.cpp706 getSchedRW(AliasDef).IsAlias = true; in collectSchedRW()
709 if (RW.IsAlias) in collectSchedRW()
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp202 return GetUnderlyingCommand()->IsAlias(); in IsNestedAlias()
211 if (underlying->IsAlias()) { in Desugar()
H A DCommandInterpreter.cpp1612 if (!alias_cmd_obj || !alias_cmd_obj->IsAlias()) { in BuildAliasResult()
3410 (!is_alias) || (cmd_obj != nullptr && !cmd_obj->IsAlias()); in ResolveCommandImpl()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h47 bool IsAlias() override { return true; } in IsAlias() function
H A DCommandObject.h154 virtual bool IsAlias() { return false; } in IsAlias() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h88 const SelectionDAG &DAG, bool &IsAlias);
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp347 bool IsAlias = Symbol != AliasedSymbol; in writeNlist() local
351 if (IsAlias) { in writeNlist()
362 if (IsAlias && Symbol->isUndefined()) in writeNlist()
377 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist()
381 if (IsAlias && Symbol->isUndefined()) in writeNlist()
400 IsAlias && cast<MCSymbolMachO>(OrigSymbol).isAltEntry(); in writeNlist()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLoadStoreOpt.h64 bool &IsAlias, MachineRegisterInfo &MRI);
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectHelp.cpp115 if (sub_cmd_obj->IsAlias()) in DoExecute()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h417 IsAlias = 1 << 6, enumerator
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp475 bool scanAliasOrAnchor(bool IsAlias);
1524 bool Scanner::scanAliasOrAnchor(bool IsAlias) { in scanAliasOrAnchor() argument
1547 T.Kind = IsAlias ? Token::TK_Alias : Token::TK_Anchor; in scanAliasOrAnchor()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp83 CV_ENUM_CLASS_ENT(LocalSymFlags, IsAlias),
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp43 PUSH_FLAG(LocalSymFlags, IsAlias, Flags, "alias"); in formatLocalSymFlags()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp1091 bool IsAlias; in parseAliasOrIFunc() local
1093 IsAlias = true; in parseAliasOrIFunc()
1095 IsAlias = false; in parseAliasOrIFunc()
1102 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage)) in parseAliasOrIFunc()
1167 if (IsAlias) { in parseAliasOrIFunc()
1216 if (IsAlias) in parseAliasOrIFunc()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp473 ExpectedDecl VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias);
2642 ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) { in VisitTypedefNameDecl() argument
2729 if (IsAlias) { in VisitTypedefNameDecl()
2750 TypeAliasDecl *FromAlias = IsAlias ? cast<TypeAliasDecl>(D) : nullptr; in VisitTypedefNameDecl()