Home
last modified time | relevance | path

Searched refs:ASE (Results 1 – 23 of 23) sorted by relevance

/external/llvm/lib/Target/Mips/
DMips.td29 // 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">;
DMipsEVAInstrInfo.td1 //===- MipsEVAInstrInfo.td - EVA ASE instructions -*- tablegen ------------*-=//
10 // This file describes Mips EVA ASE instructions.
DMipsRegisterInfo.td235 // DSP-ASE control register fields.
253 // MSA-ASE control registers.
DMipsDSPInstrInfo.td1 //===- MipsDSPInstrInfo.td - DSP ASE instructions -*- tablegen ------------*-=//
10 // This file describes Mips DSP ASE instructions.
DMipsMSAInstrInfo.td1 //===- MipsMSAInstrInfo.td - MSA ASE instructions -*- tablegen ------------*-=//
10 // This file describes Mips MSA ASE instructions.
DMipsInstrInfo.td229 // Mips ISA/ASE membership and instruction group membership adjectives.
/external/valgrind/
DREADME.mips6 - MIPS DSP ASE on MIPS32 platforms is supported.
51 - You can not compile tests for DSP ASE if you are using gcc (GCC) older
DNEWS885 * Support for MIPS DSP ASE on MIPS32 platforms.
/external/llvm/test/CodeGen/Mips/mips32r6/
Dcompatibility.ll5 ; DSP: MIPS32r6 is not compatible with the DSP ASE
/external/llvm/test/CodeGen/Mips/mips64r6/
Dcompatibility.ll5 ; DSP: MIPS64r6 is not compatible with the DSP ASE
/external/clang/lib/Analysis/
DReachableCode.cpp540 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/
Dset-push-pop-directives.s19 .set nomsa # Test the Features option (ASE).
/external/clang/lib/Sema/
DSemaOpenMP.cpp7100 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 …]
DSemaChecking.cpp8553 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/
Ddsp-patterns.ll104 ; DSP-ASE doesn't have a v4i8 multiply instruction. Check that multiply node gets expanded.
/external/clang/lib/AST/
DExpr.cpp3481 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/
DExprEngine.cpp498 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/
DCGStmtOpenMP.cpp737 } 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()
DCGExpr.cpp2800 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()
DCGOpenMPRuntime.cpp2523 if (auto *ASE = dyn_cast<OMPArraySectionExpr>(E->IgnoreParenImpCasts())) { in emitTaskCall() local
2525 CGF.EmitOMPArraySectionExpr(ASE, /*LowerBound=*/false); in emitTaskCall()
/external/clang/include/clang/Driver/
DOptions.td1536 HelpText<"Enable MSA ASE (MIPS only)">;
1538 HelpText<"Disable MSA ASE (MIPS only)">;
/external/clang/include/clang/Sema/
DSema.h8949 const ArraySubscriptExpr *ASE=nullptr,
/external/iproute2/doc/
Dip-cref.tex2659 On routers using OSPF ASE or, especially, the BGP protocol, routing