Home | History | Annotate | Download | only in code_gen

Lines Matching full:instruction

58   // Returns the llvm::Value* corresponding to the output of @instruction.
59 llvm::Value* GetValue(InstructionNode* instruction) {
60 return GetValue(instruction->Id());
66 // Records @value as corresponding to the sea_ir::InstructionNode @instruction.
67 void AddValue(InstructionNode* instruction, llvm::Value* value) {
68 AddValue(instruction->Id(), value);
109 void Visit(InstructionNode* instruction) { }
111 void Visit(UnnamedConstInstructionNode* instruction) { }
112 void Visit(ConstInstructionNode* instruction) { }
113 void Visit(ReturnInstructionNode* instruction) { }
114 void Visit(IfNeInstructionNode* instruction) { }
115 // void Visit(AddIntLitInstructionNode* instruction) { }
116 void Visit(MoveResultInstructionNode* instruction) { }
117 void Visit(InvokeStaticInstructionNode* instruction) { }
118 void Visit(AddIntInstructionNode* instruction) { }
119 void Visit(GotoInstructionNode* instruction) { }
120 void Visit(IfEqzInstructionNode* instruction) { }
134 void Visit(UnnamedConstInstructionNode* instruction) { }
135 void Visit(ConstInstructionNode* instruction) { }
136 void Visit(ReturnInstructionNode* instruction) { }
137 void Visit(IfNeInstructionNode* instruction) { }
138 // void Visit(AddIntLitInstructionNode* instruction) { }
139 void Visit(MoveResultInstructionNode* instruction) { }
140 void Visit(InvokeStaticInstructionNode* instruction) { }
141 void Visit(AddIntInstructionNode* instruction) { }
142 void Visit(GotoInstructionNode* instruction) { }
143 void Visit(IfEqzInstructionNode* instruction) { }
155 void Visit(UnnamedConstInstructionNode* instruction);
156 void Visit(ConstInstructionNode* instruction);
157 void Visit(ReturnInstructionNode* instruction);
158 void Visit(IfNeInstructionNode* instruction);
159 void Visit(MoveResultInstructionNode* instruction);
160 void Visit(InvokeStaticInstructionNode* instruction);
161 void Visit(AddIntInstructionNode* instruction);
162 void Visit(GotoInstructionNode* instruction);
163 void Visit(IfEqzInstructionNode* instruction);