HomeSort by relevance Sort by last modified time
    Searched refs:Operator (Results 176 - 200 of 259) sorted by null

1 2 3 4 5 6 78 91011

  /external/v8/src/compiler/
graph-visualizer.cc 19 #include "src/compiler/operator-properties.h"
20 #include "src/compiler/operator.h"
89 friend std::ostream& operator<<(std::ostream& os, const JSONEscaped& e) {
131 node->op()->PrintTo(label, Operator::PrintVerbosity::kSilent);
132 node->op()->PrintTo(title, Operator::PrintVerbosity::kVerbose);
237 std::ostream& operator<<(std::ostream& os, const AsJSON& ad) {
627 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac) {
635 std::ostream& operator<<(std::ostream& os, const AsC1V& ac) {
644 std::ostream& operator<<(std::ostream& os,
656 std::ostream& operator<<(std::ostream& os, const AsRPO& ar)
    [all...]
verifier.cc 15 #include "src/compiler/common-operator.h"
20 #include "src/compiler/operator.h"
21 #include "src/compiler/operator-properties.h"
23 #include "src/compiler/simplified-operator.h"
155 if (!node->op()->HasProperty(Operator::kNoThrow)) {
223 CHECK(!input->op()->HasProperty(Operator::kNoThrow));
231 CHECK(!input->op()->HasProperty(Operator::kNoThrow));
    [all...]
load-elimination.cc 7 #include "src/compiler/common-operator.h"
10 #include "src/compiler/simplified-operator.h"
684 // Unsupported StoreField operator.
806 if (!node->op()->HasProperty(Operator::kNoWrite)) {
847 if (!current->op()->HasProperty(Operator::kNoWrite)) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
noder.go 863 func (p *noder) unOp(op syntax.Operator) Op {
865 panic("invalid Operator")
895 func (p *noder) binOp(op syntax.Operator) Op {
897 panic("invalid Operator")
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
scanner_test.go 110 op Operator
271 {"x + ~y", "bitwise complement operator is ^", 4, 1},
scanner.go 25 op Operator // valid if tok is _Operator, _AssignOp, or _IncOp
211 s.error("bitwise complement operator is ^")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
noder.go 863 func (p *noder) unOp(op syntax.Operator) Op {
865 panic("invalid Operator")
895 func (p *noder) binOp(op syntax.Operator) Op {
897 panic("invalid Operator")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner_test.go 110 op Operator
271 {"x + ~y", "bitwise complement operator is ^", 4, 1},
scanner.go 25 op Operator // valid if tok is _Operator, _AssignOp, or _IncOp
211 s.error("bitwise complement operator is ^")
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 492 if (node->op()->HasProperty(Operator::kCommutative) &&
    [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 453 if (node->op()->HasProperty(Operator::kCommutative) &&
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 39 /// \brief A call to an overloaded operator written using operator
42 /// Represents a call to an overloaded operator written using operator
53 /// \brief The overloaded operator.
54 OverloadedOperatorKind Operator;
57 // Record the FP_CONTRACT state that applies to this operator call. Only
68 Operator(Op), FPContractable(fpContractable) {
75 /// \brief Returns the kind of overloaded operator that this
77 OverloadedOperatorKind getOperator() const { return Operator; }
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGParser.cpp 679 /// ParseOperation - Parse an operator. This returns null on error.
705 TokError("did not get type for unary operator");
725 TokError("expected '(' after unary operator");
740 TokError("expected list or string type argument in unary operator");
747 TokError("expected list or string type argumnet in unary operator");
755 TokError("expected list type argumnet in unary operator");
760 TokError("empty list argument in unary operator");
767 TokError("untyped list element in unary operator");
776 assert(LHSt && "expected list type argument in unary operator");
779 TokError("expected list type argumnet in unary operator");
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 324 // because a simple-template-id cannot start with 'operator', but
603 // This is only the direct operand of an & operator if it is not
623 /// '::' operator-function-id
652 /// direct operand of the address-of operator. This is, besides member contexts,
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ScalarEvolution.h 27 #include "llvm/Operator.h"
47 class Operator;
73 void operator=(const SCEV &); // DO NOT IMPLEMENT
80 /// operator. NSW is a misnomer that we use to mean no signed overflow or
146 inline raw_ostream &operator<<(raw_ostream &OS, const SCEV &S) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/
fmt_test.go 651 "cmd/compile/internal/syntax.Operator %d": "",
652 "cmd/compile/internal/syntax.Operator %s": "",
  /prebuilts/go/linux-x86/src/cmd/compile/
fmt_test.go 651 "cmd/compile/internal/syntax.Operator %d": "",
652 "cmd/compile/internal/syntax.Operator %s": "",
  /toolchain/binutils/binutils-2.25/include/
hp-symtab.h     [all...]
  /build/soong/androidmk/cmd/androidmk/
androidmk.go 347 val.(*bpparser.Operator).OperatorPos = pos
  /external/clang/lib/Sema/
DeclSpec.cpp 346 getName().OperatorFunctionId.Operator));
    [all...]
SemaExprCXX.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 36 #include "llvm/IR/Operator.h"
358 const Operator *Op = dyn_cast<Operator>(V);
360 // The only non-operator case we can handle are GlobalAliases.
    [all...]
InlineCost.cpp 33 #include "llvm/IR/Operator.h"
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 479 if (node->op()->HasProperty(Operator::kCommutative) &&
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 160 bool operator==(const Type &Other) const { return str() == Other.str(); }
161 bool operator!=(const Type &Other) const { return !operator==(Other); }
421 bool operator<(const Intrinsic &Other) const {
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 78 91011