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

  /external/swiftshader/src/Reactor/
Nucleus.hpp 27 class SwitchCases;
148 static SwitchCases *createSwitch(Value *control, BasicBlock *defaultBranch, unsigned numCases);
149 static void addSwitchCase(SwitchCases *switchCases, int label, BasicBlock *branch);
LLVMReactor.cpp 93 class SwitchCases : public llvm::SwitchInst {};
817 SwitchCases *Nucleus::createSwitch(Value *control, BasicBlock *defaultBranch, unsigned numCases)
819 return reinterpret_cast<SwitchCases*>(::builder->CreateSwitch(control, defaultBranch, numCases));
822 void Nucleus::addSwitchCase(SwitchCases *switchCases, int label, BasicBlock *branch)
824 switchCases->addCase(llvm::ConstantInt::get(llvm::Type::getInt32Ty(*::context), label, true), branch);
    [all...]
SubzeroReactor.cpp 145 class SwitchCases : public Ice::InstSwitch {};
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
SelectionDAGBuilder.h 298 /// SwitchCases - Vector of CaseBlock structures used to communicate
300 std::vector<CaseBlock> SwitchCases;
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
SelectionDAGBuilder.h 573 /// SwitchCases - Vector of CaseBlock structures used to communicate
575 std::vector<CaseBlock> SwitchCases;
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/swiftshader/src/Shader/
PixelProgram.cpp     [all...]
VertexProgram.cpp     [all...]

Completed in 1202 milliseconds