Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DSelectionDAGAddressAnalysisTest.cpp116 bool IsAlias; in TEST_F() local
121 EXPECT_TRUE(IsAlias); in TEST_F()
142 bool IsAlias; in TEST_F() local
173 bool IsAlias; in TEST_F() local
178 EXPECT_FALSE(IsAlias); in TEST_F()
203 bool IsAlias; in TEST_F() local
234 bool IsAlias; in TEST_F() local
260 bool IsAlias; in TEST_F() local
298 bool IsAlias; in TEST_F() local
339 bool IsAlias; in TEST_F() local
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp91 const SelectionDAG &DAG, bool &IsAlias) { in computeAliasing() argument
111 IsAlias = !(*NumBytes0 <= PtrDiff); in computeAliasing()
119 IsAlias = !((PtrDiff + *NumBytes1) <= 0); in computeAliasing()
135 IsAlias = false; in computeAliasing()
150 IsAlias = false; in computeAliasing()
164 IsAlias = false; in computeAliasing()
H A DDAGCombiner.cpp24643 bool IsAlias; in mayAlias() local
24645 DAG, IsAlias)) in mayAlias()
24646 return IsAlias; in mayAlias()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp105 bool &IsAlias, in aliasIsKnownForLoadStore() argument
134 IsAlias = !(Size1 <= PtrDiff); in aliasIsKnownForLoadStore()
142 IsAlias = !((PtrDiff + Size2) <= 0); in aliasIsKnownForLoadStore()
168 IsAlias = false; in aliasIsKnownForLoadStore()
179 IsAlias = false; in aliasIsKnownForLoadStore()
252 bool IsAlias; in instMayAlias() local
253 if (GISelAddressing::aliasIsKnownForLoadStore(MI, Other, IsAlias, MRI)) in instMayAlias()
254 return IsAlias; in instMayAlias()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenSchedule.h47 bool IsAlias; member
55 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false), in CodeGenSchedRW()
58 : Index(Idx), TheDef(Def), IsAlias(false), IsVariadic(false) { in CodeGenSchedRW()
73 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false), in CodeGenSchedRW()
83 assert((!IsAlias || Aliases.empty()) && "Alias cannot have aliases"); in isValid()
H A DAsmMatcherEmitter.cpp584 bool validate(StringRef CommentDelimiter, bool IsAlias) const;
1060 bool MatchableInfo::validate(StringRef CommentDelimiter, bool IsAlias) const { in validate()
1096 if (!IsAlias && TheDef->getValueAsString("AsmMatchConverter").empty() && in validate()
H A DCodeGenSchedule.cpp687 getSchedRW(AliasDef).IsAlias = true; in collectSchedRW()
690 if (RW.IsAlias) in collectSchedRW()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandAlias.cpp199 return GetUnderlyingCommand()->IsAlias(); in IsNestedAlias()
208 if (underlying->IsAlias()) { in Desugar()
H A DCommandInterpreter.cpp1611 if (!alias_cmd_obj || !alias_cmd_obj->IsAlias()) { in BuildAliasResult()
3341 (!is_alias) || (cmd_obj != nullptr && !cmd_obj->IsAlias()); in ResolveCommandImpl()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandAlias.h47 bool IsAlias() override { return true; } in IsAlias() function
H A DCommandObject.h152 virtual bool IsAlias() { return false; } in IsAlias() function
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h85 const SelectionDAG &DAG, bool &IsAlias);
/llvm-project-15.0.7/llvm/lib/MC/
H A DMachObjectWriter.cpp348 bool IsAlias = Symbol != AliasedSymbol; in writeNlist() local
352 if (IsAlias) { in writeNlist()
363 if (IsAlias && Symbol->isUndefined()) in writeNlist()
378 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist()
382 if (IsAlias && Symbol->isUndefined()) in writeNlist()
401 IsAlias && cast<MCSymbolMachO>(OrigSymbol).isAltEntry(); in writeNlist()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/
H A DLoadStoreOpt.h50 bool &IsAlias, MachineRegisterInfo &MRI);
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectHelp.cpp115 if (sub_cmd_obj->IsAlias()) in DoExecute()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h417 IsAlias = 1 << 6, enumerator
/llvm-project-15.0.7/llvm/lib/Support/
H A DYAMLParser.cpp471 bool scanAliasOrAnchor(bool IsAlias);
1506 bool Scanner::scanAliasOrAnchor(bool IsAlias) { in scanAliasOrAnchor() argument
1529 T.Kind = IsAlias ? Token::TK_Alias : Token::TK_Anchor; in scanAliasOrAnchor()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp83 CV_ENUM_CLASS_ENT(LocalSymFlags, IsAlias),
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp42 PUSH_FLAG(LocalSymFlags, IsAlias, Flags, "alias"); in formatLocalSymFlags()
/llvm-project-15.0.7/llvm/lib/AsmParser/
H A DLLParser.cpp967 bool IsAlias; in parseAliasOrIFunc() local
969 IsAlias = true; in parseAliasOrIFunc()
971 IsAlias = false; in parseAliasOrIFunc()
978 if(IsAlias && !GlobalAlias::isValidLinkage(Linkage)) in parseAliasOrIFunc()
1015 if (IsAlias) { in parseAliasOrIFunc()
1053 if (IsAlias) { in parseAliasOrIFunc()
1102 if (IsAlias) in parseAliasOrIFunc()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTImporter.cpp521 ExpectedDecl VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias);
2483 ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) { in VisitTypedefNameDecl() argument
2554 if (IsAlias) { in VisitTypedefNameDecl()
2575 TypeAliasDecl *FromAlias = IsAlias ? cast<TypeAliasDecl>(D) : nullptr; in VisitTypedefNameDecl()