1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
31 * Helper functions for manipulation structures.
33 * @author Jose Fonseca <jfonseca@vmware.com>
37 #include "util/u_debug.h"
38 #include "util/u_memory.h"
40 #include "lp_bld_debug.h"
41 #include "lp_bld_struct.h"
45 lp_build_struct_get_ptr(LLVMBuilderRef builder
,
50 LLVMValueRef indices
[2];
51 LLVMValueRef member_ptr
;
52 indices
[0] = LLVMConstInt(LLVMInt32Type(), 0, 0);
53 indices
[1] = LLVMConstInt(LLVMInt32Type(), member
, 0);
54 member_ptr
= LLVMBuildGEP(builder
, ptr
, indices
, Elements(indices
), "");
55 lp_build_name(member_ptr
, "%s.%s_ptr", LLVMGetValueName(ptr
), name
);
61 lp_build_struct_get(LLVMBuilderRef builder
,
66 LLVMValueRef member_ptr
;
68 member_ptr
= lp_build_struct_get_ptr(builder
, ptr
, member
, name
);
69 res
= LLVMBuildLoad(builder
, member_ptr
, "");
70 lp_build_name(res
, "%s.%s", LLVMGetValueName(ptr
), name
);