Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Emit

11 // CodeGen to emit cleanups.  The implementation is in CGCleanup.cpp and other
169 /// Emit the cleanup. For normal cleanups, this is run in the
175 virtual void Emit(CodeGenFunction &CGF, Flags flags) = 0;
185 void Emit(CodeGenFunction &CGF, Flags flags) {
187 T(a0).Emit(CGF, flags);
202 void Emit(CodeGenFunction &CGF, Flags flags) {
205 T(a0, a1).Emit(CGF, flags);
222 void Emit(CodeGenFunction &CGF, Flags flags) {
226 T(a0, a1, a2).Emit(CGF, flags);
245 void Emit(CodeGenFunction &CGF, Flags flags) {
250 T(a0, a1, a2, a3).Emit(CGF, flags);