Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: src/wasm/wasm-module-builder.h

Issue 2694633003: [wasm] Rename EmitVarInt to EmitVarUint (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/asmjs/asm-wasm-builder.cc ('k') | src/wasm/wasm-module-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 V8_WASM_WASM_MODULE_BUILDER_H_ 5 #ifndef V8_WASM_WASM_MODULE_BUILDER_H_
6 #define V8_WASM_WASM_MODULE_BUILDER_H_ 6 #define V8_WASM_WASM_MODULE_BUILDER_H_
7 7
8 #include "src/signature.h" 8 #include "src/signature.h"
9 #include "src/zone/zone-containers.h" 9 #include "src/zone/zone-containers.h"
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 byte* end_; 114 byte* end_;
115 }; 115 };
116 116
117 class WasmModuleBuilder; 117 class WasmModuleBuilder;
118 118
119 class V8_EXPORT_PRIVATE WasmFunctionBuilder : public ZoneObject { 119 class V8_EXPORT_PRIVATE WasmFunctionBuilder : public ZoneObject {
120 public: 120 public:
121 // Building methods. 121 // Building methods.
122 void SetSignature(FunctionSig* sig); 122 void SetSignature(FunctionSig* sig);
123 uint32_t AddLocal(ValueType type); 123 uint32_t AddLocal(ValueType type);
124 void EmitVarInt(uint32_t val); 124 void EmitVarUint(uint32_t val);
125 void EmitCode(const byte* code, uint32_t code_size); 125 void EmitCode(const byte* code, uint32_t code_size);
126 void Emit(WasmOpcode opcode); 126 void Emit(WasmOpcode opcode);
127 void EmitGetLocal(uint32_t index); 127 void EmitGetLocal(uint32_t index);
128 void EmitSetLocal(uint32_t index); 128 void EmitSetLocal(uint32_t index);
129 void EmitTeeLocal(uint32_t index); 129 void EmitTeeLocal(uint32_t index);
130 void EmitI32Const(int32_t val); 130 void EmitI32Const(int32_t val);
131 void EmitWithU8(WasmOpcode opcode, const byte immediate); 131 void EmitWithU8(WasmOpcode opcode, const byte immediate);
132 void EmitWithU8U8(WasmOpcode opcode, const byte imm1, const byte imm2); 132 void EmitWithU8U8(WasmOpcode opcode, const byte imm1, const byte imm2);
133 void EmitWithVarInt(WasmOpcode opcode, uint32_t immediate); 133 void EmitWithVarUint(WasmOpcode opcode, uint32_t immediate);
134 void EmitDirectCallIndex(uint32_t index); 134 void EmitDirectCallIndex(uint32_t index);
135 void ExportAs(Vector<const char> name); 135 void ExportAs(Vector<const char> name);
136 void SetName(Vector<const char> name); 136 void SetName(Vector<const char> name);
137 void AddAsmWasmOffset(int call_position, int to_number_position); 137 void AddAsmWasmOffset(int call_position, int to_number_position);
138 void SetAsmFunctionStartPosition(int position); 138 void SetAsmFunctionStartPosition(int position);
139 139
140 void WriteSignature(ZoneBuffer& buffer) const; 140 void WriteSignature(ZoneBuffer& buffer) const;
141 void WriteExports(ZoneBuffer& buffer) const; 141 void WriteExports(ZoneBuffer& buffer) const;
142 void WriteBody(ZoneBuffer& buffer) const; 142 void WriteBody(ZoneBuffer& buffer) const;
143 void WriteAsmWasmOffsetTable(ZoneBuffer& buffer) const; 143 void WriteAsmWasmOffsetTable(ZoneBuffer& buffer) const;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 281
282 inline FunctionSig* WasmFunctionBuilder::signature() { 282 inline FunctionSig* WasmFunctionBuilder::signature() {
283 return builder_->signatures_[signature_index_]; 283 return builder_->signatures_[signature_index_];
284 } 284 }
285 285
286 } // namespace wasm 286 } // namespace wasm
287 } // namespace internal 287 } // namespace internal
288 } // namespace v8 288 } // namespace v8
289 289
290 #endif // V8_WASM_WASM_MODULE_BUILDER_H_ 290 #endif // V8_WASM_WASM_MODULE_BUILDER_H_
OLDNEW
« no previous file with comments | « src/asmjs/asm-wasm-builder.cc ('k') | src/wasm/wasm-module-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698