Lines Matching defs:const
58 bool operator==(const Value& other) const {
71 bool operator!=(const Value& other) const { return !(*this == other); }
73 bool is_constant() const { return storage == kConstant; }
74 bool is_register() const { return storage == kRegister; }
85 int pc_offset() const { return pc_offset_; }
88 int stack_height() const { return stack_height_; }
90 base::Vector<const Value> changed_values() const {
94 const Value* FindChangedValue(int stack_index) const {
98 [](const Value& changed_value, int stack_index) {
105 void Print(std::ostream&) const;
124 const Entry* GetEntry(int pc_offset) const {
132 const Entry::Value* FindValue(const Entry* entry, int stack_index) const {
147 auto entries() const {
151 int num_locals() const { return num_locals_; }
153 void Print(std::ostream&) const;
157 bool operator()(const Entry& a, const Entry& b) const {
181 const wasm::WasmFunction& GetFunctionAtAddress(Address pc);
220 void RemoveDebugSideTables(base::Vector<WasmCode* const>);
224 DebugSideTable* GetDebugSideTableIfExists(const WasmCode*) const;