Home | History | Annotate | Download | only in compiler

Lines Matching refs:InstructionOperand

39   Instruction* Emit(InstructionCode opcode, InstructionOperand* output,
40 size_t temp_count = 0, InstructionOperand* *temps = NULL);
41 Instruction* Emit(InstructionCode opcode, InstructionOperand* output,
42 InstructionOperand* a, size_t temp_count = 0,
43 InstructionOperand* *temps = NULL);
44 Instruction* Emit(InstructionCode opcode, InstructionOperand* output,
45 InstructionOperand* a, InstructionOperand* b,
46 size_t temp_count = 0, InstructionOperand* *temps = NULL);
47 Instruction* Emit(InstructionCode opcode, InstructionOperand* output,
48 InstructionOperand* a, InstructionOperand* b,
49 InstructionOperand* c, size_t temp_count = 0,
50 InstructionOperand* *temps = NULL);
51 Instruction* Emit(InstructionCode opcode, InstructionOperand* output,
52 InstructionOperand* a, InstructionOperand* b,
53 InstructionOperand* c, InstructionOperand* d,
54 size_t temp_count = 0, InstructionOperand* *temps = NULL);
56 InstructionOperand** outputs, size_t input_count,
57 InstructionOperand** inputs, size_t temp_count = 0,
58 InstructionOperand* *temps = NULL);