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

  /external/swiftshader/third_party/subzero/src/
IceInstrumentation.h 75 virtual void instrumentSelect(LoweringContext &, class InstSelect *) {}
IceInst.h 725 class InstSelect : public InstHighLevel {
726 InstSelect() = delete;
727 InstSelect(const InstSelect &) = delete;
728 InstSelect &operator=(const InstSelect &) = delete;
731 static InstSelect *create(Cfg *Func, Variable *Dest, Operand *Condition,
733 return new (Func->allocate<InstSelect>())
734 InstSelect(Func, Dest, Condition, SourceTrue, SourceFalse);
744 InstSelect(Cfg *Func, Variable *Dest, Operand *Condition, Operand *Source1
    [all...]
IceInstrumentation.cpp 103 instrumentSelect(Context, llvm::cast<InstSelect>(Instr));
IceInst.cpp 480 InstSelect::InstSelect(Cfg *Func, Variable *Dest, Operand *Condition,
934 void InstSelect::dump(const Cfg *Func) const {
    [all...]
IceTargetLowering.h 415 virtual void lowerSelect(const InstSelect *Instr) = 0;
IceTargetLoweringX86BaseImpl.h 204 if (llvm::isa<InstSelect>(Instr))
875 } else if (auto *Select = llvm::dyn_cast<InstSelect>(Next)) {
879 NewInst = InstSelect::create(Func, Select->getDest(),
    [all...]
IceTargetLoweringX86Base.h 282 void lowerSelect(const InstSelect *Instr) override;
    [all...]
IceTargetLowering.cpp 464 lowerSelect(llvm::cast<InstSelect>(Instr));
    [all...]
IceConverter.cpp 534 return Ice::InstSelect::create(Func.get(), Dest, Cond, Source1, Source2);
    [all...]
IceTargetLoweringMIPS32.h 785 void lowerSelect(const InstSelect *Instr) override;
    [all...]
IceTargetLoweringMIPS32.cpp 276 Operand *SrcT = llvm::cast<InstSelect>(Instr)->getTrueOperand();
277 Operand *SrcF = llvm::cast<InstSelect>(Instr)->getFalseOperand();
278 Operand *Cond = llvm::cast<InstSelect>(Instr)->getCondition();
294 Context.insert<InstSelect>(Dst, OpC, OpT, OpF);
    [all...]
IceTargetLoweringARM32.h 289 void lowerSelect(const InstSelect *Instr) override;
    [all...]
PNaClTranslator.cpp     [all...]
IceTargetLoweringARM32.cpp     [all...]
  /external/swiftshader/src/Reactor/
SubzeroReactor.cpp     [all...]

Completed in 388 milliseconds