//===- CTagsEmitter.cpp - Generate ctags-compatible index -----------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This tablegen backend emits an index of definitions in ctags(1) format. // A helper script, utils/TableGen/tdtags, provides an easier-to-use // interface; run 'tdtags -H' for documentation. // //===----------------------------------------------------------------------===// #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/SourceMgr.h" #include "llvm/TableGen/Error.h" #include "llvm/TableGen/Record.h" #include "llvm/TableGen/TableGenBackend.h" #include <algorithm> #include <vector> usingnamespacellvm; #define DEBUG_TYPE … namespace { class Tag { … }; class CTagsEmitter { … }; } // End anonymous namespace. SMLoc CTagsEmitter::locate(const Record *R) { … } void CTagsEmitter::run(raw_ostream &OS) { … } static TableGen::Emitter::OptClass<CTagsEmitter> X("gen-ctags", "Generate ctags-compatible index");