Home | History | Annotate | Download | only in compiler

Lines Matching refs:InstructionCode

34 const InstructionCode kGapInstruction = -1;
35 const InstructionCode kBlockStartInstruction = -2;
36 const InstructionCode kSourcePositionInstruction = -3;
427 InstructionCode opcode() const { return opcode_; }
438 static Instruction* New(Zone* zone, InstructionCode opcode) {
442 static Instruction* New(Zone* zone, InstructionCode opcode,
500 explicit Instruction(InstructionCode opcode)
507 Instruction(InstructionCode opcode, size_t output_count,
535 InstructionCode opcode_;
584 explicit GapInstruction(InstructionCode opcode) : Instruction(opcode) {