| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGAddressAnalysis.cpp | 97 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 D | DAGCombiner.cpp | 27926 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 D | LoadStoreOpt.cpp | 106 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 D | CodeGenSchedule.h | 54 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 D | AsmMatcherEmitter.cpp | 585 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 D | CodeGenSchedule.cpp | 706 getSchedRW(AliasDef).IsAlias = true; in collectSchedRW() 709 if (RW.IsAlias) in collectSchedRW()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandAlias.cpp | 202 return GetUnderlyingCommand()->IsAlias(); in IsNestedAlias() 211 if (underlying->IsAlias()) { in Desugar()
|
| H A D | CommandInterpreter.cpp | 1612 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 D | CommandAlias.h | 47 bool IsAlias() override { return true; } in IsAlias() function
|
| H A D | CommandObject.h | 154 virtual bool IsAlias() { return false; } in IsAlias() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGAddressAnalysis.h | 88 const SelectionDAG &DAG, bool &IsAlias);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MachObjectWriter.cpp | 347 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 D | LoadStoreOpt.h | 64 bool &IsAlias, MachineRegisterInfo &MRI);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectHelp.cpp | 115 if (sub_cmd_obj->IsAlias()) in DoExecute()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeView.h | 417 IsAlias = 1 << 6, enumerator
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 475 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 D | EnumTables.cpp | 83 CV_ENUM_CLASS_ENT(LocalSymFlags, IsAlias),
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 43 PUSH_FLAG(LocalSymFlags, IsAlias, Flags, "alias"); in formatLocalSymFlags()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 1091 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 D | ASTImporter.cpp | 473 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()
|