HomeSort by: relevance | last modified time | path
    Searched defs:mayLoad (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
InstructionInfoView.h 15 /// opcodes, and opcode properties (i.e. 'MayLoad', 'MayStore', 'HasSideEffects)
23 /// [4]: MayLoad
62 bool mayLoad = false;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonShuffler.h 103 bool mayLoad() const { return Load; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCInstrDesc.h 165 MayLoad,
429 bool mayLoad() const { return Flags & (1ULL << MCID::MayLoad); }
448 /// 2. Memory accesses. Use mayLoad/mayStore.
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 3499 bool mayLoad;
3505 : CDP(cdp), hasSideEffects(false), mayStore(false), mayLoad(false),
3517 if (hasSideEffects || mayLoad || mayStore || isVariadic)
3543 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
3556 if (N->NodeHasProperty(SDNPMayLoad, CDP)) mayLoad = true;
3564 mayLoad = true;// These may load memory.
3606 if (InstInfo.mayLoad != PatInfo.mayLoad && !InstInfo.mayLoad_Unset) {
3607 // Allow explicitly setting mayLoad = 1, even when the pattern has no loads.
3609 if (!InstInfo.mayLoad) {
    [all...]

Completed in 25 milliseconds