HomeSort by: relevance | last modified time | path
    Searched refs:DwarfLLVMRegPair (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCRegisterInfo.cpp 69 const DwarfLLVMRegPair *M = isEH ? EHL2DwarfRegs : L2DwarfRegs;
74 DwarfLLVMRegPair Key = { RegNum, 0 };
75 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
83 const DwarfLLVMRegPair *M = isEH ? EHDwarf2LRegs : Dwarf2LRegs;
88 DwarfLLVMRegPair Key = { RegNum, 0 };
89 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
  /src/external/apache2/llvm/dist/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; }
181 const DwarfLLVMRegPair *L2DwarfRegs; // LLVM to Dwarf regs mapping
182 const DwarfLLVMRegPair *EHL2DwarfRegs; // LLVM to Dwarf regs mapping EH
183 const DwarfLLVMRegPair *Dwarf2LRegs; // Dwarf to LLVM regs mapping
184 const DwarfLLVMRegPair *EHDwarf2LRegs; // Dwarf to LLVM regs mapping EH
397 void mapLLVMRegsToDwarfRegs(const DwarfLLVMRegPair *Map, unsigned Size,
411 void mapDwarfRegsToLLVMRegs(const DwarfLLVMRegPair *Map, unsigned Size,

Completed in 71 milliseconds