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

/external/llvm/include/llvm/IR/
H A DConstants.h376 // ConstantStruct - Constant Struct Declarations
378 class ConstantStruct : public Constant { class in namespace:llvm
379 friend struct ConstantArrayCreator<ConstantStruct, StructType>;
380 ConstantStruct(const ConstantStruct &) LLVM_DELETED_FUNCTION;
382 ConstantStruct(StructType *T, ArrayRef<Constant *> Val);
384 // ConstantStruct accessors
427 struct OperandTraits<ConstantStruct> :
428 public VariadicOperandTraits<ConstantStruct> {
431 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantStruct, Constan
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml270 | ConstantStruct Constructor in type:ValueKind/t
H A Dllvm_ocaml.c488 ConstantStruct, enumerator in enum:ValueKind
515 DEFINE_CASE(Val, ConstantStruct);
/external/llvm/lib/IR/
H A DConstants.cpp206 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
879 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
891 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
894 "ConstantStruct::getTypeForElements cannot be called on empty list");
899 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V) function in class:ConstantStruct
901 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
911 // ConstantStruct accessors.
912 Constant *ConstantStruct
[all...]

Completed in 129 milliseconds