Searched defs:ConstantStruct (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/IR/
H A DConstants.h398 // ConstantStruct - Constant Struct Declarations
400 class ConstantStruct : public Constant { class in namespace:llvm
401 friend struct ConstantAggrKeyType<ConstantStruct>;
402 ConstantStruct(const ConstantStruct &) = delete;
409 ConstantStruct(StructType *T, ArrayRef<Constant *> Val);
411 // ConstantStruct accessors
451 struct OperandTraits<ConstantStruct> :
452 public VariadicOperandTraits<ConstantStruct> {
455 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantStruct, Constan
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml277 | ConstantStruct Constructor in type:ValueKind/t
H A Dllvm_ocaml.c490 ConstantStruct, enumerator in enum:ValueKind
517 DEFINE_CASE(Val, ConstantStruct);
/external/llvm/lib/IR/
H A DConstants.cpp271 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
962 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
974 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
977 "ConstantStruct::getTypeForElements cannot be called on empty list");
982 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V) function in class:ConstantStruct
984 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
994 // ConstantStruct accessors.
995 Constant *ConstantStruct
[all...]

Completed in 455 milliseconds