Home
last modified time | relevance | path

Searched refs:OpType (Results 1 – 16 of 16) sorted by relevance

/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DAsmWriterInst.h28 enum OpType { enum
53 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {} in OperandType()
56 OpType op = isLiteralTextOperand)
62 OpType op = isMachineInstrOperand)
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.h174 bool opCanUseLiteralConstant(unsigned OpType) const { in opCanUseLiteralConstant() argument
176 return OpType >= AMDGPU::OPERAND_REG_IMM_FIRST && in opCanUseLiteralConstant()
177 OpType <= AMDGPU::OPERAND_REG_IMM_LAST; in opCanUseLiteralConstant()
183 bool opCanUseInlineConstant(unsigned OpType) const { in opCanUseInlineConstant() argument
184 return OpType >= AMDGPU::OPERAND_SRC_FIRST && in opCanUseInlineConstant()
185 OpType <= AMDGPU::OPERAND_SRC_LAST; in opCanUseInlineConstant()
H A DSIInstrInfo.h667 uint8_t OpType = (Size == 8) ? in isInlineConstant() local
669 return isInlineConstant(MO, OpType); in isInlineConstant()
/freebsd-12.1/sys/contrib/dev/acpica/components/dispatcher/
H A Ddswexec.c503 UINT32 OpType; in AcpiDsExecEndOp() local
513 OpType = WalkState->OpInfo->Type; in AcpiDsExecEndOp()
585 Status = AcpiGbl_OpTypeDispatch[OpType] (WalkState); in AcpiDsExecEndOp()
629 switch (OpType) in AcpiDsExecEndOp()
836 OpClass, OpType, Op->Common.AmlOpcode, Op)); in AcpiDsExecEndOp()
/freebsd-12.1/sys/contrib/dev/acpica/components/parser/
H A Dpsopinfo.c312 UINT32 OpType) in AcpiPsGetArgumentCount() argument
315 if (OpType <= AML_TYPE_EXEC_6A_0T_1R) in AcpiPsGetArgumentCount()
317 return (AcpiGbl_ArgumentCount[OpType]); in AcpiPsGetArgumentCount()
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCDwarf.h418 enum OpType { enum
438 OpType Operation;
447 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V) in MCCFIInstruction()
453 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) in MCCFIInstruction()
558 OpType getOperation() const { return Operation; } in getOperation()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp770 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcOperand() local
771 return OpType >= AMDGPU::OPERAND_SRC_FIRST && in isSISrcOperand()
772 OpType <= AMDGPU::OPERAND_SRC_LAST; in isSISrcOperand()
777 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcFPOperand() local
778 switch (OpType) { in isSISrcFPOperand()
794 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcInlinableOperand() local
795 return OpType >= AMDGPU::OPERAND_REG_INLINE_C_FIRST && in isSISrcInlinableOperand()
796 OpType <= AMDGPU::OPERAND_REG_INLINE_C_LAST; in isSISrcInlinableOperand()
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dacdebug.h207 UINT32 OpType))
H A Dacparser.h292 UINT32 OpType);
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DStackMaps.h229 using OpType = enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp };
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZInstrFormats.td39 string OpType = "none";
2439 let OpType = "mem";
2451 let OpType = "mem";
2690 let OpType = "reg";
2699 let OpType = "reg";
2802 let OpType = "mem";
2813 let OpType = "mem";
2826 let OpType = "mem";
3038 let OpType = "reg";
3049 let OpType = "reg";
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h368 bool isExpr(unsigned OpType) const;
H A DHexagonInstrInfo.cpp2118 bool HexagonInstrInfo::isExpr(unsigned OpType) const { in isExpr()
2119 switch(OpType) { in isExpr()
/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp149 Type *OpType) { in simpleLibcall() argument
154 Args.push_back({MI.getOperand(i).getReg(), OpType}); in simpleLibcall()
155 return createLibcall(MIRBuilder, Libcall, {MI.getOperand(0).getReg(), OpType}, in simpleLibcall()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2545 Type *OpType = Op->getType(); in handleBswap() local
2547 F.getParent(), Intrinsic::bswap, makeArrayRef(&OpType, 1)); in handleBswap()
3531 Type *OpType = Operand->getType(); in instrumentAsmArgument() local
3534 if (!OpType->isPointerTy() || !isOutput) { in instrumentAsmArgument()
3538 Type *ElType = OpType->getPointerElementType(); in instrumentAsmArgument()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp1831 QualType OpType) { in getTargetFieldForToUnionCast() argument
1836 if (Ctx.hasSameUnqualifiedType(Field->getType(), OpType) && in getTargetFieldForToUnionCast()