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

1 23 4 5 6

  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]
  /external/chromium_org/v8/src/compiler/
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) {
js-graph.h 9 #include "src/compiler/common-operator.h"
11 #include "src/compiler/js-operator.h"
12 #include "src/compiler/machine-operator.h"
111 Node* NewNode(const Operator* op);
js-typed-lowering.cc 85 // to the pure operator {op}, possibly inserting a boolean inversion.
86 Reduction ChangeToPureOperator(const Operator* op, bool invert = false) {
98 // Finally, update the operator to the new one.
212 const Operator* op = is_signed ? simplified()->NumberToInt32()
254 const Operator* numberOp) {
258 // to number and reduce this operator to the given numeric one.
263 // TODO(turbofan): relax/remove the effects of this operator in other cases.
270 const Operator* intOp) {
282 const Operator* shift_op) {
293 const Operator* stringOp
    [all...]
raw-machine-assembler.cc 112 function, 1, Operator::kNoProperties, zone());
152 Node* RawMachineAssembler::MakeNode(const Operator* op, int input_count,
js-graph.cc 19 Node* JSGraph::NewNode(const Operator* op) {
  /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/base/metrics/
sample_map.cc 48 HistogramSamples::Operator op) {
sample_vector.cc 57 HistogramSamples::Operator op) {
  /external/chromium_org/v8/src/compiler/x64/
linkage-x64.cc 59 Operator::Properties properties, Zone* zone) {
  /external/chromium_org/v8/test/cctest/compiler/
graph-builder-tester.h 11 #include "src/compiler/common-operator.h"
13 #include "src/compiler/machine-operator.h"
14 #include "src/compiler/simplified-operator.h"
29 virtual Node* MakeNode(const Operator* op, int value_input_count,
simplified-graph-builder.cc 7 #include "src/compiler/operator-properties.h"
8 #include "src/compiler/operator-properties-inl.h"
46 Node* SimplifiedGraphBuilder::MakeNode(const Operator* op,
test-machine-operator-reducer.cc 10 #include "src/compiler/machine-operator-reducer.h"
18 const Operator* NewConstantOperator(CommonOperatorBuilder* common,
22 const Operator* NewConstantOperator<int32_t>(CommonOperatorBuilder* common,
28 const Operator* NewConstantOperator<double>(CommonOperatorBuilder* common,
35 T ValueOfOperator(const Operator* op);
38 int32_t ValueOfOperator<int32_t>(const Operator* op) {
44 double ValueOfOperator<double>(const Operator* op) {
67 const Operator* binop;
68 const Operator* unop;
83 const T ValueOf(const Operator* op)
    [all...]
test-js-typed-lowering.cc 35 const Operator* binop;
36 const Operator* unop;
98 void CheckPureBinop(const Operator* expected, Node* node) {
103 Node* ReduceUnop(const Operator* op, Type* input_type) {
107 Node* ReduceBinop(const Operator* op, Type* left_type, Type* right_type) {
111 Node* Binop(const Operator* op, Node* left, Node* right) {
116 Node* Unop(const Operator* op, Node* input) {
234 const Operator* ops[] = {
281 const Operator* ops[kNumberOps];
295 void set(int idx, const Operator* op, bool s)
    [all...]
test-changes-lowering.cc 103 void BuildAndLower(const Operator* op) {
115 void BuildStoreAndLower(const Operator* op, const Operator* store_op,
131 void BuildLoadAndLower(const Operator* op, const Operator* load_op,
test-graph-reducer.cc 24 static SimpleOperator OPA0(OPCODE_A0, Operator::kNoWrite, 0, 0, "opa0");
25 static SimpleOperator OPA1(OPCODE_A1, Operator::kNoWrite, 1, 0, "opa1");
26 static SimpleOperator OPA2(OPCODE_A2, Operator::kNoWrite, 2, 0, "opa2");
27 static SimpleOperator OPB0(OPCODE_B0, Operator::kNoWrite, 0, 0, "opa0");
28 static SimpleOperator OPB1(OPCODE_B1, Operator::kNoWrite, 1, 0, "opa1");
29 static SimpleOperator OPB2(OPCODE_B2, Operator::kNoWrite, 2, 0, "opa2");
30 static SimpleOperator OPC0(OPCODE_C0, Operator::kNoWrite, 0, 0, "opc0");
31 static SimpleOperator OPC1(OPCODE_C1, Operator::kNoWrite, 1, 0, "opc1");
32 static SimpleOperator OPC2(OPCODE_C2, Operator::kNoWrite, 2, 0, "opc2");
  /external/chromium_org/base/test/
trace_event_analyzer.h 99 bool operator< (const ProcessThreadID& rhs) const {
113 bool operator< (const TraceEvent& rhs) const {
391 Query operator==(const Query& rhs) const;
392 Query operator!=(const Query& rhs) const;
393 Query operator< (const Query& rhs) const;
394 Query operator<=(const Query& rhs) const;
395 Query operator> (const Query& rhs) const;
396 Query operator>=(const Query& rhs) const;
397 Query operator&&(const Query& rhs) const;
398 Query operator||(const Query& rhs) const
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 156 /// FIXME: Temporarily stores the overloaded operator kind.
157 OverloadedOperatorKind Operator;
  /external/llvm/lib/IR/
Value.cpp 27 #include "llvm/IR/Operator.h"
405 } else if (Operator::getOpcode(V) == Instruction::BitCast ||
406 Operator::getOpcode(V) == Instruction::AddrSpaceCast) {
407 V = cast<Operator>(V)->getOperand(0);
457 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
458 V = cast<Operator>(V)->getOperand(0);
701 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
705 Entry->operator=(nullptr);
762 Entry->operator=(New);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 30 #include "llvm/IR/Operator.h"
334 Operator *I = dyn_cast<Operator>(V);
666 Operator *LU = dyn_cast<Operator>(L);
    [all...]
  /external/clang/lib/Lex/
PPExpressions.cpp 374 // If this operator is live and overflowed, report the issue.
416 /// getPrecedence - Return the precedence of the specified binary operator
474 tok::TokenKind Operator = PeekTok.getKind();
476 // If this is a short-circuiting operator, see if the RHS of the operator is
482 if (Operator == tok::ampamp && LHS.Val == 0)
484 else if (Operator == tok::pipepipe && LHS.Val != 0)
486 else if (Operator == tok::question && LHS.Val == 0)
491 // Consume the operator, remembering the operator's location for reporting
    [all...]

Completed in 1096 milliseconds

1 23 4 5 6