/external/deqp-deps/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() 551 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() 457 SpvOp opcode_; // Opcode variable 554 return opcode_ == SpvOpNop && !has_type_id_ && !has_result_id_ && in IsNop() 559 opcode_ = SpvOpNop; in ToNop() 700 switch (opcode_) { in HasLabels()
|
/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() 551 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() 457 SpvOp opcode_; // Opcode variable 554 return opcode_ == SpvOpNop && !has_type_id_ && !has_result_id_ && in IsNop() 559 opcode_ = SpvOpNop; in ToNop() 700 switch (opcode_) { in HasLabels()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_instruction.cc | 1238 switch (opcode_) { in HasSideEffectNoRecurse() 1346 switch (opcode_) { in CloneWithNewOperands() 1418 clone = CreateUnary(shape, opcode_, new_operands[0]); in CloneWithNewOperands() 1438 clone = CreateBinary(shape, opcode_, new_operands[0], new_operands[1]); in CloneWithNewOperands() 1445 clone = CreateTernary(shape, opcode_, new_operands[0], new_operands[1], in CloneWithNewOperands() 1989 switch (opcode_) { in to_apply() 2009 switch (opcode_) { in set_to_apply() 2027 CHECK_EQ(HloOpcode::kWhile, opcode_); in while_condition() 2032 CHECK_EQ(HloOpcode::kWhile, opcode_); in while_body() 2040 CHECK_EQ(HloOpcode::kWhile, opcode_); in set_while_condition() [all …]
|
D | hlo_matchers.cc | 29 if (!instruction || instruction->opcode() != opcode_) { in MatchAndExplain() 64 *os << opcode_; in DescribeTo()
|
D | pattern_matcher.h | 1221 : opcode_(opcode), invert_(invert) {} 1224 if (invert_ && inst->opcode() == opcode_) { 1225 EXPLAIN << "HloInstruction has opcode " << HloOpcodeString(opcode_) 1229 if (!invert_ && inst->opcode() != opcode_) { 1231 << HloOpcodeString(opcode_); 1239 *os << "with opcode " << HloOpcodeString(opcode_); 1241 *os << "with any opcode other than " << HloOpcodeString(opcode_); 1246 HloOpcode opcode_;
|
D | hlo_matchers.h | 31 : opcode_(opcode), operands_(operands) {} in HloMatcher() 39 HloOpcode opcode_;
|
D | hlo_instruction.h | 810 HloOpcode opcode() const { return opcode_; } in opcode() 1737 HloOpcode opcode_; variable
|
/external/v8/src/compiler/ |
D | operator.h | 73 Opcode opcode() const { return opcode_; } in NON_EXPORTED_BASE() 137 Opcode opcode_; in NON_EXPORTED_BASE() local
|
D | operator.cc | 31 opcode_(opcode), in Operator()
|
D | instruction.h | 838 InstructionCode opcode() const { return opcode_; } in opcode() 892 opcode_ = ArchOpcodeField::encode(kArchNop); in OverwriteWithNop() 979 InstructionCode opcode_; variable
|
D | instruction.cc | 323 : opcode_(opcode), in Instruction() 336 : opcode_(opcode), in Instruction()
|
/external/v8/src/compiler/mips64/ |
D | instruction-selector-mips64.cc | 188 return opcode_; in opcode() 196 ArchOpcode opcode_; member 220 opcode_ = kMips64Lw; in Initialize() 221 if (g.CanBeImmediate(offset, opcode_)) { in Initialize()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 207 return opcode_; in opcode() 215 ArchOpcode opcode_; member 229 opcode_ = kArm64Ldrsw; in Initialize()
|