Searched refs:decode (Results 26 - 38 of 38) sorted by relevance

12

/gem5/ext/mcpat/
H A DxmlParser.h718 * b64-encoded text included inside the XML file, use "decode". Alternatively, these
742 * The "decode" function returns a pointer to a buffer containing the binary data decoded from "inString"
746 unsigned char* decode(XMLCSTR inString, int *outByteLen=NULL, XMLError *xe=NULL); ///< returns a pointer to an internal buffer containing the binary data decoded from "inString"
752 static unsigned char decode(XMLCSTR inString, unsigned char *outByteBuf, int inMaxByteOutBuflen, XMLError *xe=NULL); ///< deprecated.
/gem5/src/gpu-compute/
H A Dfetch_unit.cc280 GPUStaticInst *inst_ptr = decoder.decode(inst_index_ptr[i]);
H A Dhsail_code.cc179 GPUStaticInst *iptr = decoder.decode(machInst);
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py121 #decode it with the ascii codec. If the decoding fails, assume
124 value = value.decode('ascii')
166 value.decode('ascii').split('\0') if len(st)]
956 data += byte.decode('ascii')
971 data += byte.decode('ascii')
/gem5/src/cpu/o3/
H A Dfetch.hh336 * remove any instructions between fetch and decode that should be sqaushed.
419 /** Wire to get decode's information from backwards time buffer. */
432 /** Wire used to write any information heading to decode. */
460 bool decode; member in struct:DefaultFetch::Stalls
482 /** The width of decode in instructions. */
H A Ddecode_impl.hh49 #include "cpu/o3/decode.hh"
120 return cpu->name() + ".decode";
129 .desc("Number of cycles decode is idle")
133 .desc("Number of cycles decode is blocked")
137 .desc("Number of cycles decode is running")
141 .desc("Number of cycles decode is unblocking")
145 .desc("Number of cycles decode is squashing")
149 .desc("Number of times decode resolved a branch")
153 .desc("Number of times decode detected a branch misprediction")
157 .desc("Number of times decode detecte
602 DefaultDecode<Impl>::decode(bool &status_change, ThreadID tid) function in class:DefaultDecode
[all...]
H A Dcpu.hh562 /** The decode stage. */
563 typename CPUPolicy::Decode decode; member in class:FullO3CPU
639 /** The decode stage's instruction queue. */
/gem5/ext/ply/example/GardenSnake/
H A DGardenSnake.py83 t.value=t.value[1:-1].decode("string-escape") # .swapcase() # for fun
/gem5/src/cpu/minor/
H A Dfetch2.cc411 * decode */
412 StaticInstPtr decoded_inst = decoder->decode(fetch_info.pc);
/gem5/ext/pybind11/tools/
H A Dmkdoc.py70 return s if isinstance(s, str) else s.decode('utf8')
/gem5/src/cpu/checker/
H A Dcpu_impl.hh310 //If an instruction is ready, decode it.
315 instPtr = thread->decoder.decode(pcState);
/gem5/src/cpu/simple/
H A Dbase.cc505 // decode the instruction
530 instPtr = decoder->decode(pcState);
/gem5/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/
H A Dcycle_model.cpp59 // decode instruction
84 // - some instructions are not supported (cf decode function)
217 //void cycle_model::decode(int opcode, instr* i)
223 void cycle_model::decode(int opcode, instr* i) { function in class:cycle_model
1038 printf("decode instr type:%d, src1: %d, src2: %d, dest %d, nb_cycles: %d\n",i->type, i->src1.type, i->src2.type, i->dst.type, i->cycle);
1727 // decode opcode
1754 // decode instruction
1755 decode(opcode, &the_instr);

Completed in 36 milliseconds

12