/external/llvm/unittests/VMCore/ |
VerifierTest.cpp | 52 GlobalVariable *Aliasee = new GlobalVariable(M, Ty, true, 57 "bar", Aliasee, &M);
|
/external/llvm/include/llvm/ |
GlobalAlias.h | 44 Constant* Aliasee = 0, Module *Parent = 0); 67 /// getAliasedGlobal() - Aliasee can be either global or bitcast of 68 /// global. This method retrives the global for both aliasee flavours.
|
/external/llvm/lib/VMCore/ |
Globals.cpp | 190 const Twine &Name, Constant* aliasee, 195 if (aliasee) 196 assert(aliasee->getType() == Ty && "Alias and aliasee types should match!"); 197 Op<0>() = aliasee; 219 void GlobalAlias::setAliasee(Constant *Aliasee) { 220 assert((!Aliasee || Aliasee->getType() == getType()) && 221 "Alias and aliasee types should match!"); 223 setOperand(0, Aliasee); [all...] |
Module.cpp | 503 if (const Value *Aliasee = I->getAliasee()) 504 incorporateValue(Aliasee);
|
AsmWriter.cpp | [all...] |
Verifier.cpp | 453 "Aliasee cannot be NULL!", &GA); 455 "Alias and aliasee types should match!", &GA); 464 "Aliasee should be either GlobalValue or bitcast of GlobalValue", 468 const GlobalValue* Aliasee = GA.resolveAliasedGlobal(/*stopOnWeak*/ false); 469 Assert1(Aliasee, [all...] |
Core.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGCXX.cpp | 148 llvm::Constant *Aliasee = Ref; 150 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType); 154 new llvm::GlobalAlias(AliasType, Linkage, "", Aliasee, &getModule());
|
CodeGenModule.cpp | 677 // GlobalAlias::isDeclaration() defers to the aliasee, but for our 776 llvm::Constant *Aliasee; 778 Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GlobalDecl(), 781 Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), 784 llvm::GlobalValue* F = cast<llvm::GlobalValue>(Aliasee); 789 return Aliasee; [all...] |
CGExpr.cpp | [all...] |
/external/llvm/lib/Linker/ |
LinkModules.cpp | [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.cpp | 556 /// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee 557 /// Aliasee 583 Constant *Aliasee; 587 if (ParseGlobalTypeAndValue(Aliasee)) return true; 593 return Error(AliaseeLoc, "invalid aliasee"); 594 Aliasee = ID.ConstantVal; 597 if (!Aliasee->getType()->isPointerTy()) 601 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), 603 Aliasee); [all...] |
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm_ocaml.c | 962 LLVMValueRef Aliasee, value Name) { 963 return LLVMAddAlias(M, Ty, Aliasee, String_val(Name)); [all...] |
/external/llvm/include/llvm-c/ |
Core.h | [all...] |