HomeSort by: relevance | last modified time | path
    Searched refs:CurIdx (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackMaps.cpp 96 unsigned CurIdx = getNumAllocaIdx();
97 unsigned NumAllocas = getConstMetaVal(*MI, CurIdx - 1);
98 CurIdx++;
100 CurIdx = StackMaps::getNextMetaArgIdx(MI, CurIdx);
101 return CurIdx + 1; // skip <StackMaps::ConstantOp>
106 unsigned CurIdx = getNumGCPtrIdx();
107 unsigned NumGCPtrs = getConstMetaVal(*MI, CurIdx - 1);
108 CurIdx++;
110 CurIdx = StackMaps::getNextMetaArgIdx(MI, CurIdx)
    [all...]
GlobalMerge.cpp 463 unsigned CurIdx = 0;
478 ++CurIdx;
482 StructIdxs.push_back(CurIdx++);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
TokenLexer.cpp 734 unsigned int &CurIdx) {
735 assert(CurIdx > 0 && "## can not be the first token within tokens");
736 assert((TokenStream[CurIdx].is(tok::hashhash) ||
738 isWideStringLiteralFromMacro(LHSTok, TokenStream[CurIdx]))) &&
745 if (PP.getLangOpts().MicrosoftExt && (CurIdx >= 2) &&
746 TokenStream[CurIdx - 2].is(tok::hashhash))
754 auto IsAtEnd = [&TokenStream, &CurIdx] {
755 return TokenStream.size() == CurIdx;
760 PasteOpLoc = TokenStream[CurIdx].getLocation();
761 if (TokenStream[CurIdx].is(tok::hashhash)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
TokenLexer.h 166 /// \p CurIdx to point to the token following the last one that was pasted.
177 /// \param[in,out] CurIdx - Upon entry, \pTokens[\pCurIdx] must equal '##'
185 unsigned int &CurIdx);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
StackMaps.h 292 static unsigned getNextMetaArgIdx(const MachineInstr *MI, unsigned CurIdx);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 1808 unsigned CurIdx = 0;
1829 if (CurIdx == 0) {
1841 for (unsigned j = 0; j != CurIdx; ++j)
1852 ++CurIdx;
1857 V = Builder.CreateInsertElement(V, Init, Builder.getInt32(CurIdx),
1860 ++CurIdx;
1869 unsigned Offset = (CurIdx == 0) ? 0 : ResElts;
1876 for (unsigned j = 0; j != CurIdx; ++j) {
1905 for (unsigned j = 0; j != CurIdx; ++j)
1914 if (CurIdx == 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4577 unsigned CurIdx = 5;
4580 unsigned NumItems = Record[CurIdx++];
4582 bool isSingleNumber = Record[CurIdx++];
4587 ActiveWords = Record[CurIdx++];
4588 Low = readWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
4590 CurIdx += ActiveWords;
4595 ActiveWords = Record[CurIdx++];
4597 makeArrayRef(&Record[CurIdx], ActiveWords), ValueBitWidth);
4598 CurIdx += ActiveWords;
4609 BasicBlock *DestBB = getBasicBlock(Record[CurIdx++])
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 7512 unsigned CurIdx;
7517 : SM(SM), Tokens(tokens), NumTokens(numTokens), CurIdx(0) {}
7527 for (; CurIdx < NumTokens; ++CurIdx) {
7528 if (!SM.isBeforeInTranslationUnit(getTokenLoc(CurIdx),
7533 if (CurIdx == NumTokens)
7536 for (; CurIdx < NumTokens; ++CurIdx) {
7537 SourceLocation tokLoc = getTokenLoc(CurIdx);
7541 setFunctionMacroTokenLoc(CurIdx, SM.getMacroArgExpandedLocation(tokLoc))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 1928 auto AddToWorklist = [&](unsigned CurIdx, SDNode *Op, unsigned OpNumber) {
1940 for (unsigned i = CurIdx + 1; i < Worklist.size(); ++i) {

Completed in 60 milliseconds