HomeSort by relevance Sort by last modified time
    Searched full:baseregs (Results 1 - 3 of 3) sorted by null

  /external/elfutils/src/backends/
i386_regs.c 86 static const char baseregs[][2] = local
98 name[1] = baseregs[regno][0];
99 name[2] = baseregs[regno][1];
x86_64_regs.c 83 static const char baseregs[][2] = local
92 name[1] = baseregs[regno][0];
93 name[2] = baseregs[regno][1];
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 239 /// BaseRegs - The list of "base" registers for this use. When this is
241 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
242 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
249 SmallVector<const SCEV *, 4> BaseRegs;
353 BaseRegs.push_back(Sum);
359 BaseRegs.push_back(Sum);
367 /// \see Formula::BaseRegs.
370 return Scale != 1 || !BaseRegs.empty();
371 return BaseRegs.size() <= 1;
375 /// \see Formula::BaseRegs
    [all...]

Completed in 161 milliseconds