Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ | 5 #ifndef TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ |
| 6 #define TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ | 6 #define TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ |
| 7 | 7 |
| 8 #include <iostream> | 8 #include <iostream> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 enum class ConstantPoolType { | 25 enum class ConstantPoolType { |
| 26 kUnknown, | 26 kUnknown, |
| 27 kString, | 27 kString, |
| 28 kInteger, | 28 kInteger, |
| 29 kDouble, | 29 kDouble, |
| 30 kMixed, | 30 kMixed, |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 BytecodeExpectationsPrinter(v8::Isolate* i, | 33 BytecodeExpectationsPrinter(v8::Isolate* i, |
| 34 ConstantPoolType t = ConstantPoolType::kMixed) | 34 ConstantPoolType t = ConstantPoolType::kMixed) |
| 35 : isolate_(i), const_pool_type_(t) {} | 35 : isolate_(i), |
| 36 const_pool_type_(t), | |
| 37 execute_(true), | |
| 38 wrap_(true), | |
| 39 top_function_name_("__genbckexp_wrapper__") {} | |
| 36 | 40 |
| 37 void PrintExpectation(std::ostream& stream, // NOLINT | 41 void PrintExpectation(std::ostream& stream, // NOLINT |
| 38 const std::string& snippet) const; | 42 const std::string& snippet) const; |
| 39 | 43 |
| 40 void set_constant_pool_type(ConstantPoolType t) { const_pool_type_ = t; } | 44 void set_constant_pool_type(ConstantPoolType t) { const_pool_type_ = t; } |
| 41 ConstantPoolType constant_pool_type() const { return const_pool_type_; } | 45 ConstantPoolType constant_pool_type() const { return const_pool_type_; } |
| 42 | 46 |
| 47 void set_execute(bool e) { execute_ = e; } | |
|
rmcilroy
2016/02/16 16:43:48
don't abbreviate -> /s/e/execute/
Also pleas updat
Stefano Sanfilippo
2016/02/16 20:28:26
Done.
| |
| 48 bool execute() const { return execute_; } | |
| 49 | |
| 50 void set_wrap(bool w) { wrap_ = w; } | |
|
rmcilroy
2016/02/16 16:43:48
ditto
Stefano Sanfilippo
2016/02/16 20:28:26
Done.
| |
| 51 bool wrap() const { return wrap_; } | |
| 52 | |
| 53 void set_top_function_name(const std::string& s) { top_function_name_ = s; } | |
|
rmcilroy
2016/02/16 16:43:48
ditto
Stefano Sanfilippo
2016/02/16 20:28:26
Done.
| |
| 54 std::string top_function_name() const { return top_function_name_; } | |
| 55 | |
| 43 private: | 56 private: |
| 44 void PrintEscapedString(std::ostream& stream, // NOLINT | 57 void PrintEscapedString(std::ostream& stream, // NOLINT |
| 45 const std::string& string) const; | 58 const std::string& string) const; |
| 46 void PrintBytecodeOperand(std::ostream& stream, // NOLINT | 59 void PrintBytecodeOperand(std::ostream& stream, // NOLINT |
| 47 const BytecodeArrayIterator& bytecode_iter, | 60 const BytecodeArrayIterator& bytecode_iter, |
| 48 const Bytecode& bytecode, int op_index) const; | 61 const Bytecode& bytecode, int op_index) const; |
| 49 void PrintBytecode(std::ostream& stream, // NOLINT | 62 void PrintBytecode(std::ostream& stream, // NOLINT |
| 50 const BytecodeArrayIterator& bytecode_iter) const; | 63 const BytecodeArrayIterator& bytecode_iter) const; |
| 51 void PrintV8String(std::ostream& stream, // NOLINT | 64 void PrintV8String(std::ostream& stream, // NOLINT |
| 52 i::String* string) const; | 65 i::String* string) const; |
| 53 void PrintConstant(std::ostream& stream, // NOLINT | 66 void PrintConstant(std::ostream& stream, // NOLINT |
| 54 i::Handle<i::Object> constant) const; | 67 i::Handle<i::Object> constant) const; |
| 55 void PrintFrameSize(std::ostream& stream, // NOLINT | 68 void PrintFrameSize(std::ostream& stream, // NOLINT |
| 56 i::Handle<i::BytecodeArray> bytecode_array) const; | 69 i::Handle<i::BytecodeArray> bytecode_array) const; |
| 57 void PrintBytecodeSequence(std::ostream& stream, // NOLINT | 70 void PrintBytecodeSequence(std::ostream& stream, // NOLINT |
| 58 i::Handle<i::BytecodeArray> bytecode_array) const; | 71 i::Handle<i::BytecodeArray> bytecode_array) const; |
| 59 void PrintConstantPool(std::ostream& stream, // NOLINT | 72 void PrintConstantPool(std::ostream& stream, // NOLINT |
| 60 i::FixedArray* constant_pool) const; | 73 i::FixedArray* constant_pool) const; |
| 61 void PrintCodeSnippet(std::ostream& stream, // NOLINT | 74 void PrintCodeSnippet(std::ostream& stream, // NOLINT |
| 62 const std::string& body) const; | 75 const std::string& body) const; |
| 63 void PrintBytecodeArray(std::ostream& stream, // NOLINT | 76 void PrintBytecodeArray(std::ostream& stream, // NOLINT |
| 64 const std::string& body, | 77 const std::string& body, |
| 65 i::Handle<i::BytecodeArray> bytecode_array) const; | 78 i::Handle<i::BytecodeArray> bytecode_array) const; |
| 79 void PrintHandlers(std::ostream& stream, // NOLINT | |
| 80 i::Handle<i::BytecodeArray> bytecode_array) const; | |
| 66 | 81 |
| 67 v8::Local<v8::String> V8StringFromUTF8(const char* data) const; | 82 v8::Local<v8::String> V8StringFromUTF8(const char* data) const; |
| 68 std::string WrapCodeInFunction(const char* function_name, | 83 std::string WrapCodeInFunction(const char* function_name, |
| 69 const std::string& function_body) const; | 84 const std::string& function_body) const; |
| 70 | 85 |
| 71 v8::Local<v8::Value> CompileAndRun(const char* program) const; | 86 v8::Local<v8::Script> Compile(const char* program) const; |
| 87 v8::Local<v8::Value> Run(v8::Local<v8::Script> script) const; | |
| 72 i::Handle<i::BytecodeArray> GetBytecodeArrayForGlobal( | 88 i::Handle<i::BytecodeArray> GetBytecodeArrayForGlobal( |
| 73 const char* global_name) const; | 89 const char* global_name) const; |
| 74 | 90 |
| 75 i::Isolate* i_isolate() const { | 91 i::Isolate* i_isolate() const { |
| 76 return reinterpret_cast<i::Isolate*>(isolate_); | 92 return reinterpret_cast<i::Isolate*>(isolate_); |
| 77 } | 93 } |
| 78 | 94 |
| 79 v8::Isolate* isolate_; | 95 v8::Isolate* isolate_; |
| 80 ConstantPoolType const_pool_type_; | 96 ConstantPoolType const_pool_type_; |
| 97 bool execute_; | |
| 98 bool wrap_; | |
| 99 std::string top_function_name_; | |
| 81 }; | 100 }; |
| 82 | 101 |
| 83 } // namespace interpreter | 102 } // namespace interpreter |
| 84 } // namespace internal | 103 } // namespace internal |
| 85 } // namespace v8 | 104 } // namespace v8 |
| 86 | 105 |
| 87 #endif // TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ | 106 #endif // TEST_CCTEST_INTERPRETER_BYTECODE_EXPECTATIONS_PRINTER_H_ |
| OLD | NEW |