HomeSort by relevance Sort by last modified time
    Searched refs:isAsCheapAsAMove (Results 1 - 25 of 39) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrDesc.h 504 /// isAsCheapAsAMove - Returns true if this instruction has the same cost (or
510 bool isAsCheapAsAMove() const {
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 443 /// This method could be called by interface TargetInstrInfo::isAsCheapAsAMove
445 bool isAsCheapAsAMove() const { return Flags & (1 << MCID::CheapAsAMove); }
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.h 44 bool isAsCheapAsAMove(const MachineInstr &MI) const override;
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 250 bool isAsCheapAsAMove : 1;
InstrInfoEmitter.cpp 503 if (Inst.isAsCheapAsAMove) OS << "|(1ULL<<MCID::CheapAsAMove)";
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.h 241 bool isAsCheapAsAMove;
InstrInfoEmitter.cpp 295 if (Inst.isAsCheapAsAMove) OS << "|(1<<MCID::CheapAsAMove)";
CodeGenInstruction.cpp 317 isAsCheapAsAMove = R->getValueAsBit("isAsCheapAsAMove");
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCInstrDesc.h 485 /// This method could be called by interface TargetInstrInfo::isAsCheapAsAMove
487 bool isAsCheapAsAMove() const { return Flags & (1ULL << MCID::CheapAsAMove); }
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
CodeGenInstruction.h 253 bool isAsCheapAsAMove : 1;
InstrDocsEmitter.cpp 130 FLAG(isAsCheapAsAMove)
InstrInfoEmitter.cpp 598 if (Inst.isAsCheapAsAMove) OS << "|(1ULL<<MCID::CheapAsAMove)";
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 258 virtual bool isAsCheapAsAMove(const MachineInstr &MI) const {
259 return MI.isAsCheapAsAMove();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 331 virtual bool isAsCheapAsAMove(const MachineInstr &MI) const {
332 return MI.isAsCheapAsAMove();
    [all...]
MachineInstr.h 758 bool isAsCheapAsAMove(QueryType Type = AllInBundle) const {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeEdit.cpp 132 if (cheapAsAMove && !RM.OrigMI->getDesc().isAsCheapAsAMove())
MachineSink.cpp 294 if (!MI->isCopy() && !MI->getDesc().isAsCheapAsAMove())
MachineCSE.cpp 290 if (MI->getDesc().isAsCheapAsAMove()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64InstrInfo.h 51 bool isAsCheapAsAMove(const MachineInstr &MI) const override;
  /external/llvm/lib/CodeGen/
LiveRangeEdit.cpp 133 if (cheapAsAMove && !TII.isAsCheapAsAMove(*RM.OrigMI))
MachineCSE.cpp 392 if (TII->isAsCheapAsAMove(*MI)) {
MachineSink.cpp 369 if (!MI.isCopy() && !TII->isAsCheapAsAMove(MI))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
LiveRangeEdit.cpp 155 if (cheapAsAMove && !TII.isAsCheapAsAMove(*RM.OrigMI))
MachineCSE.cpp 415 if (TII->isAsCheapAsAMove(*MI)) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 704 bool isAsCheapAsAMove(QueryType Type = AllInBundle) const {
    [all...]

Completed in 745 milliseconds

1 2