HomeSort by: relevance | last modified time | path
    Searched defs:TmpOffset (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 263 uint64_t TmpOffset = Addr.getOffset();
275 TmpOffset += SL->getElementOffset(Idx);
281 TmpOffset += CI->getSExtValue() * S;
295 TmpOffset += CI->getSExtValue() * S;
306 if (int64_t(TmpOffset) >= 0) {
308 Addr.setOffset(TmpOffset);
340 uint64_t TmpOffset = Addr.getOffset() + CI->getSExtValue();
341 if (int64_t(TmpOffset) >= 0) {
342 Addr.setOffset(TmpOffset);
360 int64_t TmpOffset = Addr.getOffset() - CI->getSExtValue()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 487 int64_t TmpOffset = Addr.getOffset();
497 TmpOffset += SL->getElementOffset(Idx);
503 TmpOffset += CI->getSExtValue() * S;
510 TmpOffset += CI->getSExtValue() * S;
521 Addr.setOffset(TmpOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 341 long TmpOffset = Addr.Offset;
352 TmpOffset += SL->getElementOffset(Idx);
358 TmpOffset += CI->getSExtValue() * S;
365 TmpOffset += CI->getSExtValue() * S;
377 Addr.Offset = TmpOffset;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 609 uint64_t TmpOffset = Addr.getOffset();
619 TmpOffset += SL->getElementOffset(Idx);
625 TmpOffset += CI->getSExtValue() * S;
632 TmpOffset += CI->getSExtValue() * S;
644 Addr.setOffset(TmpOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMFastISel.cpp 739 int TmpOffset = Addr.Offset;
750 TmpOffset += SL->getElementOffset(Idx);
756 TmpOffset += CI->getSExtValue() * S;
763 TmpOffset += CI->getSExtValue() * S;
775 Addr.Offset = TmpOffset;

Completed in 58 milliseconds