forked from OSchip/llvm-project
Revert "[mlir][LLVM] Add support for operand_attrs to InlineAsmOp"
This reverts commit e6ce2c0b8d
.
The test is failing in CI right now.
This commit is contained in:
parent
0a4bbdabe3
commit
7ebd22c504
|
@ -1934,8 +1934,7 @@ def LLVM_InlineAsmOp : LLVM_Op<"inline_asm", []> {
|
|||
UnitAttr:$has_side_effects,
|
||||
UnitAttr:$is_align_stack,
|
||||
OptionalAttr<
|
||||
DefaultValuedAttr<AsmATTOrIntel, "AsmDialect::AD_ATT">>:$asm_dialect,
|
||||
OptionalAttr<ArrayAttr>:$operand_attrs);
|
||||
DefaultValuedAttr<AsmATTOrIntel, "AsmDialect::AD_ATT">>:$asm_dialect);
|
||||
|
||||
let results = (outs Optional<LLVM_Type>:$res);
|
||||
|
||||
|
@ -1943,16 +1942,9 @@ def LLVM_InlineAsmOp : LLVM_Op<"inline_asm", []> {
|
|||
(`has_side_effects` $has_side_effects^)?
|
||||
(`is_align_stack` $is_align_stack^)?
|
||||
(`asm_dialect` `=` $asm_dialect^)?
|
||||
(`operand_attrs` `=` $operand_attrs^)?
|
||||
attr-dict
|
||||
$asm_string `,` $constraints
|
||||
operands `:` functional-type(operands, results)
|
||||
}];
|
||||
|
||||
let extraClassDeclaration = [{
|
||||
static StringRef getElementTypeAttrName() {
|
||||
return "elementtype";
|
||||
}
|
||||
}];
|
||||
}
|
||||
#endif // LLVMIR_OPS
|
||||
|
|
|
@ -37,10 +37,7 @@ Value mlir::x86vector::avx2::inline_asm::mm256BlendPsAsm(
|
|||
SmallVector<Value> asmVals{v1, v2};
|
||||
auto asmStr = llvm::formatv(asmTp, llvm::format_hex(mask, /*width=*/2)).str();
|
||||
auto asmOp = b.create<LLVM::InlineAsmOp>(
|
||||
v1.getType(), /*operands=*/asmVals, /*asm_string=*/asmStr,
|
||||
/*constraints=*/asmCstr, /*has_side_effects=*/false,
|
||||
/*is_align_stack=*/false, /*asm_dialect=*/asmDialectAttr,
|
||||
/*operand_attrs=*/ArrayAttr());
|
||||
v1.getType(), asmVals, asmStr, asmCstr, false, false, asmDialectAttr);
|
||||
return asmOp.getResult(0);
|
||||
}
|
||||
|
||||
|
|
|
@ -330,32 +330,11 @@ convertOperationImpl(Operation &opInst, llvm::IRBuilderBase &builder,
|
|||
inlineAsmOp.getConstraints(),
|
||||
inlineAsmOp.getHasSideEffects(),
|
||||
inlineAsmOp.getIsAlignStack());
|
||||
llvm::CallInst *inst = builder.CreateCall(
|
||||
llvm::Value *result = builder.CreateCall(
|
||||
inlineAsmInst,
|
||||
moduleTranslation.lookupValues(inlineAsmOp.getOperands()));
|
||||
if (auto maybeOperandAttrs = inlineAsmOp.getOperandAttrs()) {
|
||||
llvm::AttributeList attrList;
|
||||
for (const auto &it : llvm::enumerate(*maybeOperandAttrs)) {
|
||||
Attribute attr = it.value();
|
||||
if (!attr)
|
||||
continue;
|
||||
DictionaryAttr dAttr = attr.cast<DictionaryAttr>();
|
||||
TypeAttr tAttr =
|
||||
dAttr.get(InlineAsmOp::getElementTypeAttrName()).cast<TypeAttr>();
|
||||
llvm::AttrBuilder b(moduleTranslation.getLLVMContext());
|
||||
llvm::Type *ty = moduleTranslation.convertType(tAttr.getValue());
|
||||
b.addTypeAttr(llvm::Attribute::ElementType, ty);
|
||||
// shift to account for the returned value (this is always 1 aggregate
|
||||
// value in LLVM).
|
||||
int shift = (opInst.getNumResults() > 0) ? 1 : 0;
|
||||
attrList = attrList.addAttributesAtIndex(
|
||||
moduleTranslation.getLLVMContext(), it.index() + shift, b);
|
||||
}
|
||||
inst->setAttributes(attrList);
|
||||
}
|
||||
|
||||
if (opInst.getNumResults() != 0)
|
||||
moduleTranslation.mapValue(opInst.getResult(0), inst);
|
||||
moduleTranslation.mapValue(opInst.getResult(0), result);
|
||||
return success();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,49 +0,0 @@
|
|||
// RUN: mlir-opt %s -convert-linalg-to-loops -convert-vector-to-scf='full-unroll=true' -lower-affine -convert-scf-to-std -convert-vector-to-llvm -convert-memref-to-llvm -convert-std-to-llvm='use-bare-ptr-memref-call-conv=1' -convert-arith-to-llvm -reconcile-unrealized-casts |\
|
||||
// RUN: mlir-translate --mlir-to-llvmir |\
|
||||
// RUN: %lli --entry-function=entry --mattr="avx512f" | \
|
||||
// RUN: FileCheck %s
|
||||
|
||||
module {
|
||||
|
||||
// printf format string "%i\n", char by char: % i \n 0
|
||||
llvm.mlir.global private @pct_i_newline(dense<[37, 105, 10, 0]> : tensor<4xi8>)
|
||||
: !llvm.array<4xi8>
|
||||
// an array of 16 i32 of values [0..15]
|
||||
llvm.mlir.global private @const16(
|
||||
dense<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]> : tensor<16 x i32>)
|
||||
: !llvm.array<16 x i32>
|
||||
|
||||
// declare void @printf(i8*, ...)
|
||||
llvm.func @printf(!llvm.ptr<i8>, ...)
|
||||
|
||||
llvm.func @entry() {
|
||||
%c0 = llvm.mlir.constant(0 : index) : i64
|
||||
|
||||
%1 = llvm.mlir.addressof @const16 : !llvm.ptr<array<16 x i32>>
|
||||
%ptr = llvm.getelementptr %1[%c0, %c0]
|
||||
: (!llvm.ptr<array<16 x i32>>, i64, i64) -> !llvm.ptr<i32>
|
||||
%ptr2 = llvm.bitcast %ptr : !llvm.ptr<i32> to !llvm.ptr<vector<16xi32>>
|
||||
// operand_attrs of *m operands need to be piped through to LLVM for
|
||||
// verification to pass.
|
||||
%v = llvm.inline_asm
|
||||
asm_dialect = intel
|
||||
operand_attrs = [{ elementtype = vector<16xi32> }]
|
||||
"vmovdqu32 $0, $1", "=x,*m" %ptr2
|
||||
: (!llvm.ptr<vector<16xi32>>) -> vector<16xi32>
|
||||
|
||||
%2 = llvm.mlir.addressof @pct_i_newline : !llvm.ptr<array<4xi8>>
|
||||
%ptrfmt = llvm.getelementptr %2[%c0, %c0]
|
||||
: (!llvm.ptr<array<4xi8>>, i64, i64) -> !llvm.ptr<i8>
|
||||
|
||||
// CHECK: 0
|
||||
%v0 = vector.extract %v[0]: vector<16xi32>
|
||||
llvm.call @printf(%ptrfmt, %v0) : (!llvm.ptr<i8>, i32) -> ()
|
||||
|
||||
// CHECK: 9
|
||||
%v9 = vector.extract %v[9]: vector<16xi32>
|
||||
llvm.call @printf(%ptrfmt, %v9) : (!llvm.ptr<i8>, i32) -> ()
|
||||
|
||||
llvm.return
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue