HomeSort by relevance Sort by last modified time
    Searched defs:DIBuilder (Results 1 - 13 of 13) sorted by null

  /external/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
34 class DIBuilder {
60 DIBuilder(const DIBuilder &) = delete;
61 void operator=(const DIBuilder &) = delete;
73 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DIBuilder.h 1 //===--- llvm/Analysis/DIBuilder.h - Debug Information Builder --*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
46 class DIBuilder {
65 DIBuilder(const DIBuilder &); // DO NOT IMPLEMENT
66 void operator=(const DIBuilder &); // DO NOT IMPLEMENT
69 explicit DIBuilder(Module &M);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 1 //===- DIBuilder.h - Debug Information Builder ------------------*- C++ -*-===//
10 // This file defines a DIBuilder that is useful for creating debugging
42 class DIBuilder {
82 explicit DIBuilder(Module &M, bool AllowUnresolved = true);
83 DIBuilder(const DIBuilder &) = delete;
84 DIBuilder &operator=(const DIBuilder &) = delete;
139 /// List of macro node direct children will be calculated by DIBuilder,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
DIBuilder.cpp 1 //===--- DIBuilder.cpp - Debug Information Builder ------------------------===//
10 // This file implements the DIBuilder.
14 #include "llvm/Analysis/DIBuilder.h"
31 DIBuilder::DIBuilder(Module &m)
38 void DIBuilder::finalize() {
75 void DIBuilder::createCompileUnit(unsigned Lang, StringRef Filename,
126 DIFile DIBuilder::createFile(StringRef Filename, StringRef Directory) {
139 DIEnumerator DIBuilder::createEnumerator(StringRef Name, uint64_t Val) {
150 DIType DIBuilder::createNullPtrType(StringRef Name)
    [all...]
  /external/llvm/bindings/go/llvm/
dibuilder.go 1 //===- dibuilder.go - Bindings for DIBuilder ------------------------------===//
10 // This file defines bindings for the DIBuilder class.
90 // DIBuilder is a wrapper for the LLVM DIBuilder class.
91 type DIBuilder struct {
96 // NewDIBuilder creates a new DIBuilder, associated with the given module.
97 func NewDIBuilder(m Module) *DIBuilder {
99 return &DIBuilder{ref: d, m: m}
102 // Destroy destroys the DIBuilder
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 1 //===--- DIBuilder.cpp - Debug Information Builder ------------------------===//
10 // This file implements the DIBuilder.
14 #include "llvm/IR/DIBuilder.h"
27 DIBuilder::DIBuilder(Module &m, bool AllowUnresolvedNodes)
32 void DIBuilder::trackIfUnresolved(MDNode *N) {
42 void DIBuilder::finalize() {
111 DICompileUnit *DIBuilder::createCompileUnit(
122 assert(!CUNode && "Can only make one compile unit per DIBuilder instance");
148 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context
    [all...]

Completed in 2881 milliseconds