/external/llvm/lib/Target/Mips/ |
D | Mips.td | 29 // Predicates for the instruction group membership such as ISA's and ASE's 154 def FeatureDSP : SubtargetFeature<"dsp", "HasDSP", "true", "Mips DSP ASE">; 156 "Mips DSP-R2 ASE", [FeatureDSP]>; 158 : SubtargetFeature<"dspr3", "HasDSPR3", "true", "Mips DSP-R3 ASE", 161 def FeatureMSA : SubtargetFeature<"msa", "HasMSA", "true", "Mips MSA ASE">; 163 def FeatureEVA : SubtargetFeature<"eva", "HasEVA", "true", "Mips EVA ASE">;
|
D | MipsEVAInstrInfo.td | 1 //===- MipsEVAInstrInfo.td - EVA ASE instructions -*- tablegen ------------*-=// 10 // This file describes Mips EVA ASE instructions.
|
D | MipsRegisterInfo.td | 235 // DSP-ASE control register fields. 253 // MSA-ASE control registers.
|
D | MipsDSPInstrInfo.td | 1 //===- MipsDSPInstrInfo.td - DSP ASE instructions -*- tablegen ------------*-=// 10 // This file describes Mips DSP ASE instructions.
|
D | MipsMSAInstrInfo.td | 1 //===- MipsMSAInstrInfo.td - MSA ASE instructions -*- tablegen ------------*-=// 10 // This file describes Mips MSA ASE instructions.
|
D | MipsInstrInfo.td | 229 // Mips ISA/ASE membership and instruction group membership adjectives.
|
/external/valgrind/ |
D | README.mips | 6 - MIPS DSP ASE on MIPS32 platforms is supported. 51 - You can not compile tests for DSP ASE if you are using gcc (GCC) older
|
D | NEWS | 885 * Support for MIPS DSP ASE on MIPS32 platforms.
|
/external/llvm/test/CodeGen/Mips/mips32r6/ |
D | compatibility.ll | 5 ; DSP: MIPS32r6 is not compatible with the DSP ASE
|
/external/llvm/test/CodeGen/Mips/mips64r6/ |
D | compatibility.ll | 5 ; DSP: MIPS64r6 is not compatible with the DSP ASE
|
/external/clang/lib/Analysis/ |
D | ReachableCode.cpp | 540 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(S); in GetUnreachableLoc() local 541 R1 = ASE->getLHS()->getSourceRange(); in GetUnreachableLoc() 542 R2 = ASE->getRHS()->getSourceRange(); in GetUnreachableLoc() 543 return ASE->getRBracketLoc(); in GetUnreachableLoc()
|
/external/llvm/test/MC/Mips/ |
D | set-push-pop-directives.s | 19 .set nomsa # Test the Features option (ASE).
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 7100 auto *ASE = dyn_cast<ArraySubscriptExpr>(RefExpr); in ActOnOpenMPReductionClause() local 7102 if (!ASE && !OASE && (!DE || !isa<VarDecl>(DE->getDecl()))) { in ActOnOpenMPReductionClause() 7112 } else if (ASE) { in ActOnOpenMPReductionClause() 7113 Type = ASE->getType(); in ActOnOpenMPReductionClause() 7114 auto *Base = ASE->getBase()->IgnoreParenImpCasts(); in ActOnOpenMPReductionClause() 7156 if (!ASE && !OASE) { in ActOnOpenMPReductionClause() 7171 if (!ASE && !OASE) { in ActOnOpenMPReductionClause() 7183 if (!ASE && !OASE) { in ActOnOpenMPReductionClause() 7207 if (!ASE && !OASE) { in ActOnOpenMPReductionClause() 7219 if (!ASE && !OASE) { in ActOnOpenMPReductionClause() [all …]
|
D | SemaChecking.cpp | 8553 const ArraySubscriptExpr *ASE, in CheckArrayAccess() argument 8621 if (ASE) { in CheckArrayAccess() 8623 ASE->getRBracketLoc()); in CheckArrayAccess() 8633 if (ASE) in CheckArrayAccess() 8643 if (!ASE) { in CheckArrayAccess() 8655 while (const ArraySubscriptExpr *ASE = in CheckArrayAccess() local 8657 BaseExpr = ASE->getBase()->IgnoreParenCasts(); in CheckArrayAccess() 8676 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr); in CheckArrayAccess() local 8677 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE, in CheckArrayAccess() 8682 const OMPArraySectionExpr *ASE = cast<OMPArraySectionExpr>(expr); in CheckArrayAccess() local [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | dsp-patterns.ll | 104 ; DSP-ASE doesn't have a v4i8 multiply instruction. Check that multiply node gets expanded.
|
/external/clang/lib/AST/ |
D | Expr.cpp | 3481 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) in refersToVectorElement() local 3482 return ASE->getBase()->getType()->isVectorType(); in refersToVectorElement() 4039 while (auto *ASE = dyn_cast<ArraySubscriptExpr>(Base->IgnoreParens())) { in getBaseOriginalType() local 4040 Base = ASE->getBase(); in getBaseOriginalType()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 498 const ArraySubscriptExpr *ASE; in ProcessInitializer() local 499 while ((ASE = dyn_cast<ArraySubscriptExpr>(Init))) in ProcessInitializer() 500 Init = ASE->getBase()->IgnoreImplicit(); in ProcessInitializer()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 737 } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(IRef)) { in EmitOMPReductionClauseInit() local 738 auto *Base = ASE->getBase()->IgnoreParenImpCasts(); in EmitOMPReductionClauseInit() 743 auto ASELValue = EmitLValue(ASE); in EmitOMPReductionClauseInit()
|
D | CGExpr.cpp | 2800 if (const auto *ASE = dyn_cast<ArraySubscriptExpr>(Array)) in EmitArraySubscriptExpr() local 2801 ArrayLV = EmitArraySubscriptExpr(ASE, /*Accessed*/ true); in EmitArraySubscriptExpr() 2833 if (auto *ASE = in EmitOMPArraySectionExpr() local 2835 Base = EmitOMPArraySectionExpr(ASE, IsLowerBound); in EmitOMPArraySectionExpr()
|
D | CGOpenMPRuntime.cpp | 2523 if (auto *ASE = dyn_cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts())) { in emitTaskCall() local 2525 CGF.EmitOMPArraySectionExpr(ASE, /*LowerBound=*/false); in emitTaskCall()
|
/external/clang/include/clang/Driver/ |
D | Options.td | 1536 HelpText<"Enable MSA ASE (MIPS only)">; 1538 HelpText<"Disable MSA ASE (MIPS only)">;
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8949 const ArraySubscriptExpr *ASE=nullptr,
|
/external/iproute2/doc/ |
D | ip-cref.tex | 2659 On routers using OSPF ASE or, especially, the BGP protocol, routing
|