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

  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 30 /// isThumb - True if this function is compiled under Thumb mode.
32 bool isThumb;
36 /// 'isThumb'.
118 isThumb(false),
130 isThumb(MF.getTarget().getSubtarget<ARMSubtarget>().isThumb()),
140 bool isThumbFunction() const { return isThumb; }
141 bool isThumb1OnlyFunction() const { return isThumb && !hasThumb2; }
142 bool isThumb2Function() const { return isThumb && hasThumb2; }
ARMAsmPrinter.h 112 return Subtarget->isThumb() ?
ARMConstantIslandPass.cpp 262 bool isThumb;
388 isThumb = AFI->isThumbFunction();
478 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
809 BBI.Unalign = isThumb ? 1 : 2;
811 else if (isThumb && mayOptimizeThumb2Instruction(I))
    [all...]
ARMSubtarget.cpp 158 if (!isThumb() || hasThumb2())
ARMSubtarget.h 270 bool isThumb() const { return InThumbMode; }
ARMFrameLowering.cpp 444 unsigned TCOpcode = STI.isThumb() ?
458 if (STI.isThumb()) MIB.addImm(ARMCC::AL).addReg(0);
461 TII.get(STI.isThumb() ? ARM::tTAILJMPr : ARM::TAILJMPr)).
768 bool isThumb = AFI->isThumbFunction();
774 unsigned Opc = isThumb ? ARM::t2SUBri : ARM::SUBri;
780 Opc = isThumb ? ARM::t2BICri : ARM::BICri;
790 Opc = isThumb ? ARM::tMOVr : ARM::MOVr;
794 if (!isThumb)
    [all...]
ARMISelDAGToDAG.cpp 339 bool isThumb2 = Subtarget->isThumb();
    [all...]
ARMISelLowering.cpp 179 if (Subtarget->isThumb() && Subtarget->hasVFP2()) {
679 !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
719 (Subtarget->hasV6Ops() && !Subtarget->isThumb())) {
    [all...]
ARMBaseRegisterInfo.cpp 49 FramePtr((STI.isTargetDarwin() || STI.isThumb()) ? ARM::R7 : ARM::R11),
ARMTargetTransformInfo.cpp 152 if (!ST->isThumb()) {
ARMBaseInstrInfo.cpp 409 bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
418 if (isThumb)
431 if (isThumb)
    [all...]
ARMFastISel.cpp 664 (Subtarget->isThumb() ? 4 : 8);
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 49 bool isThumb = false;
53 isThumb = true;
118 if (isThumb) {
ARMAsmBackend.cpp 146 bool isThumb() const { return isThumbMode; }
226 if (isThumb()) {
ARMMCCodeEmitter.cpp 52 bool isThumb() const {
57 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) != 0;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageGetter.java 54 boolean isThumb);
103 final boolean isThumb,
111 mCB.imageLoaded(position, offset, bitmap, isThumb);
ViewImage.java 522 boolean isThumb) {
531 if (isThumb) {
535 // isThumb: We always load thumb bitmap first, so we will
538 mImageView.setImageRotateBitmapResetBase(bitmap, isThumb);
805 final RotateBitmap bitmap, final boolean isThumb) {
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 123 bool isThumb() const {
128 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
131 return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
    [all...]
  /external/valgrind/main/VEX/priv/
guest_arm_toIR.c     [all...]

Completed in 170 milliseconds