HomeSort by relevance Sort by last modified time
    Searched refs:Operator (Results 51 - 75 of 171) sorted by null

1 23 4 5 6 7

  /external/chromium_org/v8/src/compiler/
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) {
js-inlining.cc 7 #include "src/compiler/common-operator.h"
12 #include "src/compiler/js-operator.h"
16 #include "src/compiler/simplified-operator.h"
127 const Operator* op_phi = jsgraph->common()->Phi(kMachAnyTagged, predecessors);
128 const Operator* op_ephi = jsgraph->common()->EffectPhi(predecessors);
170 sentinel_op_(IrOpcode::kDead, Operator::kNoProperties, 0, 0,
180 // Reuse the operator in the copy. This assumes that op lives in a zone
341 const Operator* op = jsgraph_->common()->FrameState(
351 const Operator* op =
354 const Operator* op0 = jsgraph_->common()->StateValues(0)
    [all...]
machine-operator-unittest.cc 5 #include "src/compiler/machine-operator.h"
6 #include "src/compiler/operator-properties-inl.h"
16 inline std::ostream& operator<<(std::ostream& os, const MachineType& type) {
21 inline std::ostream& operator<<(std::ostream& os,
56 // Load operator.
72 const Operator* op = machine.Load(GetParam());
104 // Store operator.
130 const Operator* op = machine.Store(GetParam());
172 const Operator* (MachineOperatorBuilder::*constructor)();
179 std::ostream& operator<<(std::ostream& os, const PureOperator& pop)
    [all...]
graph-reducer-unittest.cc 7 #include "src/compiler/operator.h"
23 SimpleOperator OP0(0, Operator::kNoWrite, 0, 1, "op0");
24 SimpleOperator OP1(1, Operator::kNoProperties, 1, 1, "op1");
js-context-specialization.cc 5 #include "src/compiler/common-operator.h"
9 #include "src/compiler/js-operator.h"
84 const Operator* op = jsgraph_->javascript()->LoadContext(
131 const Operator* op = jsgraph_->javascript()->StoreContext(0, access.index());
linkage.cc 18 OStream& operator<<(OStream& os, const CallDescriptor::Kind& k) {
34 OStream& operator<<(OStream& os, const CallDescriptor& d) {
97 Operator::Properties properties) {
148 Operator::Properties properties, Zone* zone) {
  /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() +
CodeGenDAGPatterns.cpp     [all...]
  /frameworks/compile/mclinker/lib/Script/
Android.mk 15 Operator.cpp \
  /external/chromium_org/base/metrics/
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.
sample_map.cc 48 HistogramSamples::Operator op) {
  /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) {
  /cts/suite/cts/deviceTests/opengl/
cob_exporter.py 24 class COBExporter(bpy.types.Operator, ExportHelper):
64 self.layout.operator(COBExporter.bl_idname, text="Compressed Object (.cob)").filepath = default_path
  /external/chromium_org/v8/src/compiler/x64/
linkage-x64.cc 59 Operator::Properties properties, Zone* zone) {

Completed in 619 milliseconds

1 23 4 5 6 7