Home
last modified time | relevance | path

Searched refs:opcode_ (Results 1 – 15 of 15) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/opt/
Dinstruction.cpp38 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()
Dinstruction.h111 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/
Dinstruction.cpp38 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()
Dinstruction.h111 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/
Dhlo_instruction.cc1238 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 …]
Dhlo_matchers.cc29 if (!instruction || instruction->opcode() != opcode_) { in MatchAndExplain()
64 *os << opcode_; in DescribeTo()
Dpattern_matcher.h1221 : 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_;
Dhlo_matchers.h31 : opcode_(opcode), operands_(operands) {} in HloMatcher()
39 HloOpcode opcode_;
Dhlo_instruction.h810 HloOpcode opcode() const { return opcode_; } in opcode()
1737 HloOpcode opcode_; variable
/external/v8/src/compiler/
Doperator.h73 Opcode opcode() const { return opcode_; } in NON_EXPORTED_BASE()
137 Opcode opcode_; in NON_EXPORTED_BASE() local
Doperator.cc31 opcode_(opcode), in Operator()
Dinstruction.h838 InstructionCode opcode() const { return opcode_; } in opcode()
892 opcode_ = ArchOpcodeField::encode(kArchNop); in OverwriteWithNop()
979 InstructionCode opcode_; variable
Dinstruction.cc323 : opcode_(opcode), in Instruction()
336 : opcode_(opcode), in Instruction()
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc188 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/
Dinstruction-selector-arm64.cc207 return opcode_; in opcode()
215 ArchOpcode opcode_; member
229 opcode_ = kArm64Ldrsw; in Initialize()