Home
last modified time | relevance | path

Searched refs:CompiledDecodeNode (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/vixl/src/aarch64/
H A Ddecoder-aarch64.h304 class CompiledDecodeNode; variable
391 CompiledDecodeNode* compiled_decoder_root_;
435 class CompiledDecodeNode {
439 CompiledDecodeNode(BitExtractFn bit_extract_fn, size_t decode_table_size) in CompiledDecodeNode() function
444 decode_table_ = new CompiledDecodeNode*[decode_table_size_]; in CompiledDecodeNode()
450 explicit CompiledDecodeNode(std::string iname, Decoder* decoder) in CompiledDecodeNode() function
457 ~CompiledDecodeNode() VIXL_NEGATIVE_TESTING_ALLOW_EXCEPTION { in ~CompiledDecodeNode()
479 CompiledDecodeNode* GetNodeForBits(uint32_t bits) const { in GetNodeForBits()
486 void SetNodeForBits(uint32_t bits, CompiledDecodeNode* n) { in SetNodeForBits()
502 CompiledDecodeNode** decode_table_;
[all …]
H A Ddecoder-aarch64.cc447 CompiledDecodeNode* DecodeNode::Compile(Decoder* decoder) { in Compile()
498 void CompiledDecodeNode::Decode(const Instruction* instr) const { in Decode()