| Index: src/compiler/wasm-compiler.h
|
| diff --git a/src/compiler/wasm-compiler.h b/src/compiler/wasm-compiler.h
|
| index c7e69a8e7dfb8f9fe1b4db18b5db97f0767576ab..992e4b6c96fcfce8fbce51deaf9b6d7786cc054c 100644
|
| --- a/src/compiler/wasm-compiler.h
|
| +++ b/src/compiler/wasm-compiler.h
|
| @@ -131,7 +131,7 @@ class WasmGraphBuilder {
|
| Node* Loop(Node* entry);
|
| Node* Terminate(Node* effect, Node* control);
|
| Node* Merge(unsigned count, Node** controls);
|
| - Node* Phi(wasm::LocalType type, unsigned count, Node** vals, Node* control);
|
| + Node* Phi(wasm::ValueType type, unsigned count, Node** vals, Node* control);
|
| Node* EffectPhi(unsigned count, Node** effects, Node* control);
|
| Node* NumberConstant(int32_t value);
|
| Node* Uint32Constant(uint32_t value);
|
| @@ -183,8 +183,8 @@ class WasmGraphBuilder {
|
| void BuildJSToWasmWrapper(Handle<Code> wasm_code, wasm::FunctionSig* sig);
|
| void BuildWasmToJSWrapper(Handle<JSReceiver> target, wasm::FunctionSig* sig);
|
|
|
| - Node* ToJS(Node* node, wasm::LocalType type);
|
| - Node* FromJS(Node* node, Node* context, wasm::LocalType type);
|
| + Node* ToJS(Node* node, wasm::ValueType type);
|
| + Node* FromJS(Node* node, Node* context, wasm::ValueType type);
|
| Node* Invert(Node* node);
|
| void EnsureFunctionTableNodes();
|
|
|
| @@ -194,7 +194,7 @@ class WasmGraphBuilder {
|
| Node* CurrentMemoryPages();
|
| Node* GetGlobal(uint32_t index);
|
| Node* SetGlobal(uint32_t index, Node* val);
|
| - Node* LoadMem(wasm::LocalType type, MachineType memtype, Node* index,
|
| + Node* LoadMem(wasm::ValueType type, MachineType memtype, Node* index,
|
| uint32_t offset, uint32_t alignment,
|
| wasm::WasmCodePosition position);
|
| Node* StoreMem(MachineType type, Node* index, uint32_t offset,
|
| @@ -264,7 +264,7 @@ class WasmGraphBuilder {
|
| wasm::WasmCodePosition position);
|
|
|
| Node* BuildChangeEndianness(Node* node, MachineType type,
|
| - wasm::LocalType wasmtype = wasm::kAstStmt);
|
| + wasm::ValueType wasmtype = wasm::kWasmStmt);
|
|
|
| Node* MaskShiftCount32(Node* node);
|
| Node* MaskShiftCount64(Node* node);
|
|
|