Changeset View
Changeset View
Standalone View
Standalone View
include/llvm/IR/DebugInfo.h
Context not available. | |||||
/// information for an inlined function arguments. | /// information for an inlined function arguments. | ||||
bool isInlinedFnArgument(const Function *CurFn); | bool isInlinedFnArgument(const Function *CurFn); | ||||
/// isVariablePiece - Return whether this is a piece of an aggregate | |||||
/// variable. | |||||
bool isVariablePiece() const; | |||||
/// getPieceOffset - Return the offset of this piece in bytes. | |||||
uint64_t getPieceOffset() const; | |||||
/// getPieceSize - Return the size of this piece in bytes. | |||||
uint64_t getPieceSize() const; | |||||
/// Return the size reported by the variable's type. | |||||
unsigned getSizeInBits(const DITypeIdentifierMap &Map); | |||||
void printExtendedName(raw_ostream &OS) const; | void printExtendedName(raw_ostream &OS) const; | ||||
}; | }; | ||||
Context not available. | |||||
/// cleanseInlinedVariable - Remove inlined scope from the variable. | /// cleanseInlinedVariable - Remove inlined scope from the variable. | ||||
DIVariable cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext); | DIVariable cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext); | ||||
/// getEntireVariable - Remove OpPiece exprs from the variable. | |||||
DIVariable getEntireVariable(DIVariable DV); | |||||
/// Construct DITypeIdentifierMap by going through retained types of each CU. | /// Construct DITypeIdentifierMap by going through retained types of each CU. | ||||
DITypeIdentifierMap generateDITypeIdentifierMap(const NamedMDNode *CU_Nodes); | DITypeIdentifierMap generateDITypeIdentifierMap(const NamedMDNode *CU_Nodes); | ||||
Context not available. |