search for: smallbitvector

Displaying 5 results from an estimated 5 matches for "smallbitvector".

2012 Jun 11
1
[LLVMdev] include files
...used by most passes, perhaps only 3 or 4 files, probably because the necessary declarations are included indirectly. For example, I might get away with a .h file including only #include "llvm/Analysis/AliasAnalysis.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/ADT/SmallBitVector.h" and a .cpp file including only #include "myHeader.h" #include "llvm/Analysis/ScalarEvolutionExpressions.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/Support/InstIterator.h" Is it good style to cut the list down to the bare minimum lik...
2018 Apr 10
1
64 bit mask in x86vshuffle instruction
...her its correct or not. Please see the changes below that i have made in x86isellowering.cpp static SDValue lower2048BitVectorShuffle(const SDLoc &DL, ArrayRef<int> Mask, MVT VT, SDValue V1, SDValue V2, const SmallBitVector &Zeroable, const X86Subtarget &Subtarget, SelectionDAG &DAG) { // If we have a single input to the zero element, insert that into V1 if we // can do so cheaply. int NumElts = Mask.size(); int NumV2...
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
...r/local/llvm-2.8/include/llvm/ADT/STLExtras.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/ScopedHashTable.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SetOperations.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SetVector.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SmallBitVector.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SmallPtrSet.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SmallSet.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SmallString.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/SmallVector.h -- Installing: /usr/local/llvm-2.8/i...
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