Displaying 4 results from an estimated 4 matches for "_structure".
Did you mean:
structure
2009 Aug 23
3
[LLVMdev] RFC: Supporting ELF symbol aliases via GlobalAlias GEPs
...I am NOT suggesting be committed as-is).
With this patch, the you can compile this:
%0 = type { i32, i32 }
@structure = global %0 { i32 0, i32 1 }
@element1 = alias getelementptr( %0* @structure, i32 0, i32 1)
To this:
.subsections_via_symbols
.section __DATA,__data
.align 3
_structure: ##
@structure
.space 4
.long 1 ## 0x1
.globl _element1
.set _element1, _structure+4
.size _element1, 4
.type _element1, at object
The element1 symbol is an i32* point...
2009 Aug 25
0
[LLVMdev] RFC: Supporting ELF symbol aliases via GlobalAlias GEPs
...h this patch, the you can compile this:
>
> %0 = type { i32, i32 }
> @structure = global %0 { i32 0, i32 1 }
> @element1 = alias getelementptr( %0* @structure, i32 0, i32 1)
>
> To this:
>
> .subsections_via_symbols
> .section __DATA,__data
> .align 3
> _structure: ##
> @structure
> .space 4
> .long 1 ## 0x1
>
> .globl _element1
> .set _element1, _structure+4
> .size _element1, 4
> .type _element1, at object
>
>...
2009 Aug 25
1
[LLVMdev] RFC: Supporting ELF symbol aliases via GlobalAlias GEPs
...gt;>
>> %0 = type { i32, i32 }
>> @structure = global %0 { i32 0, i32 1 }
>> @element1 = alias getelementptr( %0* @structure, i32 0, i32 1)
>>
>> To this:
>>
>> .subsections_via_symbols
>> .section __DATA,__data
>> .align 3
>> _structure: ## @structure
>> .space 4
>> .long 1 ## 0x1
>>
>> .globl _element1
>> .set _element1, _structure+4
>> .size _element1, 4
>> .type _element1, at ob...
2006 Jan 27
5
Before I write this myself, is there already an easier way?
...ble to take the data I''ve painstakingly
defined in my fixture files and slurp it up into my development database
so I can play with my website (locally, in development mode) with the
same data I use in my tests.
In a similar vein, I want to take the table definitions in the
development_structure.sql file and use it to re-define my development
database schema. Unless I''m missing something obvious, when someone
changes the db schema commits it into our subversion repository, I
always have to hand-update my development db to match the new schema (if
I don''t want to toas...