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

/external/llvm/lib/Target/
H A DTarget.cpp94 unsigned LLVMElementAtOffset(LLVMTargetDataRef TD, LLVMTypeRef StructTy, argument
96 StructType *STy = unwrap<StructType>(StructTy);
100 unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy, argument
102 StructType *STy = unwrap<StructType>(StructTy);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2201 StructType *StructTy = local
2218 CAList.push_back(ConstantStruct::get(StructTy, CSVals));
2222 Constant *CA = ConstantArray::get(ArrayType::get(StructTy,
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c323 CAMLprim value llvm_struct_element_types(LLVMTypeRef StructTy) { argument
324 value Tys = alloc(LLVMCountStructElementTypes(StructTy), 0);
325 LLVMGetStructElementTypes(StructTy, (LLVMTypeRef *) Tys);
330 CAMLprim value llvm_is_packed(LLVMTypeRef StructTy) { argument
331 return Val_bool(LLVMIsPackedStruct(StructTy));
335 CAMLprim value llvm_is_opaque(LLVMTypeRef StructTy) { argument
336 return Val_bool(LLVMIsOpaqueStruct(StructTy));
/external/llvm/lib/VMCore/
H A DCore.cpp345 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, argument
348 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
351 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) { argument
352 return unwrap<StructType>(StructTy)->getNumElements();
355 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) { argument
356 StructType *Ty = unwrap<StructType>(StructTy);
362 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) { argument
363 return unwrap<StructType>(StructTy)->isPacked();
366 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) { argument
367 return unwrap<StructType>(StructTy)
682 LLVMConstNamedStruct(LLVMTypeRef StructTy, LLVMValueRef *ConstantVals, unsigned Count) argument
[all...]

Completed in 110 milliseconds