Home
last modified time | relevance | path

Searched refs:ConstantAggregate (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h400 class ConstantAggregate : public Constant {
402 ConstantAggregate(Type *T, ValueTy VT, ArrayRef<Constant *> V);
416 struct OperandTraits<ConstantAggregate>
417 : public VariadicOperandTraits<ConstantAggregate> {};
419 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantAggregate, Constant)
424 class ConstantArray final : public ConstantAggregate {
456 class ConstantStruct final : public ConstantAggregate {
508 class ConstantVector final : public ConstantAggregate {
H A DValue.def86 // ConstantAggregate.
H A DValue.h35 class ConstantAggregate; variable
982 template <> struct isa_impl<ConstantAggregate, Value> {
H A DPatternMatch.h112 const auto *CA = dyn_cast<ConstantAggregate>(V); in check()
116 SmallPtrSet<const ConstantAggregate *, 8> Seen; in check()
117 SmallVector<const ConstantAggregate *, 8> Worklist; in check()
122 auto CheckValue = [&](const ConstantAggregate *CA) { in check()
127 const auto *CA = dyn_cast<ConstantAggregate>(Op); in check()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DReplaceConstant.cpp22 return isa<ConstantExpr>(U) || isa<ConstantAggregate>(U); in isExpandableUser()
H A DConstants.cpp436 if (const auto *CC = dyn_cast<ConstantAggregate>(this)) in getAggregateElement()
830 if (isa<ConstantAggregate>(this) || isa<ConstantExpr>(this)) { in isManifestConstant()
1270 ConstantAggregate::ConstantAggregate(Type *T, ValueTy VT, in ConstantAggregate() function in ConstantAggregate
1272 : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(), in ConstantAggregate()
1287 : ConstantAggregate(T, ConstantArrayVal, V) { in ConstantArray()
1351 : ConstantAggregate(T, ConstantStructVal, V) { in ConstantStruct()
1393 : ConstantAggregate(T, ConstantVectorVal, V) { in ConstantVector()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DirectXIRPasses/
H A DPointerTypeAnalysis.cpp152 } else if (auto *CA = dyn_cast<ConstantAggregate>(C)) { in classifyConstantWithOpaquePtr()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp160 } else if (isa<ConstantAggregate>(C)) { in remapConstant()
H A DNVPTXAsmPrinter.cpp1907 if (isa<ConstantAggregate>(CPV) || isa<ConstantDataSequential>(CPV)) { in bufferLEByte()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp72 if (!isa<ConstantAggregate>(C)) in isNullOrUndef()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp71 if (isa<ConstantAggregate>(C)) { in isSimpleEnoughValueToCommitHelper()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerBufferFatPointers.cpp1756 if (isa<ConstantExpr>(Op) || isa<ConstantAggregate>(Op)) in run()
1769 if (isa<ConstantExpr>(Op) || isa<ConstantAggregate>(Op)) in run()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp323 if (auto *CA = dyn_cast<llvm::ConstantAggregate>(C)) { in split()
1679 if (auto agg = dyn_cast<llvm::ConstantAggregate>(init)) { in findLocations()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp1518 if (auto *CA = dyn_cast<ConstantAggregate>(C)) { in processGlobalInitializer()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp677 if (!isa<ConstantAggregate>(Base) && !isa<ConstantDataSequential>(Base)) in getConstantAtOffset()
H A DValueTracking.cpp6044 if (isa<ConstantAggregate>(C)) { in isBytewiseValue()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2776 } else if (isa<ConstantAggregate>(C)) { in writeConstants()