HomeSort by relevance Sort by last modified time
    Searched refs:Aliasee (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/IR/
GlobalAlias.h 37 const Twine &Name, Constant *Aliasee, Module *Parent);
49 Constant *Aliasee, Module *Parent);
51 // Without the Aliasee.
56 // The module is taken from the Aliasee.
59 GlobalValue *Aliasee);
61 // Type, Parent and AddressSpace taken from the Aliasee.
63 GlobalValue *Aliasee);
65 // Linkage, Type, Parent and AddressSpace taken from the Aliasee.
66 static GlobalAlias *create(const Twine &Name, GlobalValue *Aliasee);
82 void setAliasee(Constant *Aliasee);
    [all...]
  /external/llvm/lib/IR/
Globals.cpp 241 const Twine &Name, Constant *Aliasee,
246 Op<0>() = Aliasee;
254 Constant *Aliasee, Module *ParentModule) {
255 return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule);
266 GlobalValue *Aliasee) {
267 return create(Ty, AddressSpace, Linkage, Name, Aliasee, Aliasee->getParent());
271 GlobalValue *Aliasee) {
272 PointerType *PTy = Aliasee->getType();
274 Aliasee);
    [all...]
TypeFinder.cpp 38 if (const Value *Aliasee = I->getAliasee())
39 incorporateValue(Aliasee);
AsmWriter.cpp     [all...]
Verifier.cpp 539 const Constant *Aliasee = GA.getAliasee();
540 Assert1(Aliasee, "Aliasee cannot be NULL!", &GA);
541 Assert1(GA.getType() == Aliasee->getType(),
542 "Alias and aliasee types should match!", &GA);
544 Assert1(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee),
545 "Aliasee should be either GlobalValue or ConstantExpr", &GA);
547 visitAliaseeSubExpr(GA, *Aliasee);
    [all...]
Core.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 145 llvm::Constant *Aliasee = Ref;
147 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
150 // of the aliasee.
159 Replacements[MangledName] = Aliasee;
180 Linkage, "", Aliasee, &getModule());
CodeGenModule.cpp 267 llvm::Constant *Aliasee = Alias->getAliasee();
269 if (auto CE = dyn_cast<llvm::ConstantExpr>(Aliasee))
272 AliaseeGV = cast<llvm::GlobalValue>(Aliasee);
284 // to its aliasee's aliasee. We also warn, since the user is probably
290 Aliasee = llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
292 Alias->setAliasee(Aliasee);
    [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 284 Constant *Aliasee = GA.getAliasee();
285 if (Function *F = dyn_cast<Function>(Aliasee)) {
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 556 // We cannot resolve the size of the aliasee yet.
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 698 /// OptionalLinkage Aliasee
700 /// Aliasee
725 Constant *Aliasee;
731 if (ParseGlobalTypeAndValue(Aliasee))
739 return Error(AliaseeLoc, "invalid aliasee");
740 Aliasee = ID.ConstantVal;
743 Type *AliaseeType = Aliasee->getType();
753 Name, Aliasee, /*Parent*/ nullptr));
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]

Completed in 241 milliseconds