Home | History | Annotate | Download | only in llvm-c

Lines Matching refs:Global

213   LLVMAppendingLinkage,   /**< Special purpose, only applies to global arrays */
389 * Obtain the global context instance.
450 * Create a new, empty module in the global context.
719 * Obtain an integer type from the global context with a specified bit
773 * Obtain a floating point type from the global context.
858 * Create a new structure type in the global context.
1034 * global context.
1500 * Create a ConstantDataSequential with string content in the global context.
1503 * global context.
1535 * Create a ConstantStruct in the global Context.
1538 * global Context.
1681 * @defgroup LLVMCCoreValueConstantGlobals Global Values
1683 * This group contains functions that operate on global values. Functions in
1691 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global);
1692 LLVMBool LLVMIsDeclaration(LLVMValueRef Global);
1693 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global);
1694 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage);
1695 const char *LLVMGetSection(LLVMValueRef Global);
1696 void LLVMSetSection(LLVMValueRef Global, const char *Section);
1697 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global);
1698 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
1699 LLVMDLLStorageClass LLVMGetDLLStorageClass(LLVMValueRef Global);
1700 void LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class);
1701 LLVMBool LLVMHasUnnamedAddr(LLVMValueRef Global);
1702 void LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr);
1708 * global variables, load and store instructions.
1734 * @defgroup LLVMCoreValueConstantGlobalVariable Global Variables
1736 * This group contains functions that operate on global variable values.
1768 * @defgroup LLVMCoreValueConstantGlobalAlias Global Aliases
1770 * This group contains function that operate on global alias values.
2025 * Obtain a MDString value from the global context.
2038 * Obtain a MDNode value from the global context.
2189 * Append a basic block to the end of a function using the global
2209 * Insert a basic block in a function using the global context.
2842 /** Return the global pass registry, for use with initialization functions.