Changeset 209725 in webkit for trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h
- Timestamp:
- Dec 12, 2016, 1:46:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h
r209678 r209725 1 1 /* 2 * Copyright (C) 2012, 2014 , 2015Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2014-2016 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 44 44 case PhantomDirectArguments: 45 45 case PhantomClonedArguments: 46 case GetArgumentRegister: 46 47 return true; 47 48 default: … … 72 73 return bitwise_cast<InlineCallFrame*>(static_cast<uintptr_t>(m_info)); 73 74 } 75 76 bool hasArgumentIndex() const { return hasArgumentIndex(m_op); } 77 78 unsigned argumentIndex() const { return static_cast<unsigned>(m_info); } 74 79 75 80 static MinifiedID getID(MinifiedNode* node) { return node->id(); } … … 89 94 return type == PhantomDirectArguments || type == PhantomClonedArguments; 90 95 } 96 97 static bool hasArgumentIndex(NodeType type) 98 { 99 return type == GetArgumentRegister; 100 } 91 101 92 102 MinifiedID m_id;
Note:
See TracChangeset
for help on using the changeset viewer.