Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h385 class ConstantAggregate : public Constant {
387 ConstantAggregate(Type *T, ValueTy VT, ArrayRef<Constant *> V);
401 struct OperandTraits<ConstantAggregate>
402 : public VariadicOperandTraits<ConstantAggregate> {};
404 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantAggregate, Constant)
409 class ConstantArray final : public ConstantAggregate {
441 class ConstantStruct final : public ConstantAggregate {
493 class ConstantVector final : public ConstantAggregate {
H A DValue.def84 // ConstantAggregate.
H A DValue.h35 class ConstantAggregate; variable
960 template <> struct isa_impl<ConstantAggregate, Value> {
H A DPatternMatch.h96 const auto *CA = dyn_cast<ConstantAggregate>(V); in check()
100 SmallPtrSet<const ConstantAggregate *, 8> Seen; in check()
101 SmallVector<const ConstantAggregate *, 8> Worklist; in check()
106 auto CheckValue = [&](const ConstantAggregate *CA) { in check()
111 const auto *CA = dyn_cast<ConstantAggregate>(Op); in check()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp179 } else if (isa<ConstantAggregate>(C)) { in remapConstant()
H A DNVPTXAsmPrinter.cpp1886 if (isa<ConstantAggregate>(CPV) || isa<ConstantDataSequential>(CPV)) { in bufferLEByte()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLSteensAliasAnalysis.cpp109 isa<ConstantAggregate>(Val); in canSkipAddingToSets()
H A DValueTracking.cpp3911 if (isa<ConstantAggregate>(C)) { in isBytewiseValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp74 if (!isa<ConstantAggregate>(C)) in isNullOrUndef()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp426 if (const auto *CC = dyn_cast<ConstantAggregate>(this)) in getAggregateElement()
831 if (isa<ConstantAggregate>(this) || isa<ConstantExpr>(this)) { in isManifestConstant()
1242 ConstantAggregate::ConstantAggregate(Type *T, ValueTy VT, in ConstantAggregate() function in ConstantAggregate
1244 : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(), in ConstantAggregate()
1259 : ConstantAggregate(T, ConstantArrayVal, V) { in ConstantArray()
1322 : ConstantAggregate(T, ConstantStructVal, V) { in ConstantStruct()
1364 : ConstantAggregate(T, ConstantVectorVal, V) { in ConstantVector()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp73 if (isa<ConstantAggregate>(C)) { in isSimpleEnoughValueToCommitHelper()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp320 if (auto *CA = dyn_cast<llvm::ConstantAggregate>(C)) { in split()
1516 if (auto agg = dyn_cast<llvm::ConstantAggregate>(init)) { in findLocations()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2549 } else if (isa<ConstantAggregate>(C)) { in writeConstants()