LLVM 19.0.0git
Namespaces | Macros | Functions
ExtractRanges.h File Reference
#include "llvm/ADT/AddressRanges.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include <stdint.h>

Go to the source code of this file.

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 
namespace  llvm::gsym
 

Macros

#define HEX8(v)   llvm::format_hex(v, 4)
 
#define HEX16(v)   llvm::format_hex(v, 6)
 
#define HEX32(v)   llvm::format_hex(v, 10)
 
#define HEX64(v)   llvm::format_hex(v, 18)
 

Functions

void llvm::gsym::skipRange (DataExtractor &Data, uint64_t &Offset)
 Skip an address range object in the specified data a the specified offset.
 
uint64_t llvm::gsym::skipRanges (DataExtractor &Data, uint64_t &Offset)
 Skip an address range object in the specified data a the specified offset.
 
raw_ostream & llvm::operator<< (raw_ostream &OS, const AddressRange &R)
 
raw_ostream & llvm::operator<< (raw_ostream &OS, const AddressRanges &AR)
 
AddressRange llvm::gsym::decodeRange (DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset)
 AddressRange objects are encoded and decoded to be relative to a base address.
 
void llvm::gsym::encodeRange (const AddressRange &Range, FileWriter &O, uint64_t BaseAddr)
 
void llvm::gsym::decodeRanges (AddressRanges &Ranges, DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset)
 Address ranges are decoded and encoded to be relative to a base address.
 
void llvm::gsym::encodeRanges (const AddressRanges &Ranges, FileWriter &O, uint64_t BaseAddr)
 

Macro Definition Documentation

◆ HEX16

#define HEX16 (   v)    llvm::format_hex(v, 6)

Definition at line 18 of file ExtractRanges.h.

◆ HEX32

#define HEX32 (   v)    llvm::format_hex(v, 10)

Definition at line 19 of file ExtractRanges.h.

◆ HEX64

#define HEX64 (   v)    llvm::format_hex(v, 18)

Definition at line 20 of file ExtractRanges.h.

◆ HEX8

#define HEX8 (   v)    llvm::format_hex(v, 4)

Definition at line 17 of file ExtractRanges.h.