search for: iteself

Displaying 14 results from an estimated 14 matches for "iteself".

2006 Sep 30
3
Builder.node, each() and Event.observe - Help!
Hi all I am trying to get the following code working but somehow it doesn''t.. Please help me. ------------ snip --------- Ajax.Request(''/json/images/''+query, { onComplete:function(xmlhttp,json) { if(json.TotalResults != 0) { json.Item.each(function(item) { $(''out'').appendChild(
2011 Aug 28
1
[LLVMdev] LLVM supports Unicode?
geovanisouza92 at gmail.com wrote: > I'm trying create a new programming language, and I want that it have > Unicode support (support for read and manipulate rightly the source-code and > string literals). LLVM IR iteself only supports one string ty, which is an array of i8 (8 bit integers). In your compile you can use utf-8 and any utf8 string literal can be stored in an i8 array in the LLVM IR. For example, the LLVM backend for the DDC compiler [0] does this: @str = internal constant [4 x i8] c"bar\00&qu...
2012 Aug 25
2
[LLVMdev] How to Check whether BasicBlock resides in a conditional branch
...there is exist a direct connection between this parent and BB. What do you mean by "there are no BB with branches as terminators on your way" ? I remember All BB end with a terminator.... Well, I think if the basicblock only has one predecessor block, it also means its predecessor and iteself have direct connection. Do you mean this? > > Anyway I think it's impossible to detect all of such BB - you have indirect jumps, you can have a complicated branch structure with implicit flows that are hard to analyse - like this: > > a = 0; > b = 1; > if (X == 1) > a =...
2011 May 05
1
[LLVMdev] Could LLVM or Clang go backward to modify c source code?
...ible. Thanks again. 2011/5/5 Joshua Warner <joshuawarner32 at gmail.com> > Wen-Han, > > It sounds like there are two problems here: first is detecting when free is > not properly called, and figuring out where to insert the call - which seems > like an intractable problem by iteself. Second is a reversible translation > from C to LLVM IR. LLVM does (did?) have support for generating C code > again on the back end, but the result doesn't look that much like the > original code. In order to translate changes from the IR back to the source > code, detailed info...
2006 Nov 23
3
questions about extended attributes support across *nix & osx (hfs+) filesys
...osx, it's v2.6.3 w/ both apple's "Extended Attributes" patches: http://www.opensource.apple.com/darwinsource/10.4.8.ppc/rsync-24/patches/EA.diff http://www.opensource.apple.com/darwinsource/10.4.8.ppc/rsync-24/patches/PR-3945747-endian.diff and the 'lartmaker' fix (iteself, slightly fixed ...): wget http://www.lartmaker.nl/rsync/rsync-tiger-fixes.diff applied. these patches don't currently apply as-is to rsync v2.6.9. using the patched bins, mac-to-mac -- or more correctly, hfs+-to-hfs+ -- rsync seems to correctly preserve file attributes. to my understandin...
2011 May 05
0
[LLVMdev] Could LLVM or Clang go backward to modify c source code?
...May 4, 2011 at 10:16 PM, Joshua Warner <joshuawarner32 at gmail.com>wrote: > Wen-Han, > > It sounds like there are two problems here: first is detecting when free is > not properly called, and figuring out where to insert the call - which seems > like an intractable problem by iteself. Second is a reversible translation > from C to LLVM IR. LLVM does (did?) have support for generating C code > again on the back end, but the result doesn't look that much like the > original code. In order to translate changes from the IR back to the source > code, detailed info...
2007 Mar 19
1
serial port problem
Hi, I tried to run an older windows program under wine (I think it is an older 16bit Borland C compiled binary - the icons looks have the typically Borland look) for connecting my telephone system via a serial connection (Auerswald ETS2106W.EXE). The program iteself starts but it tells me every time that it gets no connection with COM2. To verify that the serial connection is ok I a have connected a modem and tried to dial out with terraterm, an older terminal program. And this works! Any useful hints, why I can't connect my telephone system? Sorry, I get...
2002 Mar 27
0
new ICQ, and com dlls
Maybe im the only one.. but I find putting the message type [WINE] in the header a very usefull tool when ppl like me get alot of mail... anyway, I tried to install the new version of ICQ using wine, and I got a bad version for '50comupd.exe' (which is com components), wine iteself installs 4.01 , not 5.0 . I installed 5.0, and it seems to install correctly, however I guess it doesnt do it properly (or isnt set in the registry maybe?), because its like it isnt there, and still complains about not having 5.0 (its still using 4.01) Its the icq on the download page, and the com...
2005 Oct 20
1
Autocomplete - Destroying the object
...arch box with likely matches. These results need to be filtered by an option from a select box that is alongside the search box. As the current Autocomplete function only takes in one id to post to the search file, i figured i could post more stuff to the Ajax.Autocompleter functions using the url iteself. So every time the select box is changed I''m recreating the Ajax.Autocompleter Object by using the select boxes onChange, and calliing the following: function setSelected() { new Ajax.Autocompleter("autocomplete",auto_complete","ajax.fetch.php?search_by="+escape(d...
2006 Apr 11
3
Validations and has_many :through (Join Models)
Hello again: I''m hoping that somebody, anybody, can help with this question. How do I make sure that records in a join model are unique? Using the scenario outlined in Chad Fowler''s "Rails Recipies", number 16, "Many to Many Relationships Where the Relationship Iteself Has Data". Here are the tables: create_table :magazines do |t| t.column :title, :string end create_table :readers do |t| t.column :name, :string end create_table :subscriptions do |t| t.column :reader_id, :integer t.column :magazine_id, :integer t.column :last_renewal_on, :date...
2012 Aug 25
0
[LLVMdev] How to Check whether BasicBlock resides in a conditional branch
Can't you do it by performing some analysis on CFG? You can traverse that structure with BFS. And after that for all the BB you have visited more than once, you try to find a parent that has a branch instruction as a terminator. Additionally you ensure that there are no BB with branches as terminators on your way. If such parent exist, you mark that there is exist a direct connection between
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
Hi, Jo! I'm trying create a new programming language, and I want that it have Unicode support (support for read and manipulate rightly the source-code and string literals). But, in addition, my programming language supports "string interpolation" string, and in these interpolations, tiny snippets of code, like expressions, or variable names. So, I need read each char, separating
2011 Aug 28
4
[LLVMdev] LLVM supports Unicode?
Am 28.08.2011 16:02, schrieb geovanisouza92 at gmail.com: > Well, have you any idea about how I can implement rightly Unicode in C/C++? What do you mean with "implement in C/C++"? If you mean adding libraries to C/C++ that correctly deal with Unicode: that's nothing you do with a compiler infrastructure. And probably duplicate work, since Unicode libraries already exist. If
2012 Aug 25
6
[LLVMdev] How to Check whether BasicBlock resides in a conditional branch
Hello All, I want to dertermine whether a basicblock is in a conditional branch. such as, //============================= if a > 2 // BasicBlock A then BasicBlock B endif BasicBlock C //============================= What I want to identify is BasicBlock B, which is in a condtional block. but C is not. In other words, I want to distinguish BasicBlocks that * must * be executed and that