Home
last modified time | relevance | path

Searched refs:SimpleOp (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVInstrInfo.td86 class SimpleOp<string name, bits<16> opCode>: Op<opCode, (outs), (ins), name>;
90 def OpNop: SimpleOp<"OpNop", 0>;
593 def OpKill: SimpleOp<"OpKill", 252>;
594 def OpReturn: SimpleOp<"OpReturn", 253>;
596 def OpUnreachable: SimpleOp<"OpUnreachable", 255>;
649 def OpEmitVertex: SimpleOp<"OpEmitVertex", 218>;
650 def OpEndPrimitive: SimpleOp<"OpEndPrimitive", 219>;
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInlineCost.cpp1310 if (Constant *SimpleOp = SimplifiedValues.lookup(GTI.getOperand())) in accumulateGEPOffset() local
1311 OpC = dyn_cast<ConstantInt>(SimpleOp); in accumulateGEPOffset()
1338 if (Constant *SimpleOp = SimplifiedValues.lookup(Op)) in isGEPFree() local
1339 Operands.push_back(SimpleOp); in isGEPFree()
/llvm-project-15.0.7/mlir/test/mlir-tblgen/
H A Dop-python-bindings.td477 // CHECK: class SimpleOp(_ods_ir.OpView):
479 def SimpleOp : TestOp<"simple"> {