Lines Matching full:bool
52 bool &has_slot;
53 bool &is_two_slot;
61 bool Verify();
62 bool CollectIdInfos();
63 bool VerifyChecksum();
64 bool VerifyConstantPool();
65 bool VerifyRegisterIndex();
66 bool VerifyConstantPoolIndex();
67 bool VerifyConstantPoolContent();
69 bool include_literal_array_ids = true;
87 bool CollectIdInInstructions(const panda_file::File::EntityId &method_id);
89 bool CheckConstantPool(const verifier::ActionType type);
91 …bool CheckConstantPoolActions(const verifier::ActionType type, panda_file::File::EntityId method_i…
92 bool VerifyMethodId(const uint32_t &method_id) const;
93 bool VerifyLiteralId(const uint32_t &literal_id) const;
94 bool VerifyStringId(const uint32_t &string_id) const;
95 bool IsRangeInstAndHasInvalidRegIdx(const BytecodeInstruction &bc_ins,
97 bool IsRegIdxOutOfBounds(uint64_t reg_idx, uint64_t valid_regs_num);
98 … bool CheckVRegIdx(const BytecodeInstruction &bc_ins, const size_t count, uint64_t valid_regs_num);
101 bool VerifyMethodIdInLiteralArray(const uint32_t &id);
102 bool VerifyStringIdInLiteralArray(const uint32_t &id);
103 bool VerifyLiteralIdInLiteralArray(const uint32_t &id);
104 bool IsModuleLiteralId(const panda_file::File::EntityId &id) const;
105 bool VerifySingleLiteralArray(const panda_file::File::EntityId &literal_id);
106 bool VerifyLiteralArrays();
107 …bool VerifyJumpInstruction(const BytecodeInstruction &bc_ins, const BytecodeInstruction &bc_ins_la…
110 …bool GetIcSlotFromInstruction(const BytecodeInstruction &bc_ins, uint32_t &first_slot_index, bool …
111 bool &is_two_slot);
112 …bool VerifySlotNumber(panda_file::MethodDataAccessor &method_accessor, const uint32_t &slot_number,
114 bool CheckConstantPoolMethodContent(const panda_file::File::EntityId &method_id);
115 bool CheckConstantPoolIndex() const;
117 …bool VerifyCatchBlocks(panda_file::CodeDataAccessor::TryBlock &try_block, const BytecodeInstructio…
119 …bool VerifyTryBlocks(panda_file::CodeDataAccessor &code_accessor, const BytecodeInstruction &bc_in…
121 …bool PrecomputeInstructionIndices(const BytecodeInstruction &bc_ins_start, const BytecodeInstructi…
122 bool IsMethodBytecodeInstruction(const BytecodeInstruction &bc_ins_cur);
123 bool VerifyMethodRegisterIndex(panda_file::CodeDataAccessor &code_accessor,
125 bool VerifyMethodInstructions(const MethodInfos &infos);
127 inline bool IsImpureNaN(double value) in IsImpureNaN()