mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-20 03:36:44 +00:00
Basic block compilation in separated function
This commit is contained in:
parent
e094ba9e67
commit
1463897efb
2 changed files with 671 additions and 665 deletions
1334
evmcc/Compiler.cpp
1334
evmcc/Compiler.cpp
File diff suppressed because it is too large
Load diff
|
|
@ -28,6 +28,8 @@ private:
|
|||
|
||||
void createBasicBlocks(const bytes& bytecode);
|
||||
|
||||
void compileBasicBlock(BasicBlock& basicBlock, const bytes& bytecode, class Memory& memory, class Ext& ext, class GasMeter& gasMeter, llvm::BasicBlock* nextBasicBlock);
|
||||
|
||||
void linkBasicBlocks();
|
||||
|
||||
llvm::IRBuilder<> m_builder;
|
||||
|
|
|
|||
Loading…
Reference in a new issue