Displaying 1 result from an estimated 1 matches for "cube_r600".
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...switch(opcode) {
> + default: return false;
> + case AMDGPU::DOT4_r600:
> + case AMDGPU::DOT4_eg:
> + 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...