Home
last modified time | relevance | path

Searched refs:mnemonic (Results 1 – 25 of 27) sorted by relevance

12

/external/llvm/lib/Target/X86/
DX86InstrArithmetic.td584 /// 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 …]
DX86InstrFormats.td261 // 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
DX86InstrCompiler.td551 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 …]
DX86InstrInfo.td1386 /// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
/external/openssl/crypto/perlasm/
Dppc-xlate.pl140 my $mnemonic = $2;
142 my $opcode = eval("\$$mnemonic");
145 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
Dx86_64-xlate.pl175 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/
Dmenu.js304 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('');
Dmenu.css56 .mnemonic-enabled .mnemonic {
/external/llvm/utils/Target/ARM/
Danalyze-match-table.py29 mnemonic = insn[1]
31 flags = mnemonic_flags[mnemonic] = mnemonic_flags.get(mnemonic, set())
/external/v8/src/x64/
Ddisasm-x64.cc1011 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 …]
Dlithium-x64.h180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument
182 virtual const char* Mnemonic() const { return mnemonic; } \
/external/openssl/crypto/sha/asm/
Dsha1-sparcv9a.pl551 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/
DOptsParser.java847 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/
Dthumb2.s52 @ Aliases w/ the vanilla 'mov' mnemonic, and explicit alternative selection.
/external/llvm/include/llvm/Target/
DTarget.td728 /// 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/
Dlithium-arm.h180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument
182 virtual const char* Mnemonic() const { return mnemonic; } \
/external/qemu/
Di386-dis.c6101 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/
Dlithium-ia32.h180 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument
182 virtual const char* Mnemonic() const { return mnemonic; } \
/external/oprofile/events/i386/nehalem/
Dunit_masks215 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/
Dhydrogen-instructions.h192 #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \ argument
194 virtual const char* Mnemonic() const { return mnemonic; } \
/external/webkit/Source/WebCore/platform/text/mac/
Dcharacter-sets.txt1173 Source: RFC 1345, also known as "mnemonic+ascii+38"
1178 Source: RFC 1345, also known as "mnemonic+ascii+8200"
/external/zlib/doc/
Drfc1952.txt442 with some mnemonic value. Jean-Loup Gailly
/external/llvm/lib/Target/ARM/
DARMInstrInfo.td1357 // The 'adr' mnemonic encodes differently if the label is before or after
1990 // mnemonic here. Without it is the cannonical spelling.
/external/libffi/
DChangeLog2871 * src/alpha/ffi.c (ffi_prep_closure): Avoid gas-only mnemonic.
/external/bison/doc/
Dbison.texinfo6800 Bison supports both traditional single-letter options and mnemonic long

12