/external/llvm/include/llvm/ADT/ |
PackedVector.h | 17 #include "llvm/ADT/BitVector.h" 74 template <typename T, unsigned BitNum, typename BitVectorTy = BitVector>
|
SparseSet.h | 93 /// Compared to BitVector, SparseSet<unsigned> uses 8x-40x more memory, but 176 /// This is not the same as BitVector::empty(). 182 /// This is not the same as BitVector::size() which returns the size of the
|
/external/llvm/include/llvm/CodeGen/ |
RegisterClassInfo.h | 21 #include "llvm/ADT/BitVector.h" 63 BitVector Reserved;
|
GCMetadata.h | 96 // FIXME: Liveness. A 2D BitVector, perhaps? 98 // BitVector Liveness;
|
LiveRegMatrix.h | 27 #include "llvm/ADT/BitVector.h" 59 BitVector RegMaskUsable;
|
MachineScheduler.h | 214 BitVector ScheduledTrees; 326 BitVector &getScheduledTrees() { return ScheduledTrees; }
|
/external/llvm/lib/CodeGen/ |
LiveRegMatrix.cpp | 102 // The same BitVector can be reused for all PhysRegs. 111 // The BitVector is indexed by PhysReg, not register unit.
|
StackColoring.cpp | 26 #include "llvm/ADT/BitVector.h" 91 /// Each bit in the BitVector represents the liveness property 95 BitVector Begin; 97 BitVector End; 99 BitVector LiveIn; 101 BitVector LiveOut; 324 BitVector LocalLiveIn; 325 BitVector LocalLiveOut; 362 BitVector LocalEndBegin = BlockInfo.End; 431 BitVector Alive = BlockLiveness[MBB].LiveIn [all...] |
StackSlotColoring.cpp | 16 #include "llvm/ADT/BitVector.h" 69 BitVector AllColors; 75 BitVector UsedColors; 260 BitVector UsedColors(NumObjs);
|
/external/marisa-trie/v0_1_5/vs2008/libmarisa_alpha/ |
libmarisa_alpha.vcproj | 156 RelativePath="..\..\lib\marisa_alpha\bitvector.cc"
210 RelativePath="..\..\lib\marisa_alpha\bitvector.h"
|
/external/llvm/lib/Target/Hexagon/ |
HexagonRegisterInfo.cpp | 20 #include "llvm/ADT/BitVector.h" 73 BitVector HexagonRegisterInfo::getReservedRegs(const MachineFunction &MF) 75 BitVector Reserved(getNumRegs());
|
HexagonRegisterInfo.h | 57 BitVector getReservedRegs(const MachineFunction &MF) const;
|
/external/clang/lib/Analysis/ |
CFGReachabilityAnalysis.cpp | 44 llvm::BitVector visited(analyzed.size());
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXFrameLowering.cpp | 19 #include "llvm/ADT/BitVector.h"
|
NVPTXRegisterInfo.h | 55 virtual BitVector getReservedRegs(const MachineFunction &MF) const;
|
/external/llvm/lib/Target/PowerPC/ |
PPCRegisterInfo.h | 48 BitVector getReservedRegs(const MachineFunction &MF) const;
|
/external/llvm/unittests/ADT/ |
PackedVectorTest.cpp | 11 // as well since it depends on a BitVector.
|
SCCIteratorTest.cpp | 34 typedef unsigned char BitVector; // Where the limitation N <= 8 comes from. 35 BitVector Elements; 36 NodeSubset(BitVector e) : Elements(e) {} 40 assert(N <= sizeof(BitVector)*CHAR_BIT && "Graph too big!");
|
/external/marisa-trie/lib/marisa/ |
trie.h | 16 #include "bitvector.h" 196 BitVector louds_; 198 BitVector terminal_flags_; 199 BitVector link_flags_;
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
trie.h | 16 #include "bitvector.h" 196 BitVector louds_; 198 BitVector terminal_flags_; 199 BitVector link_flags_;
|
/sdk/emulator/qtools/ |
stack_dump.cpp | 9 #include "bitvector.h"
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
DeadStoresChecker.cpp | 25 #include "llvm/ADT/BitVector.h" 70 llvm::BitVector reachable; 93 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
|
/external/v8/src/ |
lithium-allocator.cc | 561 BitVector* LAllocator::ComputeLiveOut(HBasicBlock* block) { 564 BitVector* live_out = new(zone_) BitVector(next_virtual_register_, zone_); 571 BitVector* live_in = live_in_sets_[successor->block_id()]; 591 BitVector* live_out) { 598 BitVector::Iterator iterator(live_out); 890 void LAllocator::ProcessInstructions(HBasicBlock* block, BitVector* live) { [all...] |
/dalvik/vm/compiler/ |
Dataflow.cpp | 1089 static inline void handleLiveInUse(BitVector *useV, BitVector *defV, 1090 BitVector *liveInV, int dalvikRegId) 1099 static inline void handleDef(BitVector *defV, int dalvikRegId) 1111 BitVector *useV, *defV, *liveInV; [all...] |
/external/marisa-trie/tests/ |
vector-test.cc | 9 #include <marisa/bitvector.h> 211 marisa::BitVector bv;
|