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

Side by Side Diff: src/compiler/instruction-selector.h

Issue 1759383003: [compiler] Add relocatable pointer constants for wasm memory references. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix mips/mips64 compile Created 4 years, 9 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_INSTRUCTION_SELECTOR_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_H_
6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 #undef DECLARE_GENERATOR 246 #undef DECLARE_GENERATOR
247 247
248 void VisitFinishRegion(Node* node); 248 void VisitFinishRegion(Node* node);
249 void VisitGuard(Node* node); 249 void VisitGuard(Node* node);
250 void VisitParameter(Node* node); 250 void VisitParameter(Node* node);
251 void VisitIfException(Node* node); 251 void VisitIfException(Node* node);
252 void VisitOsrValue(Node* node); 252 void VisitOsrValue(Node* node);
253 void VisitPhi(Node* node); 253 void VisitPhi(Node* node);
254 void VisitProjection(Node* node); 254 void VisitProjection(Node* node);
255 void VisitConstant(Node* node); 255 void VisitConstant(Node* node);
256 void VisitRelocatableConstant(Node* node);
256 void VisitCall(Node* call, BasicBlock* handler = nullptr); 257 void VisitCall(Node* call, BasicBlock* handler = nullptr);
257 void VisitDeoptimizeIf(Node* node); 258 void VisitDeoptimizeIf(Node* node);
258 void VisitDeoptimizeUnless(Node* node); 259 void VisitDeoptimizeUnless(Node* node);
259 void VisitTailCall(Node* call); 260 void VisitTailCall(Node* call);
260 void VisitGoto(BasicBlock* target); 261 void VisitGoto(BasicBlock* target);
261 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch); 262 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch);
262 void VisitSwitch(Node* node, const SwitchInfo& sw); 263 void VisitSwitch(Node* node, const SwitchInfo& sw);
263 void VisitDeoptimize(DeoptimizeKind kind, Node* value); 264 void VisitDeoptimize(DeoptimizeKind kind, Node* value);
264 void VisitReturn(Node* ret); 265 void VisitReturn(Node* ret);
265 void VisitThrow(Node* value); 266 void VisitThrow(Node* value);
(...skipping 26 matching lines...) Expand all
292 IntVector virtual_registers_; 293 IntVector virtual_registers_;
293 InstructionScheduler* scheduler_; 294 InstructionScheduler* scheduler_;
294 Frame* frame_; 295 Frame* frame_;
295 }; 296 };
296 297
297 } // namespace compiler 298 } // namespace compiler
298 } // namespace internal 299 } // namespace internal
299 } // namespace v8 300 } // namespace v8
300 301
301 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ 302 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698