HomeSort by relevance Sort by last modified time
    Searched defs:isThumb (Results 1 - 24 of 24) sorted by null

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.h 74 bool isThumb() const { return isThumbMode; }
ARMMCTargetDesc.cpp 134 bool isThumb =
143 if (isThumb) {
ARMMCCodeEmitter.cpp 53 bool isThumb(const MCSubtargetInfo &STI) const {
57 return isThumb(STI) && STI.getFeatureBits()[ARM::FeatureThumb2];
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 45 bool isThumb = false;
49 isThumb = true;
85 if (isThumb) {
ARMAsmBackend.cpp 122 bool isThumb() const { return isThumbMode; }
142 if (isThumb()) {
ARMMCCodeEmitter.cpp 50 bool isThumb() const {
55 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) != 0;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 30 /// isThumb - True if this function is compiled under Thumb mode.
32 bool isThumb;
36 /// 'isThumb'.
126 isThumb(false),
138 bool isThumbFunction() const { return isThumb; }
139 bool isThumb1OnlyFunction() const { return isThumb && !hasThumb2; }
140 bool isThumb2Function() const { return isThumb && hasThumb2; }
ARMAsmPrinter.cpp 434 static bool isThumb(const MCSubtargetInfo& STI) {
442 const bool WasThumb = isThumb(StartInfo);
443 if (!EndInfo || WasThumb != isThumb(*EndInfo)) {
460 bool isThumb = TT.getArch() == Triple::thumb ||
464 if (!M.getModuleInlineAsm().empty() && isThumb)
    [all...]
ARMConstantIslandPass.cpp 273 bool isThumb;
410 isThumb = AFI->isThumbFunction();
499 if (isThumb && STI->hasV8MBaselineOps())
511 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
    [all...]
ARMFrameLowering.cpp     [all...]
ARMBaseInstrInfo.cpp 419 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
430 if (isThumb)
443 if (isThumb)
681 unsigned Opc = Subtarget.isThumb()
702 unsigned Opc = Subtarget.isThumb()
    [all...]
ARMISelDAGToDAG.cpp 339 bool isThumb2 = Subtarget->isThumb();
476 if (Subtarget->isThumb()) {
    [all...]
ARMSubtarget.h 444 return HasDataBarrier || (hasV6Ops() && !isThumb());
548 bool isThumb() const { return InThumbMode; }
ARMISelLowering.cpp 172 if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMMachineFunctionInfo.h 29 /// isThumb - True if this function is compiled under Thumb mode.
31 bool isThumb;
35 /// 'isThumb'.
100 isThumb(false),
111 isThumb(MF.getTarget().getSubtarget<ARMSubtarget>().isThumb()),
121 bool isThumbFunction() const { return isThumb; }
122 bool isThumb1OnlyFunction() const { return isThumb && !hasThumb2; }
123 bool isThumb2Function() const { return isThumb && hasThumb2; }
ARMSubtarget.h 232 bool isThumb() const { return InThumbMode; }
ARMBaseInstrInfo.cpp 407 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
416 if (isThumb)
429 if (isThumb)
    [all...]
ARMConstantIslandPass.cpp 171 bool isThumb;
233 if (!isThumb)
249 unsigned UserOffset = GetOffsetOf(U.MI) + (isThumb ? 4 : 8);
279 isThumb = AFI->isThumbFunction();
368 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
653 if (isThumb &&
678 if (isThumb &&
741 unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B;
742 if (!isThumb)
    [all...]
ARMFastISel.cpp 93 bool isThumb;
104 isThumb = AFI->isThumbFunction();
553 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
568 if (isThumb)
589 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
599 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
609 if (isThumb) {
626 if (isThumb)
674 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
857 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass
    [all...]
ARMISelLowering.cpp 186 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
619 (Subtarget->hasV6Ops() && !Subtarget->isThumb())) {
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 812 bool isThumb = TM.getTargetTriple().getArch() == Triple::thumb;
822 (isThumb ? COFF::IMAGE_SCN_MEM_16BIT : (COFF::SectionCharacteristics)0);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 104 bool isThumb() const {
109 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
112 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 247 bool isThumb() const {
252 return isThumb() && !getSTI().getFeatureBits()[ARM::FeatureThumb2];
255 return isThumb() && getSTI().getFeatureBits()[ARM::FeatureThumb2];
    [all...]
  /external/valgrind/VEX/priv/
guest_arm_toIR.c     [all...]

Completed in 1148 milliseconds