Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Doperator.h64 Opcode opcode() const { return opcode_; } in opcode()
121 Opcode opcode_;
Doperator.cc31 : opcode_(opcode), in Operator()
Dinstruction.h805 InstructionCode opcode() const { return opcode_; } in opcode()
859 opcode_ = ArchOpcodeField::encode(kArchNop); in OverwriteWithNop()
939 InstructionCode opcode_; variable
Dinstruction.cc262 : opcode_(opcode), in Instruction()
275 : opcode_(opcode), in Instruction()
/external/v8/test/unittests/compiler/
Dnode-test-utils.cc52 explicit NodeMatcher(IrOpcode::Value opcode) : opcode_(opcode) {} in NodeMatcher()
55 *os << "is a " << IrOpcode::Mnemonic(opcode_) << " node"; in DescribeTo()
64 if (node->opcode() != opcode_) { in MatchAndExplain()
66 << " but should have been " << IrOpcode::Mnemonic(opcode_); in MatchAndExplain()
73 const IrOpcode::Value opcode_; member in v8::internal::compiler::__anon50761a2f0111::NodeMatcher