[Hexagon] Better detection of impossible completions to perfect shuffles
[llvm-project.git] / mlir / lib / Conversion / LLVMCommon / StructBuilder.cpp
blobb5b192d0f039925199193a6f44d998b7b8a2d357
1 //===- StructBuilder.cpp - Helper for building LLVM structs --------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "mlir/Conversion/LLVMCommon/StructBuilder.h"
10 #include "mlir/Dialect/LLVMIR/LLVMDialect.h"
11 #include "mlir/Dialect/LLVMIR/LLVMTypes.h"
12 #include "mlir/IR/Builders.h"
14 using namespace mlir;
16 //===----------------------------------------------------------------------===//
17 // StructBuilder implementation
18 //===----------------------------------------------------------------------===//
20 StructBuilder::StructBuilder(Value v) : value(v), structType(v.getType()) {
21 assert(value != nullptr && "value cannot be null");
22 assert(LLVM::isCompatibleType(structType) && "expected llvm type");
25 Value StructBuilder::extractPtr(OpBuilder &builder, Location loc,
26 unsigned pos) {
27 return builder.create<LLVM::ExtractValueOp>(loc, value, pos);
30 void StructBuilder::setPtr(OpBuilder &builder, Location loc, unsigned pos,
31 Value ptr) {
32 value = builder.create<LLVM::InsertValueOp>(loc, value, ptr, pos);