search for: pointertrack

Displaying 9 results from an estimated 9 matches for "pointertrack".

Did you mean: pointertracker
2007 Oct 04
0
Getting mouse position from a timed function - My Solution
...it wouldn''t let me respond that that thread (presumably because of it''s age). Rather than just throw it away, I figured I''d post it here in case in can help anyone else. I built a little class to help me do just that. Here is my implementation: (using Prototype 1.6) var pointerTracker = Class.create({ initialize: function(){ this.x = null; this.y = null; this.bodyEl = $(document.body); //Bind event listener. this.boundUpdatePosition = this.updatePosition.bindAsEventListener(this); this.start(); }, updatePosition: function(event){ this.x = event.pointerX();...
2010 Jul 04
2
[LLVMdev] list of LLVM optimization passes
...large number of passes mentioned in "opt -help" are not mentioned in [1]: -abcd -always-inline -functionattrs -insert-optimal-edge-profiling -instnamer -iv-users -lazy-value-info -lda -libcall-aa -live-values -mergefunc -partial-inliner -partialspecialization -pointertracking -print-dbginfo -print-dom-info -profile-estimator -profile-verifier -sccvn -scev-aa -simplify-libcalls-halfpowr -split-geps -ssi -ssi-everything -strip-debug-declare -strip-nondebug It's unclear to me which of these passes are transform passes, and which ones are an...
2010 Jul 06
0
[LLVMdev] list of LLVM optimization passes
...large number of passes mentioned in "opt -help" are not mentioned in [1]: -abcd -always-inline -functionattrs -insert-optimal-edge-profiling -instnamer -iv-users -lazy-value-info -lda -libcall-aa -live-values -mergefunc -partial-inliner -partialspecialization -pointertracking -print-dbginfo -print-dom-info -profile-estimator -profile-verifier -sccvn -scev-aa -simplify-libcalls-halfpowr -split-geps -ssi -ssi-everything -strip-debug-declare -strip-nondebug It's unclear to me which of these passes are transform passes, and which ones are an...
2010 Jul 06
2
[LLVMdev] list of LLVM optimization passes
...d in [1]: > > -abcd > -always-inline > -functionattrs > -insert-optimal-edge-profiling > -instnamer > -iv-users > -lazy-value-info > -lda > -libcall-aa > -live-values > -mergefunc > -partial-inliner > -partialspecialization > -pointertracking > -print-dbginfo > -print-dom-info > -profile-estimator > -profile-verifier > -sccvn > -scev-aa > -simplify-libcalls-halfpowr > -split-geps > -ssi > -ssi-everything > -strip-debug-declare > -strip-nondebug > > It's unclear t...
2010 Jul 06
0
[LLVMdev] list of LLVM optimization passes
...d in [1]: > > -abcd > -always-inline > -functionattrs > -insert-optimal-edge-profiling > -instnamer > -iv-users > -lazy-value-info > -lda > -libcall-aa > -live-values > -mergefunc > -partial-inliner > -partialspecialization > -pointertracking > -print-dbginfo > -print-dom-info > -profile-estimator > -profile-verifier > -sccvn > -scev-aa > -simplify-libcalls-halfpowr > -split-geps > -ssi > -ssi-everything > -strip-debug-declare > -strip-nondebug > > It's unclear t...
2010 Jul 06
1
[LLVMdev] list of LLVM optimization passes
...e >> -functionattrs >> -insert-optimal-edge-profiling >> -instnamer >> -iv-users >> -lazy-value-info >> -lda >> -libcall-aa >> -live-values >> -mergefunc >> -partial-inliner >> -partialspecialization >> -pointertracking >> -print-dbginfo >> -print-dom-info >> -profile-estimator >> -profile-verifier >> -sccvn >> -scev-aa >> -simplify-libcalls-halfpowr >> -split-geps >> -ssi >> -ssi-everything >> -strip-debug-declare >>...
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
...sis/MemoryBuiltins.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/MemoryDependenceAnalysis.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/PHITransAddr.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/Passes.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/PointerTracking.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/PostDominators.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/ProfileInfo.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/ProfileInfoLoader.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/ProfileInfoType...
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
On Thu, Sep 30, 2010 at 3:08 PM, Samuel Williams <space.ship.traveller at gmail.com> wrote: > Hi, > > I might just be doing something stupid, but when I do > > $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. > $ sudo make install > > I don't get the expected headers in >        /usr/local/llvm-2.8/include/llvm > > It is
2010 Sep 30
6
[LLVMdev] CMake "sudo make install" & headers
Hi, I might just be doing something stupid, but when I do $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. $ sudo make install I don't get the expected headers in /usr/local/llvm-2.8/include/llvm It is simply an empty directory. What am I doing wrong? This is on Mac OS X, CMake 2.8+ Kind regards, Samuel