HomeSort by relevance Sort by last modified time
    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; }
180 const DwarfLLVMRegPair *L2DwarfRegs; // LLVM to Dwarf regs mapping
181 const DwarfLLVMRegPair *EHL2DwarfRegs; // LLVM to Dwarf regs mapping EH
182 const DwarfLLVMRegPair *Dwarf2LRegs; // Dwarf to LLVM regs mapping
183 const DwarfLLVMRegPair *EHDwarf2LRegs; // Dwarf to LLVM regs mapping EH
278 void mapLLVMRegsToDwarfRegs(const DwarfLLVMRegPair *Map, unsigned Size,
292 void mapDwarfRegsToLLVMRegs(const DwarfLLVMRegPair *Map, unsigned Size,

Completed in 1076 milliseconds