Searched defs:linkage (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/IR/
H A DGlobalValue.h31 /// @brief An enumeration for the kinds of linkage for global values.
47 ExternalWeakLinkage,///< ExternalWeak linkage description.
60 LinkageTypes linkage, const Twine &Name)
61 : Constant(ty, vty, Ops, NumOps), Linkage(linkage),
68 LinkageTypes Linkage : 5; // The linkage of this global
175 /// weak linkage then the code defining it may be replaced by different code.
59 GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps, LinkageTypes linkage, const Twine &Name) argument
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp209 /// @param linkage function linkage
218 llvm::GlobalValue::LinkageTypes linkage,
224 llvm::Function::Create(functType, linkage, functName, &module);
213 createFunction(llvm::Module &module, llvm::Type *retType, const ArgTypes &theArgTypes, const ArgNames &theArgNames, const std::string &functName, llvm::GlobalValue::LinkageTypes linkage, bool declarationOnly, bool isVarArg) argument
/external/clang/tools/c-index-test/
H A Dc-index-test.c1061 const char *linkage = 0; local
1068 case CXLinkage_NoLinkage: linkage = "NoLinkage"; break;
1069 case CXLinkage_Internal: linkage = "Internal"; break;
1070 case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break;
1071 case CXLinkage_External: linkage = "External"; break;
1074 if (linkage) {
1076 printf("linkage=%s\n", linkage);
3643 " c-index-test -test-print-linkage-source {<args>}*\n"
3725 else if (argc > 2 && strcmp(argv[1], "-test-print-linkage
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli72 (** The linkage of a global value, accessed with {!linkage} and
109 internal linkage. *)
1124 (** [linkage g] returns the linkage of the global value [g].
1126 val linkage : llvalue -> Linkage.t var
1128 (** [set_linkage l g] sets the linkage of the global value [g] to [l].

Completed in 822 milliseconds