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

  /external/llvm/include/llvm/IR/
GlobalAlias.h 1 //===-------- llvm/GlobalAlias.h - GlobalAlias class ------------*- C++ -*-===//
10 // This file contains the declaration of the GlobalAlias class, which
27 class GlobalAlias : public GlobalIndirectSymbol,
28 public ilist_node<GlobalAlias> {
29 friend class SymbolTableListTraits<GlobalAlias>;
30 void operator=(const GlobalAlias &) = delete;
31 GlobalAlias(const GlobalAlias &) = delete;
35 GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Linkage
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
GlobalAlias.h 1 //===-------- llvm/GlobalAlias.h - GlobalAlias class ------------*- C++ -*-===//
10 // This file contains the declaration of the GlobalAlias class, which
28 class GlobalAlias : public GlobalIndirectSymbol,
29 public ilist_node<GlobalAlias> {
30 friend class SymbolTableListTraits<GlobalAlias>;
32 GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Linkage,
36 GlobalAlias(const GlobalAlias &) = delete;
37 GlobalAlias &operator=(const GlobalAlias &) = delete
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
GlobalAlias.h 1 //===-------- llvm/GlobalAlias.h - GlobalAlias class ------------*- C++ -*-===//
10 // This file contains the declaration of the GlobalAlias class, which
29 class GlobalAlias : public GlobalValue, public ilist_node<GlobalAlias> {
30 friend class SymbolTableListTraits<GlobalAlias, Module>;
31 void operator=(const GlobalAlias &); // Do not implement
32 GlobalAlias(const GlobalAlias &); // Do not implement
41 /// GlobalAlias ctor - If a parent module is specified, the alias i
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Globals.cpp 17 #include "llvm/GlobalAlias.h"
75 assert(isa<GlobalAlias>(this));
186 // GlobalAlias Implementation
189 GlobalAlias::GlobalAlias(Type *Ty, LinkageTypes Link,
203 void GlobalAlias::setParent(Module *parent) {
211 void GlobalAlias::removeFromParent() {
215 void GlobalAlias::eraseFromParent() {
219 void GlobalAlias::setAliasee(Constant *Aliasee) {
226 const GlobalValue *GlobalAlias::getAliasedGlobal() const
    [all...]
  /external/llvm/lib/IR/
Globals.cpp 19 #include "llvm/IR/GlobalAlias.h"
59 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
132 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
142 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
321 // GlobalAlias Implementation
324 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link,
333 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
336 return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Globals.cpp 21 #include "llvm/IR/GlobalAlias.h"
98 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
157 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
167 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
406 // GlobalAlias Implementation
409 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link,
418 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace,
421 return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule)
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 280 | GlobalAlias
    [all...]
llvm_ocaml.c 538 GlobalAlias,
573 DEFINE_CASE(Val, GlobalAlias);
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm_ocaml.c 427 GlobalAlias,
460 DEFINE_CASE(Val, GlobalAlias);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 621 GlobalAlias,
656 DEFINE_CASE(Val, GlobalAlias);
    [all...]

Completed in 185 milliseconds