HomeSort by: relevance | last modified time | path
    Searched refs:IndexType (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 47 class IndexType {
56 IndexType() {}
57 IndexType(unsigned Idx) : Index(Idx) {}
59 static bool isInstr(IndexType X) { return X.Index >= First; }
63 bool operator== (IndexType Idx) const;
65 bool operator!= (IndexType Idx) const;
66 IndexType operator++ ();
68 bool operator< (IndexType Idx) const;
69 bool operator<= (IndexType Idx) const;
72 bool operator> (IndexType Idx) const
    [all...]
HexagonBlockRanges.cpp 36 IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
50 IndexType E = (end() != IndexType::None) ? end() : start();
51 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
61 IndexType AS = A.start(), AE = A.end();
62 if (AS < start() || start() == IndexType::None)
64 if (end() < AE || end() == IndexType::None) {
115 IndexType AS = A.start(), AE = A.end();
116 IndexType BS = B.start(), BE = B.end()
    [all...]
HexagonFrameLowering.cpp 2224 using IndexType = HexagonBlockRanges::IndexType;
2258 std::map<int,IndexType> LastStore, LastLoad;
2332 IndexType Index = IndexMap.getIndex(&In);
2334 if (LastStore[FI] == IndexType::None)
2335 LastStore[FI] = IndexType::Entry;
2339 if (LastStore[FI] != IndexType::None)
2341 else if (LastLoad[FI] != IndexType::None)
2342 RL.add(IndexType::Entry, LastLoad[FI], false, false);
2343 LastLoad[FI] = IndexType::None
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
EnumeratedArray.h 21 Enumeration LargestEnum = Enumeration::Last, typename IndexType = int,
22 IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
27 for (IndexType IX = 0; IX < Size; ++IX) {
32 auto IX = static_cast<const IndexType>(Index);
39 IndexType, Size> &>(*this)[Index]);
41 inline IndexType size() { return Size; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyDebugValueManager.cpp 85 auto IndexType = DBI->isIndirectDebugValue()
89 MO.ChangeToTargetIndex(IndexType, LocalId);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTF.h 151 uint32_t IndexType; ///< Index type
BTFDebug.cpp 213 ArrayInfo.IndexType = BDebug.getArrayIndexTypeId();
219 OS.emitInt32(ArrayInfo.IndexType);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers.h 77 const TypeDescriptor &IndexType;
ubsan_handlers.cc 293 Value IndexVal(Data->IndexType, Index);
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers.h 87 const TypeDescriptor &IndexType;
ubsan_handlers.cpp 391 Value IndexVal(Data->IndexType, Index);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_handlers.h 87 const TypeDescriptor &IndexType;
ubsan_handlers.cpp 391 Value IndexVal(Data->IndexType, Index);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 399 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
402 IndexType(IndexType), Size(Size), Name(Name) {}
405 TypeIndex getIndexType() const { return IndexType; }
410 TypeIndex IndexType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 2423 MachineMemOperand *MMO, ISD::MemIndexType IndexType)
2425 LSBaseSDNodeBits.AddressingMode = IndexType;
2426 assert(getIndexType() == IndexType && "Value truncated");
2433 void setIndexType(ISD::MemIndexType IndexType) {
2434 LSBaseSDNodeBits.AddressingMode = IndexType;
2468 ISD::MemIndexType IndexType, ISD::LoadExtType ETy)
2470 IndexType) {
2493 ISD::MemIndexType IndexType, bool IsTrunc)
2495 IndexType) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 186 using IndexType = uint32_t;
188 IndexType Index;
191 BlockNode(IndexType Index) : Index(Index) {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 372 AT.IndexType, AT.ElementType);
375 AT.Name, AT.Size, AT.IndexType, AT.ElementType);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
parallel_backend_tbb.h 849 template <typename IndexType>
851 set_odd(IndexType __idx, bool __on_off)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
parallel_backend_tbb.h 839 template <typename IndexType>
841 set_odd(IndexType __idx, bool __on_off)
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 195 bool assumption, QualType IndexType = QualType()) const;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 187 using HashTable = DenseMap<BlockNode::IndexType, Weight>;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeRecordMapping.cpp 414 error(IO.mapInteger(Record.IndexType, "IndexType"));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
sorting.d 1004 alias IndexType = Unqual!(ElementType!RangeIndex);
1007 static if (IndexType.sizeof < size_t.sizeof)
1009 enforce(r.length <= size_t(1) + IndexType.max, "Cannot create an index with " ~
1010 "element type " ~ IndexType.stringof ~ " with length " ~
1017 index[i] = cast(IndexType) i;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
string.d 2764 alias IndexType = typeof(unsigned(_input.length));
2765 enum IndexType _unComputed = IndexType.max;
2766 IndexType iStart = _unComputed;
2767 IndexType iEnd = 0;
2768 IndexType iNext = 0;
2794 for (IndexType i = iNext; ; ++i)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 616 Type *IndexType = IntegerType::get(
620 NewInsts[Base] = ConstantInt::getNullValue(IndexType);
629 NewInsts[PHI] = PHINode::Create(IndexType, PHI->getNumIncomingValues(),
727 Type *IndexType = IntegerType::get(V->getContext(),
730 Constant *Index = ConstantInt::getNullValue(IndexType);
742 Index, ConstantExpr::getSExtOrBitCast(GEPIndex, IndexType));

Completed in 135 milliseconds

1 2