Searched refs:DwarfLLVMRegPair (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/MC/
H A DMCRegisterInfo.cpp62 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/
H A DMCRegisterInfo.h139 /// DwarfLLVMRegPair - Emitted by tablegen so Dwarf<->LLVM reg mappings can be
141 struct DwarfLLVMRegPair { struct in class:llvm::MCRegisterInfo
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 436 milliseconds