Project Alice
Loading...
Searching...
No Matches
Collaboration diagram for Comdats:

Enumerations

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

Functions

LLVMComdatRef LLVMGetOrInsertComdat (LLVMModuleRef M, const char *Name)
 
LLVMComdatRef LLVMGetComdat (LLVMValueRef V)
 
void LLVMSetComdat (LLVMValueRef V, LLVMComdatRef C)
 
LLVMComdatSelectionKind LLVMGetComdatSelectionKind (LLVMComdatRef C)
 
void LLVMSetComdatSelectionKind (LLVMComdatRef C, LLVMComdatSelectionKind Kind)
 

Detailed Description

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.

LLVMNoDeduplicateComdatSelectionKind 

No deduplication is performed.

LLVMSameSizeComdatSelectionKind 

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

Definition at line 29 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()

◆ 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()

◆ LLVMSetComdat()

void LLVMSetComdat ( LLVMValueRef  V,
LLVMComdatRef  C 
)

Assign the Comdat to the given global object.

See also
llvm::GlobalObject::setComdat()

◆ LLVMSetComdatSelectionKind()

void LLVMSetComdatSelectionKind ( LLVMComdatRef  C,
LLVMComdatSelectionKind  Kind 
)