Home
last modified time | relevance | path

Searched refs:outStream (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/
H A Delf_file.h49 virtual void WriteSection(std::ofstream &outStream) = 0;
158 virtual void WriteSection(std::ofstream &outStream) override
160 outStream.write(reinterpret_cast<const char *>(data.data()), data.size());
230 void WriteSection(std::ofstream &outStream) override
232 outStream.write(reinterpret_cast<const char *>(relas.data()), relas.size() * sizeof(Rela));
262 void WriteSection(std::ofstream &outStream) override
264 outStream.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol));
H A Dassembler.h67 outFStream << outStream.str(); in CloseOutput()
74 outStream << val; in Emit()
79 outStream << str; in Emit()
84 outStream.write(reinterpret_cast<const char *>(data), sizeInByte); in Emit()
389 std::ostringstream outStream; member in assembler::Assembler
H A Dasm_assembler.h54 options.GetLogStream() << outStream.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_logging.h135 LogInfo() : outStream(stdout), outMode(kLmComplex) {} in LogInfo()
141 fclose(outStream); in ~LogInfo()
153 outStream = &stream; in SetLogDevice()
159 FILE *outStream; member in maple::LogInfo
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Demit.h163 fileStream << outStream.str(); in CloseOutput()
235 outStream << val; in Emit()
241 outStream << val.GetExtValue(); in Emit()
248 outStream << str; in Emit()
254 outStream << str; in Emit()
260 outStream.write(reinterpret_cast<const char *>(data), size); in Emit()
266 outStream.seekp(offset); in SetFileOffset()
341 std::ostringstream outStream; member in maplebe::Emitter
H A Difile.h107 virtual void WriteSection(std::ostringstream &outStream) = 0;
248 virtual void WriteSection(std::ostringstream &outStream) override
250 outStream.write(reinterpret_cast<const char *>(data.data()), data.size());
374 void WriteSection(std::ostringstream &outStream) override
376 outStream.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol));
433 void WriteSection(std::ostringstream &outStream) override
435 outStream.write(reinterpret_cast<const char *>(relas.data()), relas.size() * sizeof(Rela));
H A Dobj_emit.h498 fileStream << outStream.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_emitter.h35 fileStream << outStream.str();
40 options.GetLogStream() << outStream.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
H A Dasm_assembler.cpp251 std::ios::fmtflags flag(this->outStream.flags()); in EmitHexUnsigned()
252 this->outStream << "0x" << std::hex << num; in EmitHexUnsigned()
253 (void)this->outStream.flags(flag); in EmitHexUnsigned()
258 std::ios::fmtflags flag(outStream.flags()); in EmitDecUnsigned()
259 outStream << std::dec << num; in EmitDecUnsigned()
260 (void)outStream.flags(flag); in EmitDecUnsigned()
265 std::ios::fmtflags flag(outStream.flags()); in EmitDecSigned()
266 outStream << std::dec << num; in EmitDecSigned()
267 (void)outStream.flags(flag); in EmitDecSigned()
394 outStream << strLabelI in EmitDwFormStrp()
[all...]
H A Delf_assembler.cpp707 (void)outStream.seekp(offset); in SetFileOffset()
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/
H A DdeclgenEts2Ts.cpp677 std::ofstream outStream(outPath); in GenerateTsDeclarations()
678 if (outStream.fail()) { in GenerateTsDeclarations()
683 outStream << declBuilder.Output().str(); in GenerateTsDeclarations()
684 outStream.close(); in GenerateTsDeclarations()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Demit.cpp84 outStream << ".L." << idx << "__" << labIdx; in EmitLabelRef()
94 outStream << ":\n"; in EmitStmtLabel()
104 outStream << ".L." << idx << "__" << labIdx; in EmitLabelForFunc()
2771 std::ios::fmtflags flag(outStream.flags()); in EmitAsmLabel()
2772 outStream << std::dec << num; in EmitAsmLabel()
2773 outStream.flags(flag); in EmitAsmLabel()
2780 std::ios::fmtflags flag(outStream.flags()); in EmitAsmLabel()
2781 outStream << std::dec << num; in EmitAsmLabel()
2782 outStream.flags(flag); in EmitAsmLabel()
2789 std::ios::fmtflags flag(outStream in EmitAsmLabel()
[all...]
H A Dobj_emit.cpp145 section->WriteSection(outStream); in WriteObjFile()

Completed in 18 milliseconds