tint->dawn: Shuffle source tree in preperation of merging repos

docs/    -> docs/tint/
fuzzers/ -> src/tint/fuzzers/
samples/ -> src/tint/cmd/
src/     -> src/tint/
test/    -> test/tint/

BUG=tint:1418,tint:1433

Change-Id: Id2aa79f989aef3245b80ef4aa37a27ff16cd700b
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/80482
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
This commit is contained in:
Ryan Harrison
2022-02-21 15:19:07 +00:00
committed by Tint LUCI CQ
parent 38f1e9c75c
commit dbc13af287
12231 changed files with 4897 additions and 4871 deletions

View File

@@ -0,0 +1,120 @@
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main" %_GLF_color
OpExecutionMode %main OriginUpperLeft
OpSource ESSL 310
OpName %main "main"
OpName %S "S"
OpMemberName %S 0 "x"
OpMemberName %S 1 "y"
OpName %func_struct_S_i1_i11_ "func(struct-S-i1-i11;"
OpName %arg "arg"
OpName %a "a"
OpName %b "b"
OpName %buf0 "buf0"
OpMemberName %buf0 0 "one"
OpName %_ ""
OpName %param "param"
OpName %_GLF_color "_GLF_color"
OpMemberDecorate %buf0 0 Offset 0
OpDecorate %buf0 Block
OpDecorate %_ DescriptorSet 0
OpDecorate %_ Binding 0
OpDecorate %_GLF_color Location 0
%void = OpTypeVoid
%13 = OpTypeFunction %void
%int = OpTypeInt 32 1
%S = OpTypeStruct %int %int
%_ptr_Function_S = OpTypePointer Function %S
%16 = OpTypeFunction %void %_ptr_Function_S
%int_1 = OpConstant %int 1
%_ptr_Function_int = OpTypePointer Function %int
%float = OpTypeFloat 32
%_ptr_Function_float = OpTypePointer Function %float
%float_5 = OpConstant %float 5
%uint = OpTypeInt 32 0
%uint_2 = OpConstant %uint 2
%_arr_S_uint_2 = OpTypeArray %S %uint_2
%_ptr_Function__arr_S_uint_2 = OpTypePointer Function %_arr_S_uint_2
%buf0 = OpTypeStruct %int
%_ptr_Uniform_buf0 = OpTypePointer Uniform %buf0
%_ = OpVariable %_ptr_Uniform_buf0 Uniform
%int_0 = OpConstant %int 0
%_ptr_Uniform_int = OpTypePointer Uniform %int
%bool = OpTypeBool
%float_0 = OpConstant %float 0
%false = OpConstantFalse %bool
%v4float = OpTypeVector %float 4
%_ptr_Output_v4float = OpTypePointer Output %v4float
%_GLF_color = OpVariable %_ptr_Output_v4float Output
%float_1 = OpConstant %float 1
%35 = OpConstantComposite %v4float %float_1 %float_0 %float_0 %float_1
%36 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0
%main = OpFunction %void None %13
%37 = OpLabel
%a = OpVariable %_ptr_Function_float Function
%b = OpVariable %_ptr_Function__arr_S_uint_2 Function
%param = OpVariable %_ptr_Function_S Function
OpStore %a %float_5
OpBranch %38
%38 = OpLabel
OpLoopMerge %39 %40 None
OpBranch %41
%41 = OpLabel
%42 = OpAccessChain %_ptr_Uniform_int %_ %int_0
%43 = OpLoad %int %42
%44 = OpAccessChain %_ptr_Function_int %b %43 %int_0
OpStore %44 %int_1
%45 = OpAccessChain %_ptr_Function_int %b %int_1 %int_0
%46 = OpLoad %int %45
%47 = OpIEqual %bool %46 %int_1
OpSelectionMerge %48 None
OpBranchConditional %47 %49 %48
%49 = OpLabel
%50 = OpAccessChain %_ptr_Uniform_int %_ %int_0
%51 = OpLoad %int %50
%52 = OpIEqual %bool %51 %int_1
OpSelectionMerge %53 None
OpBranchConditional %52 %54 %53
%54 = OpLabel
OpBranch %39
%53 = OpLabel
%55 = OpAccessChain %_ptr_Function_S %b %int_1
%56 = OpLoad %S %55
OpStore %param %56
%57 = OpFunctionCall %void %func_struct_S_i1_i11_ %param
%58 = OpLoad %S %param
%59 = OpAccessChain %_ptr_Function_S %b %int_1
OpStore %59 %58
%60 = OpAccessChain %_ptr_Function_int %b %int_1 %int_1
%61 = OpLoad %int %60
%62 = OpConvertSToF %float %61
OpStore %a %62
OpBranch %48
%48 = OpLabel
OpStore %a %float_0
OpBranch %40
%40 = OpLabel
OpBranchConditional %false %38 %39
%39 = OpLabel
%63 = OpLoad %float %a
%64 = OpFOrdEqual %bool %63 %float_5
OpSelectionMerge %65 None
OpBranchConditional %64 %66 %67
%66 = OpLabel
OpStore %_GLF_color %35
OpBranch %65
%67 = OpLabel
OpStore %_GLF_color %36
OpBranch %65
%65 = OpLabel
OpReturn
OpFunctionEnd
%func_struct_S_i1_i11_ = OpFunction %void None %16
%arg = OpFunctionParameter %_ptr_Function_S
%68 = OpLabel
%69 = OpAccessChain %_ptr_Function_int %arg %int_1
OpStore %69 %int_1
OpReturn
OpFunctionEnd

View File

@@ -0,0 +1,68 @@
struct S {
x : i32;
y : i32;
};
struct buf0 {
one : i32;
};
@group(0) @binding(0) var<uniform> x_10 : buf0;
var<private> x_GLF_color : vec4<f32>;
fn func_struct_S_i1_i11_(arg : ptr<function, S>) {
(*(arg)).y = 1;
return;
}
fn main_1() {
var a : f32;
var b : array<S, 2>;
var param : S;
a = 5.0;
loop {
let x_43 : i32 = x_10.one;
b[x_43].x = 1;
let x_46 : i32 = b[1].x;
if ((x_46 == 1)) {
let x_51 : i32 = x_10.one;
if ((x_51 == 1)) {
break;
}
let x_56 : S = b[1];
param = x_56;
func_struct_S_i1_i11_(&(param));
let x_58 : S = param;
b[1] = x_58;
let x_61 : i32 = b[1].y;
a = f32(x_61);
}
a = 0.0;
continuing {
if (false) {
} else {
break;
}
}
}
let x_63 : f32 = a;
if ((x_63 == 5.0)) {
x_GLF_color = vec4<f32>(1.0, 0.0, 0.0, 1.0);
} else {
x_GLF_color = vec4<f32>(0.0, 0.0, 0.0, 0.0);
}
return;
}
struct main_out {
@location(0)
x_GLF_color_1 : vec4<f32>;
};
@stage(fragment)
fn main() -> main_out {
main_1();
return main_out(x_GLF_color);
}