/external/llvm/lib/Target/X86/ |
D | X86InstrArithmetic.td | 584 /// 1. Concatenates together the instruction mnemonic with the appropriate 591 string mnemonic, string args, list<dag> pattern> 595 !strconcat(mnemonic, "{", typeinfo.InstrSuffix, "}\t", args), pattern> { 603 class BinOpRR<bits<8> opcode, string mnemonic, X86TypeInfo typeinfo, 607 mnemonic, "{$src2, $src1|$src1, $src2}", pattern>; 611 class BinOpRR_R<bits<8> opcode, string mnemonic, X86TypeInfo typeinfo, 613 : BinOpRR<opcode, mnemonic, typeinfo, (outs typeinfo.RegClass:$dst), 619 class BinOpRR_F<bits<8> opcode, string mnemonic, X86TypeInfo typeinfo, 621 : BinOpRR<opcode, mnemonic, typeinfo, (outs), 628 class BinOpRR_RF<bits<8> opcode, string mnemonic, X86TypeInfo typeinfo, [all …]
|
D | X86InstrFormats.td | 261 // AVX instructions have a 'v' prefix in the mnemonic 272 // AVX instructions have a 'v' prefix in the mnemonic 283 // AVX instructions have a 'v' prefix in the mnemonic 294 // AVX instructions have a 'v' prefix in the mnemonic
|
D | X86InstrCompiler.td | 551 Format ImmMod, string mnemonic> { 557 !strconcat("lock\n\t", mnemonic, "{b}\t", 563 !strconcat("lock\n\t", mnemonic, "{w}\t", 569 !strconcat("lock\n\t", mnemonic, "{l}\t", 575 !strconcat("lock\n\t", mnemonic, "{q}\t", 582 !strconcat("lock\n\t", mnemonic, "{b}\t", 589 !strconcat("lock\n\t", mnemonic, "{w}\t", 596 !strconcat("lock\n\t", mnemonic, "{l}\t", 603 !strconcat("lock\n\t", mnemonic, "{q}\t", 610 !strconcat("lock\n\t", mnemonic, "{w}\t", [all …]
|
D | X86InstrInfo.td | 1386 /// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
|
/external/openssl/crypto/perlasm/ |
D | ppc-xlate.pl | 140 my $mnemonic = $2; 142 my $opcode = eval("\$$mnemonic"); 145 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
|
D | x86_64-xlate.pl | 175 sub mnemonic { subroutine 227 die if (opcode->mnemonic() ne "mov"); 228 opcode->mnemonic("lea"); 411 if ($nasm && opcode->mnemonic()=~m/^j/) { 680 undef $sz if ($nasm && $opcode->mnemonic() eq "lea");
|
/external/chromium/chrome/browser/resources/ |
D | menu.js | 304 var mnemonic = MNEMONIC_REGEXP.exec(label); 305 if (mnemonic && enableMnemonic) { 306 var c = mnemonic[2].toLowerCase(); 309 if (!mnemonic) { 312 targetDiv.appendChild(document.createTextNode(mnemonic[1])); 314 targetDiv.appendChild(document.createTextNode(mnemonic[3])); 316 targetDiv.childNodes[1].textContent = mnemonic[2]; 318 targetDiv.textContent = mnemonic.splice(1, 3).join('');
|
D | menu.css | 56 .mnemonic-enabled .mnemonic {
|
/external/llvm/utils/Target/ARM/ |
D | analyze-match-table.py | 29 mnemonic = insn[1] 31 flags = mnemonic_flags[mnemonic] = mnemonic_flags.get(mnemonic, set())
|
/external/v8/src/x64/ |
D | disasm-x64.cc | 1011 const char* mnemonic = TwoByteMnemonic(opcode); in TwoByteOpcodeInstruction() local 1048 const char* mnemonic = "?"; in TwoByteOpcodeInstruction() local 1050 mnemonic = "movmskpd"; in TwoByteOpcodeInstruction() 1052 mnemonic = "andpd"; in TwoByteOpcodeInstruction() 1054 mnemonic = "orpd"; in TwoByteOpcodeInstruction() 1056 mnemonic = "xorpd"; in TwoByteOpcodeInstruction() 1058 mnemonic = "ucomisd"; in TwoByteOpcodeInstruction() 1060 mnemonic = "comisd"; in TwoByteOpcodeInstruction() 1064 AppendToBuffer("%s %s,", mnemonic, NameOfXMMRegister(regop)); in TwoByteOpcodeInstruction() 1087 AppendToBuffer("%sd %s,", mnemonic, NameOfXMMRegister(regop)); in TwoByteOpcodeInstruction() [all …]
|
D | lithium-x64.h | 180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument 182 virtual const char* Mnemonic() const { return mnemonic; } \
|
/external/openssl/crypto/sha/asm/ |
D | sha1-sparcv9a.pl | 551 my ($mnemonic,$rs1,$rs2,$rd)=@_; 559 $ref = "$mnemonic\t$rs1,$rs2,$rd"; 561 if ($opf=$visopf{$mnemonic}) { 580 my ($mnemonic,$rs1,$rs2,$rd)=@_; 582 my $ref="$mnemonic\t$rs1,$rs2,$rd";
|
/external/emma/core/java12/com/vladium/util/args/ |
D | OptsParser.java | 847 void setValueMnemonic (final String mnemonic) in setValueMnemonic() argument 849 if (mnemonic == null) throw new IllegalArgumentException ("null input: mnemonic"); in setValueMnemonic() 851 m_valueMnemonic = mnemonic; in setValueMnemonic()
|
/external/llvm/test/MC/ARM/ |
D | thumb2.s | 52 @ Aliases w/ the vanilla 'mov' mnemonic, and explicit alternative selection.
|
/external/llvm/include/llvm/Target/ |
D | Target.td | 728 /// MnemonicAlias - This class allows targets to define assembler mnemonic 729 /// aliases. This should be used when all forms of one mnemonic are accepted 730 /// with a different mnemonic. For example, X86 allows:
|
/external/v8/src/arm/ |
D | lithium-arm.h | 180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument 182 virtual const char* Mnemonic() const { return mnemonic; } \
|
/external/qemu/ |
D | i386-dis.c | 6101 const char *mnemonic; in OP_3DNowSuffix() local 6108 mnemonic = Suffix3DNow[*codep++ & 0xff]; in OP_3DNowSuffix() 6109 if (mnemonic) in OP_3DNowSuffix() 6110 oappend (mnemonic); in OP_3DNowSuffix()
|
/external/v8/src/ia32/ |
D | lithium-ia32.h | 180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument 182 virtual const char* Mnemonic() const { return mnemonic; } \
|
/external/oprofile/events/i386/nehalem/ |
D | unit_masks | 215 0x08 return_near Counts indirect near branches that have a return mnemonic 226 0x08 return_near Counts mispredicted indirect branches that have a rear return mnemonic
|
/external/v8/src/ |
D | hydrogen-instructions.h | 192 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument 194 virtual const char* Mnemonic() const { return mnemonic; } \
|
/external/webkit/Source/WebCore/platform/text/mac/ |
D | character-sets.txt | 1173 Source: RFC 1345, also known as "mnemonic+ascii+38" 1178 Source: RFC 1345, also known as "mnemonic+ascii+8200"
|
/external/zlib/doc/ |
D | rfc1952.txt | 442 with some mnemonic value. Jean-Loup Gailly
|
/external/llvm/lib/Target/ARM/ |
D | ARMInstrInfo.td | 1357 // The 'adr' mnemonic encodes differently if the label is before or after 1990 // mnemonic here. Without it is the cannonical spelling.
|
/external/libffi/ |
D | ChangeLog | 2871 * src/alpha/ffi.c (ffi_prep_closure): Avoid gas-only mnemonic.
|
/external/bison/doc/ |
D | bison.texinfo | 6800 Bison supports both traditional single-letter options and mnemonic long
|