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

Unified Diff: src/compiler/code-assembler.h

Issue 2100883003: [Code Stubs] Convert FastNewClosureStub to a TurboFanCodeStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove minor key variants and calculate map index at runtime. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/code-assembler.h
diff --git a/src/compiler/code-assembler.h b/src/compiler/code-assembler.h
index c33605c1495b2fc92d2e34b0ab230e7afb6e0498..978a344d2a6fba9f42be783186febe36fa1dbb59 100644
--- a/src/compiler/code-assembler.h
+++ b/src/compiler/code-assembler.h
@@ -235,6 +235,9 @@ class CodeAssembler {
void Switch(Node* index, Label* default_label, int32_t* case_values,
Label** case_labels, size_t case_count);
+ Node* Select(Node* condition, Node* true_value, Node* false_value,
+ MachineRepresentation rep = MachineRepresentation::kTagged);
+
// Access to the frame pointer
Node* LoadFramePointer();
Node* LoadParentFramePointer();

Powered by Google App Engine
This is Rietveld 408576698