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.cpp2015 StructType *StructTy = local
2032 CAList.push_back(ConstantStruct::get(StructTy, CSVals));
2036 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.cpp326 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, argument
329 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
332 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) { argument
333 return unwrap<StructType>(StructTy)->getNumElements();
336 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) { argument
337 StructType *Ty = unwrap<StructType>(StructTy);
343 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) { argument
344 return unwrap<StructType>(StructTy)->isPacked();
347 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) { argument
348 return unwrap<StructType>(StructTy)
663 LLVMConstNamedStruct(LLVMTypeRef StructTy, LLVMValueRef *ConstantVals, unsigned Count) argument
[all...]

Completed in 117 milliseconds