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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.cpp 25 : HasRedZone(MFI.hasRedZone()) {}
33 if (YamlMFI.HasRedZone.hasValue())
34 HasRedZone = YamlMFI.HasRedZone;
82 // HasRedZone here.
84 HasRedZone = false;
AArch64MachineFunctionInfo.h 131 Optional<bool> HasRedZone;
304 Optional<bool> hasRedZone() const { return HasRedZone; }
305 void setHasRedZone(bool s) { HasRedZone = s; }
421 Optional<bool> HasRedZone;
432 YamlIO.mapOptional("hasRedZone", MFI.HasRedZone);
AArch64InstrInfo.cpp 6849 // modify the stack. Check if hasRedZone is true or unknown; if yes, don't
6852 if (!AFI || AFI->hasRedZone().getValueOr(true))

Completed in 27 milliseconds