Displaying 13 results from an estimated 13 matches for "poiter".
Did you mean:
pointer
2004 Mar 31
2
[LLVMdev] Function pointers
Hello out there!
I am trying to build a table of 2 function poiters by using an array:
%kernel = alloca [ 2 x int ()* ]
I try to access the first pointer to be able to store location of my first function like this:
%function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0
store int ()* %function_1, int ()* %function_pointer_1
But, I get the...
2004 Mar 31
0
[LLVMdev] Function pointers
On Wed, 31 Mar 2004, Anders Alexandersson wrote:
> Hello out there!
>
> I am trying to build a table of 2 function poiters by using an array:
>
> %kernel = alloca [ 2 x int ()* ]
>
> I try to access the first pointer to be able to store location of my first function like this:
>
> %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0
>
> store int ()* %function_1, int ()*...
2004 Apr 01
1
[LLVMdev] Function pointers
...m: "Chris Lattner" <sabre at nondot.org>
To: <llvmdev at cs.uiuc.edu>
Sent: Wednesday, March 31, 2004 5:49 PM
Subject: Re: [LLVMdev] Function pointers
On Wed, 31 Mar 2004, Anders Alexandersson wrote:
> Hello out there!
>
> I am trying to build a table of 2 function poiters by using an array:
>
> %kernel = alloca [ 2 x int ()* ]
>
> I try to access the first pointer to be able to store location of my first
function like this:
>
> %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long
0
>
> store int ()* %function_1, int ()*...
2016 Dec 28
1
llvm pass
...<http://llvm.org/docs/doxygen/html/classllvm_1_1Twine.html> Name
<http://llvm.org/docs/doxygen/html/SymbolizableObjectFile_8cpp.html#ab104eb44fb0574709f0ceb43b50bdb63>
allocaI); // InsertBefore
Presently I am passing previous allocaInstr Poiter as last argument as i
shown above So New allocaInstr is inserting before previous allocaInstr in
LLVM IR as follows output
%p1 = alloca i32*, align 8 // New Alloca Instrctions
%b = alloca i32, align 4 // previous Alloca Instrctions
how can I get output like below
%b = alloca i32, align 4 /...
2004 Apr 02
2
[LLVMdev] Function pointers
...t.org>
> To: <llvmdev at cs.uiuc.edu>
> Sent: Wednesday, March 31, 2004 5:49 PM
> Subject: Re: [LLVMdev] Function pointers
>
>
> On Wed, 31 Mar 2004, Anders Alexandersson wrote:
>
> > Hello out there!
> >
> > I am trying to build a table of 2 function poiters by using an array:
> >
> > %kernel = alloca [ 2 x int ()* ]
> >
> > I try to access the first pointer to be able to store location of my first
> function like this:
> >
> > %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long
> 0
>...
2010 Feb 23
1
Compiling R on Linux with SunStudio 12.1: "wide-character type" problems (rt)
...11, tcltk
External libraries: readline, ICU, lzma
Additional capabilities: PNG, JPEG, NLS, cairo
Options enabled: shared BLAS, R profiling, Java
Recommended packages: yes
MAKE error:
make returned an error related to platform.c and glob.h.
It seems that glob.h has a poiter to struct dirent {..}, platorm.c has
struct dirent64 {..}.
Error message:
/opt/sun/sunstudio12.1/bin/suncc
-I../../src/extra -I. -I../../src/include -I../../src/include -I.
-I/opt/sun/sunstudio12.1/prod/include
-I/opt/sun/sunstudio12.1/prod/include/cc-I/opt/sun/sunstudio12.1/prod/include/c...
2004 Apr 02
0
[LLVMdev] Function pointers
...>
> > Sent: Wednesday, March 31, 2004 5:49 PM
> > Subject: Re: [LLVMdev] Function pointers
> >
> >
> > On Wed, 31 Mar 2004, Anders Alexandersson wrote:
> >
> > > Hello out there!
> > >
> > > I am trying to build a table of 2 function poiters by using an array:
> > >
> > > %kernel = alloca [ 2 x int ()* ]
> > >
> > > I try to access the first pointer to be able to store location of my first
> > function like this:
> > >
> > > %function_pointer_1 = getelementptr [2 x int ()* ]*...
2015 Oct 27
0
Not showing up in network listing on Win 8.1
...owland
Following up: The machines came with McAfee Internet Security installed
which was managing the firewall. As McAfee was going to expire after the
30 day trial period, I just uninstalled it. The system went back to the
Windows firewall and network browsing now works correctly.
Thanks for the poiter to the firewall.
Tom Schulz
Applied Dynamics Intl.
schulz at adi.com
2005 Jan 04
0
kernel compile and console mouse
...recompile my kernel to enable NTFS support. I used as base the
i686 kernel config and enabled the read-only NTFS module. After booting my
custom kernel it all works fin (it reads the NTFS partition :-) ) but the
console mouse (it?s a text only pc) won?t work. Restarting the gpm service
makes the poiter show but won?t respond to mouse moves or clicks and will
vanish at the first keystroke. Rebooting with the original kernel brings it
back to life.
What did I miss?
Any help aprecuated,
Best wishes,
J.
-------------- next part --------------
An HTML attachment was scrubbed...
URL...
2004 Apr 02
0
[LLVMdev] Function pointers
...t.org>
> To: <llvmdev at cs.uiuc.edu>
> Sent: Wednesday, March 31, 2004 5:49 PM
> Subject: Re: [LLVMdev] Function pointers
>
>
> On Wed, 31 Mar 2004, Anders Alexandersson wrote:
>
> > Hello out there!
> >
> > I am trying to build a table of 2 function poiters by using an array:
> >
> > %kernel = alloca [ 2 x int ()* ]
> >
> > I try to access the first pointer to be able to store location of my first
> function like this:
> >
> > %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long
> 0
>...
2004 Apr 02
0
[LLVMdev] Function pointers
...t.org>
> To: <llvmdev at cs.uiuc.edu>
> Sent: Wednesday, March 31, 2004 5:49 PM
> Subject: Re: [LLVMdev] Function pointers
>
>
> On Wed, 31 Mar 2004, Anders Alexandersson wrote:
>
> > Hello out there!
> >
> > I am trying to build a table of 2 function poiters by using an array:
> >
> > %kernel = alloca [ 2 x int ()* ]
> >
> > I try to access the first pointer to be able to store location of my first
> function like this:
> >
> > %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long
> 0
>...
2012 Sep 19
1
[PATCH 1/1] lua: Cleaned up the dmi table structure in Lua.c32 and added all missing DMI subtables
...quot;dmi/dmi.h"
-static int dmi_gettable(lua_State *L)
+extern void add_string_item(lua_State*, const char*, const char*);
+extern void add_int_item(lua_State*, const char*, int);
+typedef int (*table_fn)(lua_State*, s_dmi*);
+
+/* Add a Lua_String entry to the table on stack
+ xxx_P is the poiter version (i.e., pBase is a pointer)
+ xxx_S is the staic version (i.e., Base is the struct)
+*/
+#define LUA_ADD_STR_P(pLua_state, pBase, Field) \
+ add_string_item(pLua_state, #Field, pBase->Field);
+#define LUA_ADD_STR_S(pLua_state, Base, Field) \
+ add_string_item(pLua_state, #Field, Base....
2010 Feb 22
2
Compiling R on Linux with SunStudio 12.1: "wide-character type" problems
I am trying to compile R on Linux using SunStudio. Configure flags are
mostly as suggested in the R install guide.
CC=/opt/sun/sunstudio12.1/bin/suncc
CFLAGS="-g -xc99 -xlibmil -xlibmieee"
MAIN_CFLAGS=-g
SHLIB_CFLAGS=-g
CPPFLAGS="-I. -I/opt/sun/sunstudio12.1/prod/include
-I/opt/sun/sunstudio12.1/prod/include/cc"
CPPFLAGS+="-I/opt/sun/sunstudio12.1/prod/include/cc/sys