HomeSort by relevance Sort by last modified time
    Searched defs:ConstantStruct (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/
Constants.h 384 // ConstantStruct - Constant Struct Declarations
386 class ConstantStruct : public Constant {
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/
Constants.cpp 162 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)
806 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
816 // ConstantStruct accessors.
817 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V)
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 223 | ConstantStruct
    [all...]
llvm_ocaml.c 423 ConstantStruct,
448 DEFINE_CASE(Val, ConstantStruct);
    [all...]

Completed in 72 milliseconds