| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | ReachableCode.cpp | 220 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(S); in GetUnreachableLoc() local 221 R1 = ASE->getLHS()->getSourceRange(); in GetUnreachableLoc() 222 R2 = ASE->getRHS()->getSourceRange(); in GetUnreachableLoc() 223 return ASE->getRBracketLoc(); in GetUnreachableLoc()
|
| D | ThreadSafety.cpp | 420 } else if (const ArraySubscriptExpr *ASE = in buildSExpr() local 423 unsigned Sz = buildSExpr(ASE->getBase(), CallCtx); in buildSExpr() 424 Sz += buildSExpr(ASE->getIdx(), CallCtx); in buildSExpr()
|
| /freebsd-9-stable/contrib/llvm/lib/Target/Mips/ |
| D | Mips.td | 77 def FeatureDSP : SubtargetFeature<"dsp", "HasDSP", "true", "Mips DSP ASE">; 79 "Mips DSP-R2 ASE", [FeatureDSP]>; 81 def FeatureMSA : SubtargetFeature<"msa", "HasMSA", "true", "Mips MSA ASE">;
|
| D | MipsRegisterInfo.td | 221 // DSP-ASE control register fields. 239 // 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.
|
| /freebsd-9-stable/contrib/gcc/config/mips/ |
| D | mips-dsp.md | 9 ;; This mode macro allows si, v2hi, v4qi for all possible modes in DSP ASE. 35 ;; MIPS DSP ASE Revision 0.98 3/24/2005 36 ;; Table 2-1. MIPS DSP ASE Instructions: Arithmetic 295 ;; Table 2-2. MIPS DSP ASE Instructions: Shift 398 ;; Table 2-3. MIPS DSP ASE Instructions: Multiply 660 ;; Table 2-4. MIPS DSP ASE Instructions: General Bit/Manipulation 713 ;; Table 2-5. MIPS DSP ASE Instructions: Compare-Pick 801 ;; Table 2-6. MIPS DSP ASE Instructions: Accumulator and DSPControl Access 1009 ;; Table 2-7. MIPS DSP ASE Instructions: Indexed-Load 1045 ;; Table 2-8. MIPS DSP ASE Instructions: Branch
|
| D | mips.md | 79 ;; MIPS DSP ASE Revision 0.98 3/24/2005
|
| /freebsd-9-stable/contrib/binutils/gas/doc/ |
| D | c-mips.texi | 33 * MIPS ASE instruction generation overrides:: Directives to control 34 generation of MIPS ASE instructions 517 @node MIPS ASE instruction generation overrides 518 @section Directives to control generation of MIPS ASE instructions
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaChecking.cpp | 6341 const ArraySubscriptExpr *ASE, in CheckArrayAccess() argument 6409 if (ASE) { in CheckArrayAccess() 6411 ASE->getRBracketLoc()); in CheckArrayAccess() 6421 if (ASE) in CheckArrayAccess() 6431 if (!ASE) { in CheckArrayAccess() 6443 while (const ArraySubscriptExpr *ASE = in CheckArrayAccess() local 6445 BaseExpr = ASE->getBase()->IgnoreParenCasts(); in CheckArrayAccess() 6464 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr); in CheckArrayAccess() local 6465 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE, in CheckArrayAccess()
|
| /freebsd-9-stable/contrib/binutils/include/opcode/ |
| D | ChangeLog | 310 (INSN_MT): New define for MT ASE. 321 (INSN_DSP): New define for DSP ASE.
|
| D | ChangeLog-9103 | 401 (OPCODE_IS_MEMBER): Adjust comments to indicate that ASE bit masks
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | ExprEngine.cpp | 478 const ArraySubscriptExpr *ASE; in ProcessInitializer() local 479 while ((ASE = dyn_cast<ArraySubscriptExpr>(Init))) in ProcessInitializer() 480 Init = ASE->getBase()->IgnoreImplicit(); in ProcessInitializer()
|
| /freebsd-9-stable/contrib/binutils/gas/ |
| D | ChangeLog-2006 | 261 34k always has DSP ASE. 1412 (mips_cpu_info): Change to use combined ASE/IS_ISA flag. 1417 of ISA/ASE/ABI option combinations. 1419 .set {g,f}p={32,64,default}. Better sanity checking for .set ASE 1424 (mips_cpu_info_table): Add ASE flags for CPUs with mandatory ASE 1430 to ASE page. Use @code for .set FOO examples.
|
| D | ChangeLog | 921 ISA_SUPPORTS_DSPR2_ASE, MIPS_CPU_ASE_DSPR2): Add DSP R2 ASE support.
|
| D | ChangeLog-0203 | 5451 * config/tc-mips.c (mips_opts): Fix comment, all ASE fields are set 5598 (mips_elf_final_processing): Set MDMX ASE ELF header flag if 6238 MIPS-3D ASE ELF header flag should be set, when one exists.
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | Expr.cpp | 3254 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) in refersToVectorElement() local 3255 return ASE->getBase()->getType()->isVectorType(); in refersToVectorElement()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CGExpr.cpp | 2318 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(Array)) in EmitArraySubscriptExpr() local 2319 ArrayLV = EmitArraySubscriptExpr(ASE, /*Accessed*/ true); in EmitArraySubscriptExpr()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Driver/ |
| D | Options.td | 1137 HelpText<"Enable MSA ASE (MIPS only)">; 1139 HelpText<"Disable MSA ASE (MIPS only)">;
|
| /freebsd-9-stable/contrib/binutils/binutils/ |
| D | ChangeLog-0001 | 25 ASE extensions. More robust code for ISA checking. Ignore empty fields
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/ |
| D | Sema.h | 7810 const ArraySubscriptExpr *ASE=0,
|
| /freebsd-9-stable/contrib/binutils/bfd/ |
| D | ChangeLog-0203 | 7325 * elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Merge ASE 9368 MIPS-16 ASE flags are set, print something to indicate that.
|
| /freebsd-9-stable/contrib/gcc/doc/ |
| D | invoke.texi | 10521 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@. 10639 Use (do not use) the MIPS DSP ASE. @xref{MIPS DSP Built-in Functions}. 10654 Use (do not use) the MIPS-3D ASE@. @xref{MIPS-3D Built-in Functions}.
|
| D | extend.texi | 7417 The MIPS DSP Application-Specific Extension (ASE) includes new 7771 The MIPS-3D Application-Specific Extension (ASE) includes additional
|
| /freebsd-9-stable/contrib/gcc/ |
| D | ChangeLog-2005 | 14928 indicating MIPS16e ASE is used if targetting for MIPS32 or MIPS64.
|