Lines Matching defs:const

29   void Union(const BytecodeLoopAssignments& other);
31 bool ContainsParameter(int index) const;
32 bool ContainsLocal(int index) const;
34 int parameter_count() const { return parameter_count_; }
35 int local_count() const { return bit_vector_->length() - parameter_count_; }
38 int const parameter_count_;
39 BitVector* const bit_vector_;
51 const ResumeJumpTarget& next);
53 int suspend_id() const { return suspend_id_; }
54 int target_offset() const { return target_offset_; }
55 bool is_leaf() const { return target_offset_ == final_target_offset_; }
76 int parent_offset() const { return parent_offset_; }
78 const ZoneVector<ResumeJumpTarget>& resume_jump_targets() const {
81 void AddResumeTarget(const ResumeJumpTarget& target) {
86 const BytecodeLoopAssignments& assignments() const { return assignments_; }
103 BytecodeAnalysis(const BytecodeAnalysis&) = delete;
104 BytecodeAnalysis& operator=(const BytecodeAnalysis&) = delete;
107 bool IsLoopHeader(int offset) const;
110 int GetLoopOffsetFor(int offset) const;
112 const LoopInfo& GetLoopInfoFor(int header_offset) const;
115 const LoopInfo* TryGetLoopInfoFor(int header_offset) const;
117 const ZoneMap<int, LoopInfo>& GetLoopInfos() const { return header_to_info_; }
120 const ZoneVector<ResumeJumpTarget>& resume_jump_targets() const {
125 const BytecodeLivenessState* GetInLivenessFor(int offset) const;
126 const BytecodeLivenessState* GetOutLivenessFor(int offset) const;
131 int osr_entry_point() const {
136 BytecodeOffset osr_bailout_id() const { return osr_bailout_id_; }
139 bool liveness_analyzed() const { return analyze_liveness_; }
143 int bytecode_count() const { return bytecode_count_; }
158 const ZoneVector<ResumeJumpTarget>& resume_jump_targets,
164 Zone* zone() const { return zone_; }
165 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; }
170 const BytecodeLivenessMap& liveness_map() const {
175 std::ostream& PrintLivenessTo(std::ostream& os) const;
177 Handle<BytecodeArray> const bytecode_array_;
178 Zone* const zone_;
179 BytecodeOffset const osr_bailout_id_;
180 bool const analyze_liveness_;