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

1 2

  /external/v8/src/compiler/
opcodes.cc 28 char const* IrOpcode::Mnemonic(Value value) {
35 return os << IrOpcode::Mnemonic(opcode);
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 88 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
98 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
101 void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
205 bool shouldOmitCCOutOperand(StringRef Mnemonic,
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 202 bool parseOperand(OperandVector &, StringRef Mnemonic);
238 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
241 void getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst,
245 void tryConvertingToTwoOperandForm(StringRef Mnemonic, bool CarrySetting,
356 bool shouldOmitCCOutOperand(StringRef Mnemonic, OperandVector &Operands);
357 bool shouldOmitPredicateOperand(StringRef Mnemonic, OperandVector &Operands);
    [all...]
  /external/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 40 // Split the mnemonic stripping conditional code and quantifiers
63 StringRef Mnemonic);
647 return Error(IdLoc, "Unrecognized instruction mnemonic");
978 LanaiAsmParser::parseOperand(OperandVector *Operands, StringRef Mnemonic) {
981 OperandMatchResultTy Result = MatchOperandParserImpl(*Operands, Mnemonic);
1010 // Split the mnemonic into ASM operand, conditional code and instruction
1016 StringRef Mnemonic = Name;
1020 Mnemonic = Name.substr(0, Name.size() - 2);
1025 if (Mnemonic[0] == 'b' ||
1026 (Mnemonic[0] == 's' && !Mnemonic.startswith("sel") &
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 58 // Split the mnemonic stripping conditional code and quantifiers
81 StringRef Mnemonic);
665 return Error(IdLoc, "Unrecognized instruction mnemonic");
1000 LanaiAsmParser::parseOperand(OperandVector *Operands, StringRef Mnemonic) {
1003 OperandMatchResultTy Result = MatchOperandParserImpl(*Operands, Mnemonic);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 387 bool parseOperand(OperandVector &, StringRef Mnemonic);
423 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
426 void getMnemonicAcceptInfo(StringRef Mnemonic, StringRef FullInst,
430 void tryConvertingToTwoOperandForm(StringRef Mnemonic, bool CarrySetting,
561 bool shouldOmitCCOutOperand(StringRef Mnemonic, OperandVector &Operands);
562 bool shouldOmitPredicateOperand(StringRef Mnemonic, OperandVector &Operands);
564 void fixupGNULDRDAlias(StringRef Mnemonic, OperandVector &Operands);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/
X86GenAsmMatcher.inc 928 static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features, unsigned VariantID) {
931 switch (Mnemonic.size()) {
934 switch (Mnemonic[0]) {
937 switch (Mnemonic[1]) {
940 if (Mnemonic[2] != 'w')
942 Mnemonic = "cbtw"; // "cbw"
945 if (Mnemonic[2] != 'q')
947 Mnemonic = "cltd"; // "cdq"
950 if (Mnemonic[2] != 'o')
952 Mnemonic = "cqto"; // "cqo
    [all...]
  /external/v8/src/
field-index.h 102 PrintF("%s\n", representation.Mnemonic());
property.cc 115 os << ":" << representation().Mnemonic();
property-details.h 188 const char* Mnemonic() const;
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/ARM/
ARMGenAsmMatcher.inc 26 StringRef Mnemonic,
597 static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features, unsigned VariantID) {
602 switch (Mnemonic.size()) {
605 switch (Mnemonic[0]) {
608 if (memcmp(Mnemonic.data()+1, "fe", 2) != 0)
610 Mnemonic = "rfeia"; // "rfe"
613 switch (Mnemonic[1]) {
616 if (Mnemonic[2] != 'i')
618 Mnemonic = "smc"; // "smi"
621 if (Mnemonic[2] != 's'
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 84 // 1. A operand match table is built, each entry contains a mnemonic, an
86 // class/mnemonic and target features to be checked while trying to match.
89 // mnemonic and will check if the target feature for this mnemonic also
487 /// Mnemonic - This is the first token of the matched instruction, its
488 /// mnemonic.
489 StringRef Mnemonic;
493 /// This directly corresponds to the tokenized AsmString after the mnemonic is
531 Mnemonic(RHS.Mnemonic), AsmOperands(RHS.AsmOperands)
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 587 return Error(IDLoc, "invalid instruction mnemonic");
611 static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features,
618 // First operand in MCInst is instruction mnemonic.
621 // apply mnemonic aliases, if any, so that we can parse operands correctly.
759 SparcAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) {
761 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
775 if (Mnemonic == "cas" || Mnemonic == "casx" || Mnemonic == "casa") {
816 ResTy = parseSparcAsmOperand(Op, (Mnemonic == "call"))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 617 return Error(IDLoc, "invalid instruction mnemonic");
640 static void applyMnemonicAliases(StringRef &Mnemonic, uint64_t Features,
647 // First operand in MCInst is instruction mnemonic.
650 // apply mnemonic aliases, if any, so that we can parse operands correctly.
746 SparcAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) {
748 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
762 if (Mnemonic == "cas" || Mnemonic == "casx" || Mnemonic == "casa") {
803 ResTy = parseSparcAsmOperand(Op, (Mnemonic == "call"))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 84 // 1. A operand match table is built, each entry contains a mnemonic, an
86 // class/mnemonic and target features to be checked while trying to match.
89 // mnemonic and will check if the target feature for this mnemonic also
517 /// Mnemonic - This is the first token of the matched instruction, its
518 /// mnemonic.
519 StringRef Mnemonic;
523 /// This directly corresponds to the tokenized AsmString after the mnemonic is
561 Mnemonic(RHS.Mnemonic), AsmOperands(RHS.AsmOperands)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmMatcherEmitter.cpp 84 // 1. A operand match table is built, each entry contains a mnemonic, an
86 // class/mnemonic and target features to be checked while trying to match.
89 // mnemonic and will check if the target feature for this mnemonic also
390 /// Mnemonic - This is the first token of the matched instruction, its
391 /// mnemonic.
392 StringRef Mnemonic;
396 /// This directly corresponds to the tokenized AsmString after the mnemonic is
452 // The primary comparator is the instruction mnemonic.
453 if (Mnemonic != RHS.Mnemonic
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/AsmParser/
AVRAsmParser.cpp 578 StringRef Mnemonic, SMLoc NameLoc,
580 Operands.push_back(AVROperand::CreateToken(Mnemonic, NameLoc));
588 auto MatchResult = MatchOperandParserImpl(Operands, Mnemonic);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 78 StringRef Mnemonic; ///< Instruction mnemonic.
292 bool IsSuffix; // Is the operand actually a suffix on the mnemonic.
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 45 StringRef Mnemonic; ///< Instruction mnemonic.
174 bool IsSuffix; // Is the operand actually a suffix on the mnemonic.
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 385 bool parseOperand(OperandVector &Operands, StringRef Mnemonic);
740 StringRef Mnemonic) {
743 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 422 bool parseOperand(OperandVector &Operands, StringRef Mnemonic);
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 314 const char *Mnemonic;
    [all...]
  /external/v8/src/arm64/
instructions-arm64.cc 684 const char* NEONFormatDecoder::Mnemonic(const char* mnemonic) {
686 snprintf(mne_buffer_, sizeof(mne_buffer_), "%s2", mnemonic);
689 return mnemonic;
instructions-arm64.h 663 // Append a "2" to a mnemonic string based of the state of the Q bit.
664 const char* Mnemonic(const char* mnemonic);
  /external/vixl/src/aarch64/
instructions-aarch64.h 651 // Append a "2" to a mnemonic string based of the state of the Q bit.
652 const char* Mnemonic(const char* mnemonic) {
654 snprintf(mne_buffer_, sizeof(mne_buffer_), "%s2", mnemonic);
657 return mnemonic;

Completed in 1127 milliseconds

1 2