HomeSort by: relevance | last modified time | path
    Searched defs:OperandType (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.h 115 enum OperandType {
119 inline bool isVpred(OperandType op) {
123 return isVpred(static_cast<OperandType>(op));
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
AsmWriterInst.h 35 } OperandType;
54 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
58 : OperandType(op), Str(LitStr) {}
63 : OperandType(op), MIOpNo(_MIOpNo), Str(Printer), MiModifier(Modifier),
67 if (OperandType != Other.OperandType || Str != Other.Str) return true;
68 if (OperandType == isMachineInstrOperand)
99 Operands.back().OperandType == AsmWriterOperand::isLiteralTextOperand)
CodeGenInstruction.cpp 79 std::string OperandType = "OPERAND_UNKNOWN";
85 OperandType = std::string(Rec->getValueAsString("OperandType"));
90 OperandType = std::string(Rec->getValueAsString("OperandType"));
118 OperandType = "OPERAND_REGISTER";
138 std::string(EncoderMethod), OperandNamespace + "::" + OperandType,
CodeGenInstruction.h 93 /// OperandType - A value from MCOI::OperandType representing the type of
95 std::string OperandType;
123 OperandType(OT), MIOperandNo(MION), MINumOperands(MINO),
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyMCTargetDesc.h 40 enum OperandType {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DelayedDiagnostic.h 163 DD.ForbiddenTypeData.OperandType = type.getAsOpaquePtr();
218 return QualType::getFromOpaquePtr(ForbiddenTypeData.OperandType);
250 void *OperandType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
X86DisassemblerDecoderCommon.h 444 enum OperandType {
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/
M68kDisassembler.cpp 379 bool IsPCRel = Desc.OpInfo[MIOpIdx].OperandType == MCOI::OPERAND_PCREL;
399 bool IsPCRel = Desc.OpInfo[MIOpIdx].OperandType == MCOI::OPERAND_PCREL;
490 enum class OperandType {
496 SmallVector<OperandType, 6> OpType(NumOperands, OperandType::Invalid);
530 assert(((OpType[MIOpIdx] == OperandType::Invalid) ||
531 (OpType[MIOpIdx] == OperandType::Reg)) &&
533 OpType[MIOpIdx] = OperandType::Reg;
543 assert(((OpType[MIOpIdx] == OperandType::Invalid) ||
544 (OpType[MIOpIdx] == OperandType::Imm)) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCInstrDesc.h 56 enum OperandType {
95 uint8_t OperandType;
117 return OperandType >= MCOI::OPERAND_FIRST_GENERIC &&
118 OperandType <= MCOI::OPERAND_LAST_GENERIC;
123 return OperandType - MCOI::OPERAND_FIRST_GENERIC;
127 return OperandType >= MCOI::OPERAND_FIRST_GENERIC_IMM &&
128 OperandType <= MCOI::OPERAND_LAST_GENERIC_IMM;
133 return OperandType - MCOI::OPERAND_FIRST_GENERIC_IMM;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 1713 static const fltSemantics *getOpFltSemantics(uint8_t OperandType) {
1714 switch (OperandType) {
1982 uint8_t OpTy = InstDesc.OpInfo[OpNum].OperandType;
3174 const unsigned OperandType = Desc.OpInfo[OpIdx].OperandType;
3175 if (OperandType == AMDGPU::OPERAND_REG_IMM_INT16 ||
3176 OperandType == AMDGPU::OPERAND_REG_INLINE_C_INT16 ||
3177 OperandType == AMDGPU::OPERAND_REG_INLINE_AC_INT16)
3180 if (OperandType == AMDGPU::OPERAND_REG_INLINE_C_V2INT16 ||
3181 OperandType == AMDGPU::OPERAND_REG_INLINE_AC_V2INT16 |
    [all...]

Completed in 34 milliseconds