HomeSort by relevance Sort by last modified time
    Searched refs:Operator (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/chromium_org/v8/src/compiler/
graph-builder.h 11 #include "src/compiler/common-operator.h"
27 Node* NewNode(const Operator* op) {
31 Node* NewNode(const Operator* op, Node* n1) { return MakeNode(op, 1, &n1); }
33 Node* NewNode(const Operator* op, Node* n1, Node* n2) {
38 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3) {
43 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4) {
48 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4,
54 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4,
60 Node* NewNode(const Operator* op, int value_input_count,
69 virtual Node* MakeNode(const Operator* op, int value_input_count
    [all...]
graph.cc 7 #include "src/compiler/common-operator.h"
14 #include "src/compiler/operator-properties.h"
15 #include "src/compiler/operator-properties-inl.h"
24 Node* Graph::NewNode(const Operator* op, int input_count, Node** inputs) {
linkage.h 13 #include "src/compiler/operator.h"
60 size_t js_param_count, Operator::Properties properties,
121 // Operator properties describe how this call can be optimized, if at all.
122 Operator::Properties properties() const { return properties_; }
138 Operator::Properties properties_;
146 OStream& operator<<(OStream& os, const CallDescriptor& d);
147 OStream& operator<<(OStream& os, const CallDescriptor::Kind& k);
154 // well as {param_index} (i.e. as stored in parameter nodes) into an operator
175 Operator::Properties properties);
178 Operator::Properties properties, Zone* zone)
    [all...]
simplified-operator-reducer.h 30 Reduction Change(Node* node, const Operator* op, Node* a);
graph-builder.cc 14 #include "src/compiler/operator-properties.h"
15 #include "src/compiler/operator-properties-inl.h"
31 Node* StructuredGraphBuilder::MakeNode(const Operator* op,
165 const Operator* phi_op = common()->Phi(kMachAnyTagged, count);
176 const Operator* phi_op = common()->EffectPhi(count);
188 const Operator* op = common()->Loop(inputs);
193 const Operator* op = common()->Merge(inputs);
198 const Operator* op = common()->Merge(inputs);
representation-change.h 10 #include "src/compiler/machine-operator.h"
12 #include "src/compiler/simplified-operator.h"
94 // Select the correct X -> Tagged operator.
95 const Operator* op;
132 // Select the correct X -> Float64 operator.
133 const Operator* op;
172 // Select the correct X -> Word32 operator.
173 const Operator* op = NULL;
210 // Select the correct X -> Bit operator.
211 const Operator* op
    [all...]
node-matchers.h 9 #include "src/compiler/operator.h"
20 const Operator* op() const { return node()->op(); }
23 bool HasProperty(Operator::Property property) const {
114 if (HasProperty(Operator::kCommutative)) PutConstantOnRight();
ast-graph-builder.cc 9 #include "src/compiler/machine-operator.h"
34 const Operator* op = common()->Parameter(-1);
45 const Operator* op = common()->Parameter(info()->num_parameters() + 1);
214 const Operator* op = common()->StateValues(count);
227 const Operator* op = common()->FrameState(JS_FRAME, ast_id, combine);
377 const Operator* op = javascript()->StoreContext(0, variable->index());
409 const Operator* op = javascript()->StoreContext(0, variable->index());
456 const Operator* op = javascript()->CreateBlockContext();
522 const Operator* op = javascript()->CreateWithContext();
554 const Operator* op = javascript()->StrictEqual()
    [all...]
graph-replay.cc 7 #include "src/compiler/common-operator.h"
11 #include "src/compiler/operator.h"
12 #include "src/compiler/operator-properties-inl.h"
43 void GraphReplayPrinter::PrintReplayOpCreator(const Operator* op) {
js-generic-lowering.h 48 void PatchOperator(Node* node, const Operator* new_op);
linkage-impl.h 63 Operator::kNoProperties, // properties
73 Operator::Properties properties) {
176 Operator::kNoProperties, // properties
208 Operator::kNoProperties, // properties
node-properties.h 15 class Operator;
node.cc 45 OStream& operator<<(OStream& os, const Operator& op) { return op.PrintTo(os); }
48 OStream& operator<<(OStream& os, const Node& n) {
  /external/chromium_org/base/metrics/
histogram_samples.h 48 enum Operator { ADD, SUBTRACT };
49 virtual bool AddSubtractImpl(SampleCountIterator* iter, Operator op) = 0;
sample_map.h 36 HistogramSamples::Operator op) OVERRIDE; // |op| is ADD or SUBTRACT.
sample_vector.h 42 HistogramSamples::Operator op) OVERRIDE; // |op| is ADD or SUBTRACT.
  /external/llvm/lib/IR/
User.cpp 13 #include "llvm/IR/Operator.h"
49 Use *Begin = static_cast<Use*>(::operator new(size));
56 // User operator new Implementations
59 void *User::operator new(size_t s, unsigned Us) {
60 void *Storage = ::operator new(s + sizeof(Use) * Us);
71 // User operator delete Implementation
74 void User::operator delete(void *Usr) {
79 ::operator delete(Storage);
83 // Operator Class
86 Operator::~Operator()
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 332 /// Insertion operator for diagnostics. This allows sending TemplateName's
334 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
446 /// overloaded operator kind (when set).
456 /// \brief The overloaded operator name.
459 OverloadedOperatorKind Operator;
484 OverloadedOperatorKind Operator)
485 : Qualifier(Qualifier, true), Operator(Operator),
489 OverloadedOperatorKind Operator,
491 : Qualifier(Qualifier, true), Operator(Operator),
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-linkage.cc 10 #include "src/compiler/common-operator.h"
14 #include "src/compiler/machine-operator.h"
16 #include "src/compiler/operator.h"
26 static SimpleOperator dummy_operator(IrOpcode::kParameter, Operator::kNoWrite,
70 CHECK_EQ(Operator::kNoProperties, descriptor->properties());
97 CHECK_EQ(Operator::kNoProperties, descriptor->properties());
  /external/llvm/include/llvm/IR/
Operator.h 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
31 /// Operator - This is a utility class that provides an abstraction for the
34 class Operator : public User {
36 // The Operator class is intended to be used as a utility, and is never itself
38 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
39 void *operator new(size_t s) LLVM_DELETED_FUNCTION;
40 Operator() LLVM_DELETED_FUNCTION;
46 ~Operator();
77 /// despite that operator having the potential for overflow
    [all...]
  /external/llvm/lib/TableGen/
SetTheory.cpp 29 struct AddOp : public SetTheory::Operator {
37 struct SubOp : public SetTheory::Operator {
53 struct AndOp : public SetTheory::Operator {
69 struct SetIntBinOp : public SetTheory::Operator {
76 PrintFatalError(Loc, "Operator requires (Op Set, Int) arguments: " +
148 struct InterleaveOp : public SetTheory::Operator {
167 struct SequenceOp : public SetTheory::Operator {
243 void SetTheory::Operator::anchor() {}
260 void SetTheory::addOperator(StringRef Name, Operator *Op) {
292 Operator *Op = Operators.lookup(OpInit->getDef()->getName())
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 134 " has unexpected operator type!");
135 Record *Operator = OpDef->getDef();
136 if (!Operator->isSubClassOf("Instruction"))
137 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
140 CodeGenInstruction Insn(Operator);
143 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
147 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
  /external/chromium_org/v8/src/compiler/arm/
linkage-arm.cc 45 Operator::Properties properties, Zone* zone) {
  /external/chromium_org/v8/src/compiler/arm64/
linkage-arm64.cc 45 Operator::Properties properties, Zone* zone) {
  /external/chromium_org/v8/src/compiler/ia32/
linkage-ia32.cc 40 Operator::Properties properties, Zone* zone) {

Completed in 615 milliseconds

12 3 4 5 6