/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/ |
validate.h | 132 /// @param[in] opcodeTable table of specified Opcodes 141 const spv_opcode_table opcodeTable, 153 /// @param[in] opcodeTable table of specified Opcodes 161 const spv_opcode_table opcodeTable,
|
validate.cpp | 67 const spv_opcode_table opcodeTable, const spv_operand_table operandTable, 75 spvCheckReturn(spvValidateInstructionIDs(pInsts, count, opcodeTable,
|
validate_id.cpp | 61 : opcodeTable(opcodeTableArg), 79 const spv_opcode_table opcodeTable; [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
value.go | 65 if opcodeTable[v.Op].auxType != auxInt8 { 72 if opcodeTable[v.Op].auxType != auxInt16 { 79 if opcodeTable[v.Op].auxType != auxInt32 { 86 if opcodeTable[v.Op].auxType != auxFloat32 && opcodeTable[v.Op].auxType != auxFloat64 { 92 if opcodeTable[v.Op].auxType != auxSymValAndOff { 114 switch opcodeTable[v.Op].auxType {
|
lower.go | 20 if !opcodeTable[v.Op].generic {
|
zcse.go | 19 if opcodeTable[v.Op].argLen == 0 { 48 if opcodeTable[a.Op].argLen == 0 {
|
nilcheck.go | 163 if opcodeTable[v.Op].nilCheck && unnecessary.contains(v.Args[0].ID) { 183 if opcodeTable[v.Op].faultOnNilArg0 { 186 if opcodeTable[v.Op].faultOnNilArg1 { 191 switch opcodeTable[v.Op].auxType { 209 v.Fatalf("can't handle aux %s (type %d) yet\n", v.auxString(), int(opcodeTable[v.Op].auxType))
|
check.go | 108 nArgs := opcodeTable[v.Op].argLen 117 switch opcodeTable[v.Op].auxType {
|
regalloc.go | 468 if opcodeTable[v.Op].call { 1029 desired.clobber(opcodeTable[v.Op].reg.clobbers) 1030 for _, j := range opcodeTable[v.Op].reg.inputs { 1037 if opcodeTable[v.Op].resultInArg0 { 1038 if opcodeTable[v.Op].commutative { 1058 regspec := opcodeTable[v.Op].reg [all...] |
flagalloc.go | 134 if opcodeTable[v.Op].clobberFlags {
|
likelyadjust.go | 58 if opcodeTable[v.Op].call { 222 if opcodeTable[v.Op].call {
|
deadcode.go | 67 if opcodeTable[v.Op].call && !live[v.ID] {
|
cse.go | 42 if opcodeTable[v.Op].commutative && len(v.Args) == 2 && v.Args[1].ID < v.Args[0].ID {
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
value.go | 65 if opcodeTable[v.Op].auxType != auxInt8 { 72 if opcodeTable[v.Op].auxType != auxInt16 { 79 if opcodeTable[v.Op].auxType != auxInt32 { 86 if opcodeTable[v.Op].auxType != auxFloat32 && opcodeTable[v.Op].auxType != auxFloat64 { 92 if opcodeTable[v.Op].auxType != auxSymValAndOff { 114 switch opcodeTable[v.Op].auxType {
|
lower.go | 20 if !opcodeTable[v.Op].generic {
|
zcse.go | 19 if opcodeTable[v.Op].argLen == 0 { 48 if opcodeTable[a.Op].argLen == 0 {
|
nilcheck.go | 163 if opcodeTable[v.Op].nilCheck && unnecessary.contains(v.Args[0].ID) { 183 if opcodeTable[v.Op].faultOnNilArg0 { 186 if opcodeTable[v.Op].faultOnNilArg1 { 191 switch opcodeTable[v.Op].auxType { 209 v.Fatalf("can't handle aux %s (type %d) yet\n", v.auxString(), int(opcodeTable[v.Op].auxType))
|
check.go | 108 nArgs := opcodeTable[v.Op].argLen 117 switch opcodeTable[v.Op].auxType {
|
regalloc.go | 468 if opcodeTable[v.Op].call { 1029 desired.clobber(opcodeTable[v.Op].reg.clobbers) 1030 for _, j := range opcodeTable[v.Op].reg.inputs { 1037 if opcodeTable[v.Op].resultInArg0 { 1038 if opcodeTable[v.Op].commutative { 1058 regspec := opcodeTable[v.Op].reg [all...] |
flagalloc.go | 134 if opcodeTable[v.Op].clobberFlags {
|
likelyadjust.go | 58 if opcodeTable[v.Op].call { 222 if opcodeTable[v.Op].call {
|
deadcode.go | 67 if opcodeTable[v.Op].call && !live[v.ID] {
|
cse.go | 42 if opcodeTable[v.Op].commutative && len(v.Args) == 2 && v.Args[1].ID < v.Args[0].ID {
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/ |
main.go | 147 fmt.Fprintln(w, "var opcodeTable = [...]opInfo{") 265 fmt.Fprintln(w, "func (o Op) Asm() obj.As {return opcodeTable[o].asm}") 268 fmt.Fprintln(w, "func (o Op) String() string {return opcodeTable[o].name }") 270 fmt.Fprintln(w, "func (o Op) UsesScratch() bool { return opcodeTable[o].usesScratch }")
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
main.go | 147 fmt.Fprintln(w, "var opcodeTable = [...]opInfo{") 265 fmt.Fprintln(w, "func (o Op) Asm() obj.As {return opcodeTable[o].asm}") 268 fmt.Fprintln(w, "func (o Op) String() string {return opcodeTable[o].name }") 270 fmt.Fprintln(w, "func (o Op) UsesScratch() bool { return opcodeTable[o].usesScratch }")
|