search for: isfcop

Displaying 1 result from an estimated 1 matches for "isfcop".

Did you mean: ipcop
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...; + return true; > + } > +} > + > +bool AMDGPU::isCubeOp(unsigned opcode) > +{ > + switch(opcode) { > + default: return false; > + case AMDGPU::CUBE_r600: > + case AMDGPU::CUBE_eg: > + return true; > + } > +} > + > + > +bool AMDGPU::isFCOp(unsigned opcode) > +{ > + switch(opcode) { > + default: return false; > + case AMDGPU::BREAK_LOGICALZ_f32: > + case AMDGPU::BREAK_LOGICALNZ_i32: > + case AMDGPU::BREAK_LOGICALZ_i32: > + case AMDGPU::BREAK_LOGICALNZ_f32: > + case AMDGPU::CONTINUE_LOGICALNZ_f32: > +...