LLVM  8.0.1
Enumerations | Functions
Comdat.h File Reference
#include "llvm-c/Types.h"
Include dependency graph for Comdat.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  LLVMComdatSelectionKind {
  LLVMAnyComdatSelectionKind, LLVMExactMatchComdatSelectionKind, LLVMLargestComdatSelectionKind, LLVMNoDuplicatesComdatSelectionKind,
  LLVMSameSizeComdatSelectionKind
}
 

Functions

LLVMComdatRef LLVMGetOrInsertComdat (LLVMModuleRef M, const char *Name)
 Return the Comdat in the module with the specified name. More...
 
LLVMComdatRef LLVMGetComdat (LLVMValueRef V)
 Get the Comdat assigned to the given global object. More...
 
void LLVMSetComdat (LLVMValueRef V, LLVMComdatRef C)
 Assign the Comdat to the given global object. More...
 
LLVMComdatSelectionKind LLVMGetComdatSelectionKind (LLVMComdatRef C)
 
void LLVMSetComdatSelectionKind (LLVMComdatRef C, LLVMComdatSelectionKind Kind)
 

Enumeration Type Documentation

◆ LLVMComdatSelectionKind

Enumerator
LLVMAnyComdatSelectionKind 

The linker may choose any COMDAT.

LLVMExactMatchComdatSelectionKind 

The data referenced by the COMDAT must be the same.

LLVMLargestComdatSelectionKind 

The linker will choose the largest COMDAT.

LLVMNoDuplicatesComdatSelectionKind 

No other Module may specify this COMDAT.

LLVMSameSizeComdatSelectionKind 

The data referenced by the COMDAT must be the same size.

Definition at line 23 of file Comdat.h.

Function Documentation

◆ LLVMGetComdat()

LLVMComdatRef LLVMGetComdat ( LLVMValueRef  V)

Get the Comdat assigned to the given global object.

See also
llvm::GlobalObject::getComdat()

Definition at line 33 of file Comdat.cpp.

References G, llvm::GlobalObject::getComdat(), and llvm::wrap().

◆ LLVMGetComdatSelectionKind()

LLVMComdatSelectionKind LLVMGetComdatSelectionKind ( LLVMComdatRef  C)

◆ LLVMGetOrInsertComdat()

LLVMComdatRef LLVMGetOrInsertComdat ( LLVMModuleRef  M,
const char Name 
)

Return the Comdat in the module with the specified name.

It is created if it didn't already exist.

See also
llvm::Module::getOrInsertComdat()

Definition at line 29 of file Comdat.cpp.

References llvm::unwrap(), and llvm::wrap().

◆ LLVMSetComdat()

void LLVMSetComdat ( LLVMValueRef  V,
LLVMComdatRef  C 
)

Assign the Comdat to the given global object.

See also
llvm::GlobalObject::setComdat()

Definition at line 38 of file Comdat.cpp.

References G, llvm::GlobalObject::setComdat(), and llvm::unwrap().

◆ LLVMSetComdatSelectionKind()

void LLVMSetComdatSelectionKind ( LLVMComdatRef  C,
LLVMComdatSelectionKind  Kind 
)