OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DwarfLLVMRegPair
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/MC/
MCRegisterInfo.cpp
62
const
DwarfLLVMRegPair
*M = isEH ? EHL2DwarfRegs : L2DwarfRegs;
65
DwarfLLVMRegPair
Key = { RegNum, 0 };
66
const
DwarfLLVMRegPair
*I = std::lower_bound(M, M+Size, Key);
73
const
DwarfLLVMRegPair
*M = isEH ? EHDwarf2LRegs : Dwarf2LRegs;
76
DwarfLLVMRegPair
Key = { RegNum, 0 };
77
const
DwarfLLVMRegPair
*I = std::lower_bound(M, M+Size, Key);
/external/llvm/include/llvm/MC/
MCRegisterInfo.h
139
///
DwarfLLVMRegPair
- Emitted by tablegen so Dwarf<->LLVM reg mappings can be
141
struct
DwarfLLVMRegPair
{
145
bool operator<(
DwarfLLVMRegPair
RHS) const { return FromReg < RHS.FromReg; }
177
const
DwarfLLVMRegPair
*L2DwarfRegs; // LLVM to Dwarf regs mapping
178
const
DwarfLLVMRegPair
*EHL2DwarfRegs; // LLVM to Dwarf regs mapping EH
179
const
DwarfLLVMRegPair
*Dwarf2LRegs; // Dwarf to LLVM regs mapping
180
const
DwarfLLVMRegPair
*EHDwarf2LRegs; // Dwarf to LLVM regs mapping EH
269
void mapLLVMRegsToDwarfRegs(const
DwarfLLVMRegPair
*Map, unsigned Size,
283
void mapDwarfRegsToLLVMRegs(const
DwarfLLVMRegPair
*Map, unsigned Size,
Completed in 41 milliseconds