Searched refs:Aliasee (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/unittests/VMCore/
H A DVerifierTest.cpp52 GlobalVariable *Aliasee = new GlobalVariable(M, Ty, true, local
57 "bar", Aliasee, &M);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DGlobalAlias.h44 Constant* Aliasee = 0, Module *Parent = 0);
67 /// getAliasedGlobal() - Aliasee can be either global or bitcast of
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DGlobals.cpp219 void GlobalAlias::setAliasee(Constant *Aliasee) { argument
220 assert((!Aliasee || Aliasee->getType() == getType()) &&
223 setOperand(0, Aliasee);
H A DTypeFinder.cpp38 if (const Value *Aliasee = I->getAliasee())
39 incorporateValue(Aliasee);
H A DAsmWriter.cpp1481 const Constant *Aliasee = GA->getAliasee(); local
1483 if (Aliasee == 0) {
1487 writeOperand(Aliasee, !isa<ConstantExpr>(Aliasee));
H A DVerifier.cpp455 "Aliasee cannot be NULL!", &GA);
466 "Aliasee should be either GlobalValue or bitcast of GlobalValue",
470 const GlobalValue* Aliasee = GA.resolveAliasedGlobal(/*stopOnWeak*/ false); local
471 Assert1(Aliasee,
H A DCore.cpp1299 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, argument
1302 unwrap<Constant>(Aliasee), unwrap (M)));
/macosx-10.10/llvmCore-3425.0.34/lib/Linker/
H A DLinkModules.cpp967 if (Constant *Aliasee = I->getAliasee()) {
969 DA->setAliasee(MapValue(Aliasee, ValueMap, RF_None, &TypeMap));
/macosx-10.10/llvmCore-3425.0.34/lib/AsmParser/
H A DLLParser.cpp557 /// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
558 /// Aliasee
583 Constant *Aliasee;
587 if (ParseGlobalTypeAndValue(Aliasee)) return true;
594 Aliasee = ID.ConstantVal;
597 if (!Aliasee->getType()->isPointerTy())
601 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
603 Aliasee);
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DGlobalOpt.cpp2955 Constant *Aliasee = J->getAliasee(); local
2956 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
2958 bool hasOneUse = Target->hasOneUse() && Aliasee->hasOneUse();
2962 J->replaceAllUsesWith(Aliasee);
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm_ocaml.c962 LLVMValueRef Aliasee, value Name) {
963 return LLVMAddAlias(M, Ty, Aliasee, String_val(Name));
961 llvm_add_alias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, value Name) argument
/macosx-10.10/llvmCore-3425.0.34/include/llvm-c/
H A DCore.h1617 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
/macosx-10.10/JavaScriptCore-7600.1.17/llvm/
H A DLLVMAPIFunctions.h313 macro(LLVMValueRef, AddAlias, (LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, const char *Name)) \

Completed in 282 milliseconds