HomeSort by relevance Sort by last modified time
    Searched refs:Mnemonic (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/javassist/src/main/javassist/bytecode/
Mnemonic.java 28 public interface Mnemonic {
  /external/smack/src/org/xbill/DNS/
ExtendedFlags.java 13 private static Mnemonic extflags = new Mnemonic("EDNS Flag",
14 Mnemonic.CASE_LOWER);
Opcode.java 30 private static Mnemonic opcodes = new Mnemonic("DNS Opcode",
31 Mnemonic.CASE_UPPER);
Rcode.java 13 private static Mnemonic rcodes = new Mnemonic("DNS Rcode",
14 Mnemonic.CASE_UPPER);
16 private static Mnemonic tsigrcodes = new Mnemonic("TSIG rcode",
17 Mnemonic.CASE_UPPER);
Flags.java 13 private static Mnemonic flags = new Mnemonic("DNS Header Flag",
14 Mnemonic.CASE_LOWER);
DClass.java 35 private static class DClassMnemonic extends Mnemonic {
48 private static Mnemonic classes = new DClassMnemonic();
Section.java 35 private static Mnemonic sections = new Mnemonic("Message Section",
36 Mnemonic.CASE_LOWER);
EDNSOption.java 25 private static Mnemonic codes = new Mnemonic("EDNS Option Codes",
26 Mnemonic.CASE_UPPER);
Mnemonic.java 14 class Mnemonic {
42 * Creates a new Mnemonic table.
43 * @param description A short description of the mnemonic to use when
49 Mnemonic(String description, int wordcase) {
159 addAll(Mnemonic source) {
168 * Gets the text mnemonic corresponding to a numeric value.
170 * @return The corresponding text mnemonic.
185 * Gets the numeric value corresponding to a text mnemonic.
186 * @param str The text mnemonic
KEYRecord.java 46 private static Mnemonic protocols = new Mnemonic("KEY protocol",
47 Mnemonic.CASE_UPPER);
187 private static Mnemonic flags = new Mnemonic("KEY flags",
188 Mnemonic.CASE_UPPER);
CERTRecord.java 53 private static Mnemonic types = new Mnemonic("Certificate type",
54 Mnemonic.CASE_UPPER);
TypeBitmap.java 56 types.add(Mnemonic.toInteger(typecode));
73 types.add(Mnemonic.toInteger(typecode));
144 return types.contains(Mnemonic.toInteger(typecode));
WKSRecord.java 152 private static Mnemonic protocols = new Mnemonic("IP protocol",
153 Mnemonic.CASE_LOWER);
469 private static Mnemonic services = new Mnemonic("TCP/UDP service",
470 Mnemonic.CASE_LOWER);
Type.java 196 private static class TypeMnemonic extends Mnemonic {
209 objects.put(Mnemonic.toInteger(val), proto);
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_wrapper.h 176 ENCODER_DECLARE_EXPORT char* encoder_imm(Mnemonic m, OpndSize size,
180 ENCODER_DECLARE_EXPORT char* encoder_mem(Mnemonic m, OpndSize size,
182 ENCODER_DECLARE_EXPORT char* encoder_reg(Mnemonic m, OpndSize size,
184 ENCODER_DECLARE_EXPORT char* encoder_reg_reg(Mnemonic m, OpndSize size,
187 ENCODER_DECLARE_EXPORT char* encoder_mem_reg(Mnemonic m, OpndSize size,
190 ENCODER_DECLARE_EXPORT char* encoder_mem_scale_reg(Mnemonic m, OpndSize size,
193 ENCODER_DECLARE_EXPORT char* encoder_reg_mem_scale(Mnemonic m, OpndSize size,
197 ENCODER_DECLARE_EXPORT char * encoder_mem_disp_scale_reg(Mnemonic m, OpndSize size,
200 ENCODER_DECLARE_EXPORT char * encoder_movzs_mem_disp_scale_reg(Mnemonic m, OpndSize size,
203 ENCODER_DECLARE_EXPORT char* encoder_reg_mem_disp_scale(Mnemonic m, OpndSize size
    [all...]
dec_base.h 58 * Mnemonic of the instruction.s
60 Mnemonic mn;
108 inline bool is_jcc(Mnemonic mn)
130 static bool try_mn(Mnemonic mn, const unsigned char ** pbuf, Inst * pinst);
encoder.cpp 94 extern const Mnemonic map_of_alu_opcode_2_mnemonic[];
95 extern const Mnemonic map_of_shift_opcode_2_mnemonic[];
123 const Mnemonic map_of_alu_opcode_2_mnemonic[] = {
131 const Mnemonic map_of_shift_opcode_2_mnemonic[] = {
enc_base.h 69 * @param mn - \link Mnemonic mnemonic \endlink of the instruction
73 static char * encode(char * stream, Mnemonic mn, const Operands& opnds);
111 * @brief Returns #MnemonicDesc by the given Mnemonic.
113 static const MnemonicDesc * getMnemonicDesc(Mnemonic mn)
120 * @brief Returns a Mnemonic for the given name.
122 * The lookup is case insensitive, if no mnemonic found for the given
125 static Mnemonic str2mnemonic(const char * mn_name);
128 * @brief Returns a string representation of the given Mnemonic.
130 * If invalid mnemonic passed, then the behavior is unpredictable
    [all...]
enc_wrapper.cpp 142 void printEncoderInst(Mnemonic m, EncoderBase::Operands& opnds) {
159 extern "C" ENCODER_DECLARE_EXPORT char * encoder_imm(Mnemonic m, OpndSize size, int imm, char * stream) {
195 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem(Mnemonic m, OpndSize size,
207 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg(Mnemonic m, OpndSize size,
224 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg_reg(Mnemonic m, OpndSize size,
242 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_reg(Mnemonic m, OpndSize size,
256 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_scale_reg(Mnemonic m, OpndSize size,
270 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg_mem_scale(Mnemonic m, OpndSize size,
285 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_disp_scale_reg(Mnemonic m, OpndSize size,
299 extern "C" ENCODER_DECLARE_EXPORT char * encoder_movzs_mem_disp_scale_reg(Mnemonic m, OpndSize size
    [all...]
encoder.inl 26 extern const Mnemonic map_of_alu_opcode_2_mnemonic[];
27 extern const Mnemonic map_of_shift_opcode_2_mnemonic[];
30 extern const Mnemonic S_map_of_condition_code_2_branch_mnemonic[];
32 extern const Mnemonic U_map_of_condition_code_2_branch_mnemonic[];
44 inline static Mnemonic map_alu(ALU_Opcode alu) {
49 inline static Mnemonic map_shift(Shift_Opcode shc) {
540 return (char*)EncoderBase::encode(stream, (Mnemonic)(Mnemonic_CMOVcc + cc), args);
546 return (char*)EncoderBase::encode(stream, (Mnemonic)(Mnemonic_SETcc + cc), args);
646 Mnemonic m = (Mnemonic)(Mnemonic_Jcc + cond)
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerHelper.cpp 65 //!mnemonic for integer ALU operations
66 const Mnemonic map_of_alu_opcode_2_mnemonic[] = {
75 //!mnemonic for ALU operations in FPU
76 const Mnemonic map_of_fpu_opcode_2_mnemonic[] = {
85 //!mnemonic for SSE 32-bit
86 const Mnemonic map_of_sse_opcode_2_mnemonic[] = {
95 //!mnemonic for SSE 64-bit integer
96 const Mnemonic map_of_64_opcode_2_mnemonic[] = {
237 LowOpLabel* lower_label(Mnemonic m, OpndSize size, int imm, const char* label, bool isLocal) {
242 LowOpLabel* dump_label(Mnemonic m, OpndSize size, int imm
    [all...]
Lower.h 332 Mnemonic opCode;
340 Mnemonic opCode;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 102 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
117 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
120 void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
230 bool shouldOmitCCOutOperand(StringRef Mnemonic,
    [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 130 /// mnemonicIsValid - This returns true if this is a valid mnemonic and false
132 virtual bool mnemonicIsValid(StringRef Mnemonic) = 0;
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 105 StringRef Mnemonic);
164 bool requestsDoubleOperand(StringRef Mnemonic);
684 bool MipsAsmParser::requestsDoubleOperand(StringRef Mnemonic){
686 bool IsDouble = StringSwitch<bool>(Mnemonic.lower())
761 StringRef Mnemonic) {
764 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
958 MipsOperand *Mnemonic = static_cast<MipsOperand*>(Operands[0]);
959 if (Mnemonic->getToken() == "la") {
    [all...]

Completed in 405 milliseconds

1 2 3