Lines Matching refs:Global
1135 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { in LLVMGetGlobalParent() argument
1136 return wrap(unwrap<GlobalValue>(Global)->getParent()); in LLVMGetGlobalParent()
1139 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) { in LLVMIsDeclaration() argument
1140 return unwrap<GlobalValue>(Global)->isDeclaration(); in LLVMIsDeclaration()
1143 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) { in LLVMGetLinkage() argument
1144 switch (unwrap<GlobalValue>(Global)->getLinkage()) { in LLVMGetLinkage()
1180 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) { in LLVMSetLinkage() argument
1181 GlobalValue *GV = unwrap<GlobalValue>(Global); in LLVMSetLinkage()
1240 const char *LLVMGetSection(LLVMValueRef Global) { in LLVMGetSection() argument
1241 return unwrap<GlobalValue>(Global)->getSection().c_str(); in LLVMGetSection()
1244 void LLVMSetSection(LLVMValueRef Global, const char *Section) { in LLVMSetSection() argument
1245 unwrap<GlobalValue>(Global)->setSection(Section); in LLVMSetSection()
1248 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) { in LLVMGetVisibility() argument
1250 unwrap<GlobalValue>(Global)->getVisibility()); in LLVMGetVisibility()
1253 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) { in LLVMSetVisibility() argument
1254 unwrap<GlobalValue>(Global) in LLVMSetVisibility()