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

  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.cpp 18 hasThumb2(MF.getTarget().getSubtarget<ARMSubtarget>().hasThumb2()),
ARMMachineFunctionInfo.h 34 /// hasThumb2 - True if the target architecture supports Thumb2. Do not use
37 bool hasThumb2;
124 hasThumb2(false),
136 bool isThumb1OnlyFunction() const { return isThumb && !hasThumb2; }
137 bool isThumb2Function() const { return isThumb && hasThumb2; }
ARMSubtarget.cpp 189 HasThumb2 = false;
260 assert(hasV6T2Ops() || !hasThumb2());
309 if (!isThumb() || hasThumb2())
ARMSubtarget.h 102 /// HasThumb2 - True if Thumb2 instructions are supported.
103 bool HasThumb2;
407 bool isThumb1Only() const { return InThumbMode && !HasThumb2; }
408 bool isThumb2() const { return InThumbMode && HasThumb2; }
409 bool hasThumb2() const { return HasThumb2; }
ARMISelDAGToDAG.cpp     [all...]
ARMAsmPrinter.cpp 642 } else if (Subtarget->hasThumb2()) {
    [all...]

Completed in 268 milliseconds