Searched refs:ConstantAggregate (Results 1 – 11 of 11) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | Constants.h | 368 class ConstantAggregate : public Constant { 370 ConstantAggregate(CompositeType *T, ValueTy VT, ArrayRef<Constant *> V); 384 struct OperandTraits<ConstantAggregate> 385 : public VariadicOperandTraits<ConstantAggregate> {}; 387 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantAggregate, Constant) 392 class ConstantArray final : public ConstantAggregate { 423 class ConstantStruct final : public ConstantAggregate { 470 class ConstantVector final : public ConstantAggregate {
|
D | Value.def | 68 // ConstantAggregate.
|
D | Value.h | 30 class ConstantAggregate; variable 713 template <> struct isa_impl<ConstantAggregate, Value> {
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Value.def | 68 // ConstantAggregate.
|
D | Value.h | 32 class ConstantAggregate; variable 723 template <> struct isa_impl<ConstantAggregate, Value> {
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 266 if (const ConstantAggregate *CC = dyn_cast<ConstantAggregate>(this)) in getAggregateElement() 871 ConstantAggregate::ConstantAggregate(CompositeType *T, ValueTy VT, in ConstantAggregate() function in ConstantAggregate 873 : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(), in ConstantAggregate() 887 : ConstantAggregate(T, ConstantArrayVal, V) { in ConstantArray() 947 : ConstantAggregate(T, ConstantStructVal, V) { in ConstantStruct() 992 : ConstantAggregate(T, ConstantVectorVal, V) { in ConstantVector()
|
/external/llvm/lib/Analysis/ |
D | CFLSteensAliasAnalysis.cpp | 121 isa<ConstantAggregate>(Val); in canSkipAddingToSets()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 230 } else if (isa<ConstantAggregate>(C)) { in remapConstant()
|
D | NVPTXAsmPrinter.cpp | 1913 if (isa<ConstantAggregate>(CPV) || isa<ConstantDataSequential>(CPV)) { in bufferLEByte()
|
/external/llvm/lib/Transforms/Utils/ |
D | Evaluator.cpp | 59 if (isa<ConstantAggregate>(C)) { in isSimpleEnoughValueToCommitHelper()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 2128 } else if (isa<ConstantAggregate>(C)) { in writeConstants()
|