Major reorganisation.

New libs (libethsupport, libevm, liblll).
New LLLC binary.
This commit is contained in:
Gav Wood 2014-05-26 11:22:19 +02:00
parent 9d7047272d
commit ef95ba9ac3
11 changed files with 26 additions and 25 deletions

View File

@ -21,8 +21,8 @@
#include "MemTrie.h"
#include <libethcore/TrieCommon.h>
#include <libethereum/CommonEth.h>
#include <libethsupport/TrieCommon.h>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace eth;

View File

@ -21,8 +21,8 @@
#pragma once
#include <libethcore/Common.h>
#include <libethcore/FixedHash.h>
#include <libethsupport/Common.h>
#include <libethsupport/FixedHash.h>
namespace eth
{

View File

@ -21,8 +21,8 @@
#include "TrieHash.h"
#include <libethcore/TrieCommon.h>
#include <libethereum/CommonEth.h>
#include <libethsupport/TrieCommon.h>
#include <libethcore/CommonEth.h>
using namespace std;
using namespace eth;

View File

@ -21,8 +21,8 @@
#pragma once
#include <libethcore/Common.h>
#include <libethcore/FixedHash.h>
#include <libethsupport/Common.h>
#include <libethsupport/FixedHash.h>
namespace eth
{

View File

@ -22,9 +22,9 @@
#include <random>
#include <secp256k1/secp256k1.h>
#include <libethcore/Common.h>
#include <libethcore/RLP.h>
#include <libethcore/Log.h>
#include <libethsupport/Common.h>
#include <libethsupport/RLP.h>
#include <libethsupport/Log.h>
#include <libethereum/Transaction.h>
#include <boost/test/unit_test.hpp>

View File

@ -21,8 +21,8 @@
*/
#include <chrono>
#include <libethcore/Log.h>
#include <libethereum/Dagger.h>
#include <libethsupport/Log.h>
#include <libethcore/Dagger.h>
using namespace std;
using namespace std::chrono;
using namespace eth;

View File

@ -22,8 +22,8 @@
#include <fstream>
#include "JsonSpiritHeaders.h"
#include <libethcore/TrieCommon.h>
#include <libethcore/Log.h>
#include <libethsupport/TrieCommon.h>
#include <libethsupport/Log.h>
#include <boost/test/unit_test.hpp>
using namespace std;

View File

@ -31,8 +31,8 @@ int vmTest();
int hexPrefixTest();
int peerTest(int argc, char** argv);
#include <libethcore/Log.h>
#include <libethereum/BlockInfo.h>
#include <libethsupport/Log.h>
#include <libethcore/BlockInfo.h>
using namespace std;
using namespace eth;

View File

@ -23,9 +23,9 @@
#include <fstream>
#include <sstream>
#include "JsonSpiritHeaders.h"
#include <libethcore/Log.h>
#include <libethcore/RLP.h>
#include <libethcore/Common.h>
#include <libethsupport/Log.h>
#include <libethsupport/RLP.h>
#include <libethsupport/Common.h>
#include <boost/test/unit_test.hpp>
#include <algorithm>

View File

@ -23,7 +23,7 @@
#include <fstream>
#include <random>
#include "JsonSpiritHeaders.h"
#include <libethcore/TrieDB.h>
#include <libethsupport/TrieDB.h>
#include "TrieHash.h"
#include "MemTrie.h"
#include <boost/test/unit_test.hpp>

9
vm.cpp
View File

@ -22,11 +22,12 @@
#include <fstream>
#include <cstdint>
#include <libethcore/Log.h>
#include <libethereum/ExtVMFace.h>
#include <libethsupport/Log.h>
#include <libethcore/Instruction.h>
#include <libevm/ExtVMFace.h>
#include <libevm/VM.h>
#include <liblll/Compiler.h>
#include <libethereum/Transaction.h>
#include <libethereum/VM.h>
#include <libethereum/Instruction.h>
#include "JsonSpiritHeaders.h"
#include <boost/test/unit_test.hpp>