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

/external/llvm/include/llvm/
H A DConstants.h384 // ConstantStruct - Constant Struct Declarations
386 class ConstantStruct : public Constant { class in namespace:llvm
387 friend struct ConstantArrayCreator<ConstantStruct, StructType>;
388 ConstantStruct(const ConstantStruct &); // DO NOT IMPLEMENT
390 ConstantStruct(StructType *T, ArrayRef<Constant *> Val);
392 // ConstantStruct accessors
429 static inline bool classof(const ConstantStruct *) { return true; }
436 struct OperandTraits<ConstantStruct> :
437 public VariadicOperandTraits<ConstantStruct> {
[all...]
/external/llvm/lib/VMCore/
H A DConstants.cpp162 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
784 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
796 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
799 "ConstantStruct::getTypeForElements cannot be called on empty list");
804 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V) function in class:ConstantStruct
806 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
816 // ConstantStruct accessors.
817 Constant *ConstantStruct
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml223 | ConstantStruct Constructor in type:ValueKind/t
H A Dllvm_ocaml.c423 ConstantStruct, enumerator in enum:ValueKind
448 DEFINE_CASE(Val, ConstantStruct);

Completed in 483 milliseconds