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

  /external/v8/src/compiler/
bytecode-analysis.h 22 class V8_EXPORT_PRIVATE BytecodeLoopAssignments {
24 BytecodeLoopAssignments(int parameter_count, int register_count, Zone* zone);
30 void Union(const BytecodeLoopAssignments& other);
53 BytecodeLoopAssignments& assignments() { return assignments_; }
54 const BytecodeLoopAssignments& assignments() const { return assignments_; }
59 BytecodeLoopAssignments assignments_;
bytecode-analysis.cc 17 BytecodeLoopAssignments::BytecodeLoopAssignments(int parameter_count,
23 void BytecodeLoopAssignments::Add(interpreter::Register r) {
31 void BytecodeLoopAssignments::AddPair(interpreter::Register r) {
43 void BytecodeLoopAssignments::AddTriple(interpreter::Register r) {
59 void BytecodeLoopAssignments::AddAll() { bit_vector_->AddAll(); }
61 void BytecodeLoopAssignments::Union(const BytecodeLoopAssignments& other) {
65 bool BytecodeLoopAssignments::ContainsParameter(int index) const {
71 bool BytecodeLoopAssignments::ContainsLocal(int index) const
    [all...]
bytecode-graph-builder.cc 77 void PrepareForLoop(const BytecodeLoopAssignments& assignments);
79 const BytecodeLoopAssignments& assignments);
274 const BytecodeLoopAssignments& assignments) {
365 Node* loop, const BytecodeLoopAssignments& assignments) {
    [all...]

Completed in 66 milliseconds