HomeSort by relevance Sort by last modified time
    Searched refs:opcodeTable (Results 1 - 25 of 31) sorted by null

1 2

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
validate.h 125 /// @param[in] opcodeTable table of specified Opcodes
133 const spv_opcode_table opcodeTable,
144 /// @param[in] opcodeTable table of specified Opcodes
152 const spv_opcode_table opcodeTable,
validate.cpp 61 const spv_opcode_table opcodeTable,
68 spvValidateInstructionIDs(pInsts, count, opcodeTable, operandTable,
validate_id.cpp 55 : opcodeTable(opcodeTableArg),
73 const spv_opcode_table opcodeTable;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
lower.go 20 if !opcodeTable[v.Op].generic {
zcse.go 21 if opcodeTable[v.Op].argLen == 0 {
50 if opcodeTable[a.Op].argLen == 0 {
value.go 69 if opcodeTable[v.Op].auxType != auxInt8 {
76 if opcodeTable[v.Op].auxType != auxInt16 {
83 if opcodeTable[v.Op].auxType != auxInt32 {
90 if opcodeTable[v.Op].auxType != auxFloat32 && opcodeTable[v.Op].auxType != auxFloat64 {
96 if opcodeTable[v.Op].auxType != auxSymValAndOff {
131 switch opcodeTable[v.Op].auxType {
nilcheck.go 175 if opcodeTable[v.Op].nilCheck && unnecessary.contains(v.Args[0].ID) {
196 if opcodeTable[v.Op].faultOnNilArg0 {
199 if opcodeTable[v.Op].faultOnNilArg1 {
204 switch opcodeTable[v.Op].auxType {
222 v.Fatalf("can't handle aux %s (type %d) yet\n", v.auxString(), int(opcodeTable[v.Op].auxType))
deadcode.go 67 if (opcodeTable[v.Op].call || opcodeTable[v.Op].hasSideEffects) && !live[v.ID] {
regalloc.go 512 if opcodeTable[v.Op].call {
790 if opcodeTable[v.Op].call {
1055 desired.clobber(opcodeTable[v.Op].reg.clobbers)
1056 for _, j := range opcodeTable[v.Op].reg.inputs {
1063 if opcodeTable[v.Op].resultInArg0 {
1064 if opcodeTable[v.Op].commutative {
    [all...]
flagalloc.go 134 if opcodeTable[v.Op].clobberFlags {
check.go 112 nArgs := opcodeTable[v.Op].argLen
121 switch opcodeTable[v.Op].auxType {
likelyadjust.go 67 if opcodeTable[v.Op].call {
232 if opcodeTable[v.Op].call {
config.go 296 opcodeTable[OpARMCALLudiv].reg.clobbers |= 1 << 12 // R12
cse.go 94 if opcodeTable[e[0].Op].commutative {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
lower.go 20 if !opcodeTable[v.Op].generic {
zcse.go 21 if opcodeTable[v.Op].argLen == 0 {
50 if opcodeTable[a.Op].argLen == 0 {
value.go 69 if opcodeTable[v.Op].auxType != auxInt8 {
76 if opcodeTable[v.Op].auxType != auxInt16 {
83 if opcodeTable[v.Op].auxType != auxInt32 {
90 if opcodeTable[v.Op].auxType != auxFloat32 && opcodeTable[v.Op].auxType != auxFloat64 {
96 if opcodeTable[v.Op].auxType != auxSymValAndOff {
131 switch opcodeTable[v.Op].auxType {
nilcheck.go 175 if opcodeTable[v.Op].nilCheck && unnecessary.contains(v.Args[0].ID) {
196 if opcodeTable[v.Op].faultOnNilArg0 {
199 if opcodeTable[v.Op].faultOnNilArg1 {
204 switch opcodeTable[v.Op].auxType {
222 v.Fatalf("can't handle aux %s (type %d) yet\n", v.auxString(), int(opcodeTable[v.Op].auxType))
deadcode.go 67 if (opcodeTable[v.Op].call || opcodeTable[v.Op].hasSideEffects) && !live[v.ID] {
regalloc.go 512 if opcodeTable[v.Op].call {
790 if opcodeTable[v.Op].call {
1055 desired.clobber(opcodeTable[v.Op].reg.clobbers)
1056 for _, j := range opcodeTable[v.Op].reg.inputs {
1063 if opcodeTable[v.Op].resultInArg0 {
1064 if opcodeTable[v.Op].commutative {
    [all...]
flagalloc.go 134 if opcodeTable[v.Op].clobberFlags {
check.go 112 nArgs := opcodeTable[v.Op].argLen
121 switch opcodeTable[v.Op].auxType {
likelyadjust.go 67 if opcodeTable[v.Op].call {
232 if opcodeTable[v.Op].call {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
main.go 149 fmt.Fprintln(w, "var opcodeTable = [...]opInfo{")
282 fmt.Fprintln(w, "func (o Op) Asm() obj.As {return opcodeTable[o].asm}")
285 fmt.Fprintln(w, "func (o Op) String() string {return opcodeTable[o].name }")
287 fmt.Fprintln(w, "func (o Op) UsesScratch() bool { return opcodeTable[o].usesScratch }")
289 fmt.Fprintln(w, "func (o Op) SymEffect() SymEffect { return opcodeTable[o].symEffect }")
290 fmt.Fprintln(w, "func (o Op) IsCall() bool { return opcodeTable[o].call }")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
main.go 149 fmt.Fprintln(w, "var opcodeTable = [...]opInfo{")
282 fmt.Fprintln(w, "func (o Op) Asm() obj.As {return opcodeTable[o].asm}")
285 fmt.Fprintln(w, "func (o Op) String() string {return opcodeTable[o].name }")
287 fmt.Fprintln(w, "func (o Op) UsesScratch() bool { return opcodeTable[o].usesScratch }")
289 fmt.Fprintln(w, "func (o Op) SymEffect() SymEffect { return opcodeTable[o].symEffect }")
290 fmt.Fprintln(w, "func (o Op) IsCall() bool { return opcodeTable[o].call }")

Completed in 797 milliseconds

1 2