HomeSort by relevance Sort by last modified time
    Searched refs:BytecodeLivenessState (Results 1 - 5 of 5) sorted by null

  /external/v8/src/compiler/
bytecode-liveness-map.h 19 class BytecodeLivenessState : public ZoneObject {
21 BytecodeLivenessState(int register_count, Zone* zone)
38 bool Equals(const BytecodeLivenessState& other) const {
60 void Union(const BytecodeLivenessState& other) {
64 bool UnionIsChanged(const BytecodeLivenessState& other) {
68 void CopyFrom(const BytecodeLivenessState& other) {
75 DISALLOW_COPY_AND_ASSIGN(BytecodeLivenessState);
79 BytecodeLivenessState* in;
80 BytecodeLivenessState* out;
95 BytecodeLivenessState* GetInLiveness(int offset)
    [all...]
bytecode-liveness-map.cc 12 : in(new (zone) BytecodeLivenessState(register_count, zone)),
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {}
bytecode-analysis.h 84 const BytecodeLivenessState* GetInLivenessFor(int offset) const;
87 const BytecodeLivenessState* GetOutLivenessFor(int offset) const;
bytecode-analysis.cc 97 void UpdateInLiveness(Bytecode bytecode, BytecodeLivenessState& in_liveness,
178 void UpdateOutLiveness(Bytecode bytecode, BytecodeLivenessState& out_liveness,
179 BytecodeLivenessState* next_bytecode_in_liveness,
245 BytecodeLivenessState* next_bytecode_in_liveness = nullptr;
450 const BytecodeLivenessState* BytecodeAnalysis::GetInLivenessFor(
457 const BytecodeLivenessState* BytecodeAnalysis::GetOutLivenessFor(
495 BytecodeLivenessState previous_liveness(bytecode_array()->register_count(),
501 BytecodeLivenessState* next_bytecode_in_liveness = nullptr;
bytecode-graph-builder.cc 62 const BytecodeLivenessState* liveness);
424 bool owner_has_exception, const BytecodeLivenessState* liveness) {
586 const BytecodeLivenessState* liveness_before =
621 const BytecodeLivenessState* liveness_after =
    [all...]

Completed in 210 milliseconds