/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | instruction.cpp | 38 opcode_(SpvOpNop), in Instruction() 46 opcode_(op), in Instruction() 54 opcode_(static_cast<SpvOp>(inst.opcode)), in Instruction() 59 assert((!IsDebugLineInst(opcode_) || dbg_line.empty()) && in Instruction() 74 opcode_(op), in Instruction() 92 opcode_(that.opcode_), in Instruction() 100 opcode_ = that.opcode_; in operator =() 111 clone->opcode_ = opcode_; in Clone() 136 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts() 537 switch (opcode_) { in IsOpcodeCodeMotionSafe()
|
D | instruction.h | 111 opcode_(SpvOpNop), in Instruction() 152 SpvOp opcode() const { return opcode_; } in opcode() 157 void SetOpcode(SpvOp op) { opcode_ = op; } in SetOpcode() 465 SpvOp opcode_; // Opcode variable 562 return opcode_ == SpvOpNop && !has_type_id_ && !has_result_id_ && in IsNop() 567 opcode_ = SpvOpNop; in ToNop() 708 switch (opcode_) { in HasLabels()
|
/external/angle/third_party/spirv-tools/src/source/opt/ |
D | instruction.cpp | 46 opcode_(SpvOpNop), in Instruction() 55 opcode_(op), in Instruction() 64 opcode_(static_cast<SpvOp>(inst.opcode)), in Instruction() 70 assert((!IsDebugLineInst(opcode_) || dbg_line.empty()) && in Instruction() 84 opcode_(static_cast<SpvOp>(inst.opcode)), in Instruction() 102 opcode_(op), in Instruction() 121 opcode_(that.opcode_), in Instruction() 134 opcode_ = that.opcode_; in operator =() 146 clone->opcode_ = opcode_; in Clone() 172 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts() [all …]
|
D | instruction.h | 161 opcode_(SpvOpNop), in Instruction() 206 SpvOp opcode() const { return opcode_; } in opcode() 211 void SetOpcode(SpvOp op) { opcode_ = op; } in SetOpcode() 527 SpvOp opcode_; // Opcode variable 634 return opcode_ == SpvOpNop && !has_type_id_ && !has_result_id_ && in IsNop() 639 opcode_ = SpvOpNop; in ToNop() 780 switch (opcode_) { in HasLabels()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | instruction.cpp | 44 opcode_(SpvOpNop), in Instruction() 53 opcode_(op), in Instruction() 62 opcode_(static_cast<SpvOp>(inst.opcode)), in Instruction() 68 assert((!IsDebugLineInst(opcode_) || dbg_line.empty()) && in Instruction() 82 opcode_(static_cast<SpvOp>(inst.opcode)), in Instruction() 100 opcode_(op), in Instruction() 119 opcode_(that.opcode_), in Instruction() 132 opcode_ = that.opcode_; in operator =() 144 clone->opcode_ = opcode_; in Clone() 170 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts() [all …]
|
D | instruction.h | 161 opcode_(SpvOpNop), in Instruction() 206 SpvOp opcode() const { return opcode_; } in opcode() 211 void SetOpcode(SpvOp op) { opcode_ = op; } in SetOpcode() 522 SpvOp opcode_; // Opcode variable 629 return opcode_ == SpvOpNop && !has_type_id_ && !has_result_id_ && in IsNop() 634 opcode_ = SpvOpNop; in ToNop() 775 switch (opcode_) { in HasLabels()
|
/external/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
D | ast.js | 81 this.opcode_ = opcode; 87 opcode() { return this.opcode_; }
|
/external/angle/third_party/spirv-tools/src/tools/sva/src/ |
D | ast.js | 81 this.opcode_ = opcode; 87 opcode() { return this.opcode_; }
|
/external/deqp-deps/SPIRV-Tools/tools/sva/src/ |
D | ast.js | 81 this.opcode_ = opcode; 87 opcode() { return this.opcode_; }
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_instruction.cc | 1344 switch (opcode_) { in HasSideEffectNoRecurse() 1459 switch (opcode_) { in CloneWithNewOperands() 1537 clone = CreateUnary(shape, opcode_, new_operands[0]); in CloneWithNewOperands() 1557 clone = CreateBinary(shape, opcode_, new_operands[0], new_operands[1]); in CloneWithNewOperands() 1564 clone = CreateTernary(shape, opcode_, new_operands[0], new_operands[1], in CloneWithNewOperands() 2130 switch (opcode_) { in to_apply() 2150 switch (opcode_) { in set_to_apply() 2168 CHECK_EQ(HloOpcode::kWhile, opcode_); in while_condition() 2173 CHECK_EQ(HloOpcode::kWhile, opcode_); in while_body() 2181 CHECK_EQ(HloOpcode::kWhile, opcode_); in set_while_condition() [all …]
|
D | hlo_matchers.cc | 33 if (instruction->opcode() != opcode_) { in MatchAndExplain() 68 *os << opcode_; in DescribeTo()
|
D | pattern_matcher.h | 1211 : opcode_(opcode), invert_(invert) {} 1214 if (invert_ && inst->opcode() == opcode_) { 1215 EXPLAIN << "HloInstruction has opcode " << HloOpcodeString(opcode_) 1219 if (!invert_ && inst->opcode() != opcode_) { 1221 << HloOpcodeString(opcode_); 1229 *os << "with opcode " << HloOpcodeString(opcode_); 1231 *os << "with any opcode other than " << HloOpcodeString(opcode_); 1236 HloOpcode opcode_;
|
D | hlo_matchers.h | 31 : opcode_(opcode), operands_(operands) {} in HloMatcher() 39 HloOpcode opcode_;
|
D | hlo_instruction.h | 961 HloOpcode opcode() const { return opcode_; } in opcode() 1935 HloOpcode opcode_; variable
|
/external/v8/src/compiler/ |
D | operator.h | 74 Opcode opcode() const { return opcode_; } in NON_EXPORTED_BASE() 138 Opcode opcode_; in NON_EXPORTED_BASE() local
|
D | operator.cc | 31 opcode_(opcode), in Operator()
|
/external/v8/src/compiler/backend/ |
D | instruction.h | 854 InstructionCode opcode() const { return opcode_; } in opcode() 907 opcode_ = ArchOpcodeField::encode(kArchNop); in OverwriteWithNop() 1007 InstructionCode opcode_; variable
|
D | instruction.cc | 295 : opcode_(opcode), in Instruction() 311 : opcode_(opcode), in Instruction()
|
/external/v8/src/compiler/backend/mips64/ |
D | instruction-selector-mips64.cc | 207 return opcode_; in opcode() 215 ArchOpcode opcode_; member 241 opcode_ = kMips64Lw; in Initialize() 242 if (g.CanBeImmediate(offset, opcode_)) { in Initialize()
|
/external/v8/src/compiler/backend/arm64/ |
D | instruction-selector-arm64.cc | 228 return opcode_; in opcode() 236 ArchOpcode opcode_; member 250 opcode_ = kArm64Ldrsw; in Initialize()
|