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

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 437 std::unique_ptr<MCCodeEmitter> Emitter, bool IsThumb,
441 IsThumb(IsThumb), IsAndroid(IsAndroid) {
483 if (IsThumb)
500 assert(!IsThumb);
512 assert(IsThumb);
570 IsThumb = true;
573 IsThumb = false;
589 /// backend to track IsThumb for every label.
593 if (!IsThumb)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCELFStreamer.h 105 bool RelaxAll, bool IsThumb, bool IsAndroid);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 268 bool IsThumb = RE.Size & 0x2;
274 if (IsThumb)
358 bool IsThumb = HalfDiffKindBits & 0x2;
367 if (IsThumb)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMCallLowering.cpp 437 return STI.isThumb() ? ARM::tBL : ARM::BL;
439 if (STI.isThumb())
474 bool IsThumb = STI.isThumb();
475 if (IsThumb)
482 unsigned CalleeIdx = IsThumb ? 2 : 0;
ARMExpandPseudoInsts.cpp 1584 bool IsThumb = STI->isThumb();
1596 if (IsThumb) {
1618 if (!IsThumb)
1635 unsigned CMPrr = IsThumb ? ARM::tCMPhir : ARM::CMPrr;
1640 unsigned Bcc = IsThumb ? ARM::tBcc : ARM::Bcc;
1659 unsigned CMPri = IsThumb ? ARM::t2CMPri : ARM::CMPri;
1697 unsigned Flags, bool IsThumb,
1699 if (IsThumb) {
1712 bool IsThumb = STI->isThumb()
    [all...]
ARMISelLowering.cpp 475 if (Subtarget->isThumb() && Subtarget->hasVFP2Base() &&
1176 bool hasDivide = Subtarget->isThumb() ? Subtarget->hasDivideInThumbMode()
1287 (!Subtarget->isThumb() || Subtarget->hasV8MBaselineOps())) {
1291 if (!Subtarget->isThumb() || !Subtarget->isMClass())
1553 setMinFunctionAlignment(Subtarget->isThumb() ? Align(2) : Align(4));
1555 if (Subtarget->isThumb() || Subtarget->isThumb2())
2269 PreferIndirect = Subtarget->isThumb() && Subtarget->hasMinSize() &&
2484 bool isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
2527 isLocalARMFunc = !Subtarget->isThumb() && (isDef || !ARMInterworking);
2600 if (Subtarget->isThumb()) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
ARM.cpp 217 bool IsThumb = false;
219 IsThumb =
231 IsThumb = true;
249 if (IsThumb || IsMProfile || Triple.isOSWindows()) {
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCObjectFileInfo.cpp 516 const bool IsThumb = T.getArch() == Triple::thumb;
527 (IsThumb ? COFF::IMAGE_SCN_MEM_16BIT : (COFF::SectionCharacteristics)0) |
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 7577 bool IsThumb = SymbolFlags & SymbolRef::SF_Thumb;
7581 bool UseThumbTarget = IsThumb && ThumbTarget;
7662 (Arch == Triple::arm && !IsThumb)) {
7670 assert(IsThumb && "ARM mode should have been dealt with above");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 7271 bool IsThumb = getTarget().getTriple().getArch() == llvm::Triple::thumb;
7280 uint64_t ZExtValue = Value.zextOrTrunc(IsThumb ? 16 : 32).getZExtValue();
7283 IsThumb ? InlineAsm::get(FTy, ".inst.n 0x" + utohexstr(ZExtValue), "",

Completed in 64 milliseconds