OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SparseInputMask
(Results
1 - 10
of
10
) sorted by null
/external/v8/src/compiler/
state-values-utils.h
43
SparseInputMask
mask;
46
StateValuesKey(size_t count,
SparseInputMask
mask, Node** values)
58
SparseInputMask
::BitMaskType FillBufferWithValues(WorkingBuffer* node_buffer,
71
SparseInputMask
mask);
111
SparseInputMask
::InputIterator* Top();
116
SparseInputMask
::InputIterator stack_[kMaxInlineDepth];
common-operator.h
158
class
SparseInputMask
final {
211
explicit
SparseInputMask
(BitMaskType bit_mask) : bit_mask_(bit_mask) {}
213
// Provides a
SparseInputMask
representing a dense input set.
214
static
SparseInputMask
Dense() { return
SparseInputMask
(kDenseBitMask); }
218
bool IsDense() const { return bit_mask_ ==
SparseInputMask
::kDenseBitMask; }
246
bool operator==(
SparseInputMask
const& lhs,
SparseInputMask
const& rhs);
247
bool operator!=(
SparseInputMask
const& lhs,
SparseInputMask
const& rhs)
[
all
...]
state-values-utils.cc
54
SparseInputMask
node_mask = SparseInputMaskOf(node->op());
92
graph()->NewNode(common()->StateValues(0,
SparseInputMask
::Dense()));
118
SparseInputMask
mask) {
138
SparseInputMask
::BitMaskType StateValuesCache::FillBufferWithValues(
142
SparseInputMask
::BitMaskType input_mask = 0;
149
virtual_node_count <
SparseInputMask
::kMaxSparseInputs) {
163
DCHECK(virtual_node_count <=
SparseInputMask
::kMaxSparseInputs);
166
input_mask |=
SparseInputMask
::kEndMarker << virtual_node_count;
176
SparseInputMask
::BitMaskType input_mask =
SparseInputMask
::kDenseBitMask
[
all
...]
common-operator.cc
166
SparseInputMask
::InputIterator::InputIterator(
167
SparseInputMask
::BitMaskType bit_mask, Node* parent)
170
if (bit_mask_ !=
SparseInputMask
::kDenseBitMask) {
178
void
SparseInputMask
::InputIterator::Advance() {
187
Node*
SparseInputMask
::InputIterator::GetReal() const {
192
bool
SparseInputMask
::InputIterator::IsReal() const {
193
return bit_mask_ ==
SparseInputMask
::kDenseBitMask ||
197
bool
SparseInputMask
::InputIterator::IsEnd() const {
199
(bit_mask_ ==
SparseInputMask
::kDenseBitMask &&
203
int
SparseInputMask
::CountReal() const
[
all
...]
js-graph.cc
280
0,
SparseInputMask
::Dense())));
js-inlining.cc
234
const Operator* op0 = common()->StateValues(0,
SparseInputMask
::Dense());
241
static_cast<int>(params.size()),
SparseInputMask
::Dense());
272
const Operator* op0 = common()->StateValues(0,
SparseInputMask
::Dense());
js-native-context-specialization.cc
[
all
...]
bytecode-graph-builder.cc
410
const Operator* op = common()->StateValues(count,
SparseInputMask
::Dense());
[
all
...]
ast-graph-builder.cc
676
const Operator* op = common()->StateValues(count,
SparseInputMask
::Dense());
[
all
...]
simplified-lowering.cc
[
all
...]
Completed in 387 milliseconds