Lines Matching refs:ss
134 std::ostringstream ss;
136 ss << capabilities_;
137 ss << extensions_;
138 ss << memory_model_;
141 ss << "OpEntryPoint " << entry_point.execution_model << " %"
147 ss << entry_point.execution_modes << "\n";
150 ss << before_types_;
151 ss << types_;
152 ss << after_types_;
155 ss << "\n";
156 ss << "%" << entry_point.name << " = OpFunction %void None %func\n";
157 ss << "%" << entry_point.name << "_entry = OpLabel\n";
158 ss << entry_point.body;
159 ss << "\nOpReturn\nOpFunctionEnd\n";
162 ss << add_at_the_end_;
164 return ss.str();